@charset "utf-8";

/*共通*/
html {
  box-sizing: border-box;
  font-size: 62.5%;
  overflow: scroll;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  vertical-align: baseline;
}


body {
  min-height: 100vh;
  color: #333;
  background: #fff;
  font-family: "メイリオ", Meiryo, "Noto Sans Japanese", "ＭＳ Ｐゴシック", "MS PGothic", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: #333;
}


h3 {
  font-weight: bold;
  color: #333;
}

ul li {
  list-style: none;
}

.logo {
  display: block;
  width: 300px;
  max-height: 28px;
  line-height: 1;
}

.footer-logo {
  display: block;
  width: 270px;
  padding-bottom: 10px;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}


/*ヘッダー*/
.breadcrumb {
  margin: 0;
  padding: 1em 40px;
  list-style: none;
  background: #0385fe;
  overflow: hidden;
}

.breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
}

.breadcrumb li:after {
  content: '>';
  padding: 0 0.5em;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}


.breadcrumb li a:hover {
  text-decoration: underline;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  transition: all 0.3s linear;
  font-size: 1.5rem;
  z-index: 2;
}

.header-inner {
  padding-left: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: #fff;
  transition: background-color 0.3s ease;
}

.sp-nav {
  display: none;
}

.navigation-list {
  display: flex;
  align-items: center;
}

.navigation-item {
  margin-left: 30px;
}

.navigation-item:first-child {
  margin: 0;
}

.navigation-link {
  font-size: 1.7rem;
  text-decoration: none;
  color: #333;
  display: block;
  font-weight: 700;
  position: relative;
  padding-bottom: 5px;
}

.navigation-link:hover {
  opacity: 0.8;
  transition: .2s linear;
}


.navigation-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0385fe;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease-out;
}

.navigation-link:hover::before {
  transform: scaleX(1);
}

.contact-button {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 80px;
  background-color: #0385fe;
  color: #fff;
}


/*メインビジュアル*/
.mainvisual {
  position: relative;
}

.mainvisual-image {
  width: 100%;
  object-fit: cover;
}

.mainvisual-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  display: grid;
  place-items: center;
}

.mainvisual-txt {
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.267);
  font-weight: 700;
  font-style: normal;
  font-family: "source-han-serif-japanese", serif;
  color: #fff;
  margin: 0;
}

.mainvisual-txt h1 {
  font-size: 4.5rem;
  text-align: center;
}

.mainvisual-txt p {
  font-size: 2.8rem;
}

.sp-only {
  display: none;
}

@supports (-webkit-touch-callout: none) {
  .mainvisual-image {
    min-height: -webkit-fill-available;
  }
}

.about {
  background: url(../images/background_bg.jpg) center center / cover no-repeat;
  height: auto;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.inner {
  padding: 30px 15px;
  background-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  max-width: 85%;
  margin: auto;
}

.about-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px;
}

.material-symbols-outlined {
  vertical-align: middle;
}

.title {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.title::before {
  margin: 0 13px;
  width: 30px;
  content: "";
  display: inline-block;
  flex-grow: 1;
  height: 3px;
  border-bottom: 3px solid #0385fe;
}

.title::after {
  margin: 0 13px;
  width: 30px;
  content: "";
  display: inline-block;
  flex-grow: 1;
  height: 3px;
  border-bottom: 3px solid #0385fe;
}


.about p {
  text-align: center;
  font-size: 1.7rem;
}


.about p+p {
  margin-top: 17px;
  font-size: 1.7rem;
}


.btn-link {
  border-radius: 0;
  padding: 15px 0;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  color: #fff;
  display: block;
  width: 400px;
  border: 1px solid #fff;
  background: linear-gradient(to top, rgb(46, 96, 235), #0385fe);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  margin: 30px auto;

}

.btn-link:hover {
  color: #fff;
  opacity: 0.8;
}

.service {
  background: url(../images/wood_bg.jpg) center center / cover no-repeat;
  min-height: 100%;
  width: 100%;
  display: inline-block;
  padding-top: 80px;
  padding-bottom: 80px;
}


.service-box-item {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.item-reverse {
  flex-direction: row-reverse;
}

.service-inner {
  background-color: #0385fe;
  height: auto;
  flex: 0 1 auto;
  width: 450px;
  padding: 1.5rem;
}

.service01 h3 {
  font-size: 2.4rem;
  color: #fff;
}

.service02 h3 {
  font-size: 2.4rem;
  color: #fff;
}

.service03 h3 {
  font-size: 2.4rem;
  color: #fff;
}

.service04 h3 {
  font-size: 2.4rem;
  color: #fff;
}

.service01 h3::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  background-color: #fff;
  content: "01";
  color: #0385fe;
  text-align: center;
  margin-right: 20px;
  border-radius: 50%;
}

.service02 h3::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  background-color: #fff;
  content: "02";
  color: #0385fe;
  text-align: center;
  margin-right: 20px;
  border-radius: 50%;
}

.service03 h3::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  background-color: #fff;
  content: "03";
  color: #0385fe;
  text-align: center;
  margin-right: 20px;
  border-radius: 50%;
}

.service04 h3::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  vertical-align: middle;
  background-color: #fff;
  content: "04";
  color: #0385fe;
  text-align: center;
  margin-right: 20px;
  border-radius: 50%;
}

.service-txt h3:after {
  display: block;
  content: "";
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;

}


.service-txt p {
  font-size: 1.6rem;
  color: #fff;
  padding-top: 8px;
  letter-spacing: 0.01em;
}


.service-txt p+p {
  padding: 0;
}

.company {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 350px;
}

.company::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/plan.jpg) no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

.company:hover:after {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.company .company-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  height: 100%;
  text-decoration: none;
  background-color: rgba(22, 22, 22, 0.308);
}

.company:hover .company-link {
  background-color: rgba(184, 184, 184, 0.315);
}


.company-title {

  color: #fff;
  z-index: 1;
  letter-spacing: 0.01em;
}

.contact {
  background: url(../images/contact_bg.jpg) center bottom / cover no-repeat;
  height: auto;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;

}

.contact-title {
  color: #fff;
}

.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}


.contact-tel {
  display: inline-block;
  background-image: linear-gradient(90deg, rgba(85, 85, 85, 1), rgba(0, 0, 0, 1));
  width: 400px;
  height: 80px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.contact-mail {
  background-image: linear-gradient(90deg, rgb(0, 132, 255), rgb(0, 242, 255));
  display: inline-block;
  width: 400px;
  height: 80px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.4s ease;
}

.contact-tel .tel-link {
  padding-left: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: url("../images/phone.png") left center no-repeat;
  background-size: contain;
  pointer-events: none;
}

.contact-mail .email-link {
  padding-right: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: url("../images/email.png") left center no-repeat;
  background-size: contain;
  padding-left: 55px;
}

.contact-mail:hover {
  background-color: #ffffff;
}

.contact-mail::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.548) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.3) 75%);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: rotate(45deg);
}


.contact-mail:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateY(-50%);
}

footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #333333;
}

.footer-inner {
  width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-address {
  color: #fff;
  font-size: 1.6rem;
}

.footer-tel {
  color: #fff;
  font-size: 1.6rem;
}

.footer-email {
  color: #fff;
  font-size: 1.6rem;
}


.footer-nav-link {
  color: #fff;
  font-size: 1.7rem;
  transition: all 0.3s ease;
}


.footer-nav-link:hover {
  color: #339bfc
}

.copryright {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

.sns img {
  width: 64px;
}

.page-top {
  display: flex;
  position: fixed;
  right: 3%;
  bottom: 5%;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 6px rgb(0 0 0 / 20%);
  cursor: pointer;
  z-index: 10;
  display: none;
  border: 2px solid #0385fe;
}

.page-top:hover {
  opacity: 0.8;

}

.page-top--icon {
  transform: rotate(-90deg);
}

.brochure,
.company-profile {
  padding: 80px 0;
}

.brochure .breadcrumb {
  text-align: left;
  color: #333;
}

.brochure .wrapper {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.company-profile {
  background: url(../images/wood_bg.jpg) center center / cover no-repeat;
  width: 100%;
  height: auto;
}

.brochure p {
  font-size: 1.7rem;
}

.company-leader-name {
  padding-top: 20px;
  text-align: right;
  font-weight: bold;
  font-size: 1.8rem;
}

.company-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}


.company-table th,
.company-table td {
  border-bottom: 1px solid #adadadbe;
  padding: 20px;
}


.company-table th {
  font-weight: 500;
  font-size: 1.7rem;
}

.company-table td {
  font-weight: 500;
  font-size: 1.7rem;
}

.access-map {
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

.access-map,
.contact {
  margin: 0;
}

iframe {
  display: block;
}

.example-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #0385fe;
}


.example-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.example-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.062);
  background-color: #fff;
  padding: 0 ;
}

.example-item img {
  max-width: 100%;
  min-height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.example-item p {
  margin: 0;
  text-align: left;
  font-size: 1.6rem;
  color: #333;
  padding: 10px;
}

figure {
  margin: 0;
  padding: 0;
}


.reform-process-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-content: center;
  gap: 24px;
  padding: 20px 0;
  max-width: 100%;
}

.reform-process-box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}


.reform-process-title {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  padding-bottom: 20px;
}

.reform-process-text {
  margin-left: 24px;
}

.reform-process-arrow {
  margin: auto;
  max-width: 100%;
  width: 50px;
}

.reform-process-img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

form {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

label {
  margin-bottom: 3px;
  text-align: left;
  display: block;
  font-size: 1.7rem;
}

label span {
  padding-left: 5px;
  color: red;
}

input:not(input[type="submit"]) {
  width: 100%;
  margin-bottom: 25px;
  padding: 10px 10px;
  border: 1px solid #CCC;
  border-radius: 5px;
  text-align: left;
  display: block;
}

textarea {
  width: 100%;
  margin-bottom: 25px;
  padding: 7px 7px;
  border: 1px solid #CCC;
  border-radius: 5px;
  text-align: left;
  display: block;
}

input[type="submit"] {
  margin: 20px;
  padding: 10px 15px;
  background-color: #EEE;
  border: 1px solid #BBB;
  border-radius: 5px;
  display: inline-block;
}

input[type="submit"]:hover {
  opacity: 0.6;
  transition: .2s linear;
}

.complete {
  text-align: center;
}

.error {
  width: 100%;
  margin: 0 auto 30px;
  color: red;
  font-size: 1.4rem;
}

.error li {
  color: red;
  font-size: 1.2rem;
  text-align: left;
  white-space: nowrap;
}

/*tablet*/
@media screen and (max-width: 1024px) {
  .inner {
    padding: 30px 15px;
    max-width: 100%;
  }

  .title {
    font-size: 2.3rem;
    margin-bottom: 25px;
    margin-top: 25px;
  }

  .about p {
    font-size: 1.6rem;
  }


  .about p+p {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .contact-button {
    position: relative;
    display: inline;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    transition: all .3s;
    padding: 5px 12px;
    border-radius: 50px;
    background: #0385fe;
    margin: 0 -12px;
  }

  .material-symbols-outlined {
    vertical-align: middle;
  }


  .logo {
    width: 200px;
  }

  .navigation {
    display: none;
  }

  .sp-nav {
    display: block;
  }

  .sp-nav-item a {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .sp-nav-item a:hover {
    color: #333;
    opacity: 0.8;
  }

  .hamburger {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;

  }

  .hamburger__line {
    position: absolute;
    width: 30px;
    height: 2px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
  }

  .hamburger__line--1 {
    top: 1px;
  }

  .hamburger__line--2 {
    top: 10px;
  }

  .hamburger__line--3 {
    top: 20px;
  }

  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }

  .open .hamburger__line--2 {
    opacity: 0;
  }

  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }

  .sp-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
    padding: 4vw 4vw 10vw;
  }

  .sp-nav-item {
    padding: 12px 0;
  }

  .open .sp-nav {
    right: 0;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
  }

  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }


  .mainvisual-txt h1 {
    font-size: 3.2rem;

  }

  .mainvisual-txt p {
    font-size: 2.8rem;
    text-align: center;
  }

  .sp-only {
    display: block;
  }

  .about-box {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 10px;
  }

  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-box img {
    width: 100%;
    height: auto;
  }

  .btn-link {
    max-width: 80%;
    margin: 20px auto;
  }

  .service {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service-box img {
    display: none;
  }

  .service-inner {
    padding: 30px 15px;
    width: 100%;
  }

  .service-txt p {
    font-size: 1.6rem;
  }


  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }


  .contact-tel,
  .contact-mail {
    width: 350px;
    height: 64px;
  }

  footer {
    padding-right: 40px;
    padding-left: 40px;
  }

  .footer-nav {
    flex-direction: row;
    gap: 18px;
  }

  .footer-address {
    display: block;
  }

  .contact-btn {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: row;
    width: 100%;
    padding-bottom: 10px;
    justify-content: center;
  }


  .footer-nav-link {
    font-size: 1.4rem;
  }


  .brochure .wrapper {
    padding: 0 40px;
  }


  .brochure,
  .company-profile {
    padding: 60px 0;
  }

  .access-map {
    padding-top: 60px;
  }

}

/*sp版 */
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
  }

  .title {
    font-size: 2.3rem;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .about p {
    font-size: 1.4rem;
  }


  .about p+p {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .contact-button {
    position: relative;
    display: inline;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    transition: all .3s;
    padding: 5px 12px;
    border-radius: 50px;
    background: #0385fe;
    margin: 0 -12px;
  }

  .material-symbols-outlined {
    vertical-align: middle;
  }


  .logo {
    width: 200px;
  }

  .navigation {
    display: none;
  }

  .sp-nav {
    display: block;
  }

  .sp-nav-item a {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .sp-nav-item a:hover {
    color: #333;
    opacity: 0.8;
  }

  .hamburger {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;

  }

  .hamburger__line {
    position: absolute;
    width: 30px;
    height: 2px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
  }

  .hamburger__line--1 {
    top: 1px;
  }

  .hamburger__line--2 {
    top: 10px;
  }

  .hamburger__line--3 {
    top: 20px;
  }

  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }

  .open .hamburger__line--2 {
    opacity: 0;
  }

  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }

  .sp-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
    padding: 4vw 4vw 10vw;
  }

  .sp-nav-item {
    padding: 12px 12px;
  }

  .open .sp-nav {
    right: 0;
  }

  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
  }

  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }


  .mainvisual-txt h1 {
    font-size: 2rem;

  }

  .mainvisual-txt p {
    font-size: 1.8rem;
    text-align: center;
  }

  .sp-only {
    display: block;
  }

  .about-box {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
  }

  .about {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-box img {
    width: 100%;
    height: auto;
  }

  .btn-link {
    max-width: 80%;
    margin: 20px auto;
  }

  .service {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .service-box img {
    display: none;
  }

  .service-inner {
    width: 100%;
  }

  .service-txt p {
    font-size: 1.4rem;
  }


  .contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }


  .contact-tel,
  .contact-mail {
    width: 350px;
    height: 64px;
  }

  footer {
    padding-right: 40px;
    padding-left: 40px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .footer-address {
    display: none;
  }

  .contact-btn {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: row;
    width: 100%;
    padding-bottom: 10px;
    justify-content: center;
  }


  .footer-nav-link {
    font-size: 1.4rem;
  }


  .company-table th {
    width: auto;
  }

  .brochure p {
    font-size: 1.4rem;
  }

  .company-profile {
    padding: 40px 0;
  }

  .company-table td {
    font-size: 1.4rem;
  }

  .company-table th {
    font-size: 1.4rem;
  }

  .access-map {
    padding-top: 40px;
  }

  .example-box {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .example-title {
    font-size: 1.8rem;
  }

  .reform-process-title {
    font-size: 1.7rem;
  }

}

@media (max-width: 480px) {
  .example-box {
    grid-template-columns: 1fr;
  }
}