@charset "utf-8";
/* CSS Price */
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.mv-page__item {
  width: min(50%, 66rem);
  padding: 0 5rem;
  margin: 0;
}
.mv-title {
  text-align: left;
}
.mv-title__jp h2 {
  margin-bottom: 2rem;
  color: #2da600;
  font-size: clamp(4.8rem, 7vw, 13rem);
  font-weight: 900;
  text-wrap: auto;
  line-height: 1;
  white-space: nowrap;
}
.mv-title__en {
  margin-bottom: 2rem;
  color: #000000;
  font-size: clamp(3.2rem, 5vw, 9rem);
  font-family: "Braah One", sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.mv-title__text {
  position: relative;
  color: #000;
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 3.2rem);
  font-weight: 700;
  white-space: nowrap;
}
.mv-title__text::before, .mv-title__text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: #000;
}
.mv-title__text::before {
  left: 0;
}
.mv-title__text::after {
  right: 0;
}
.mv-title__text h3 {
  display: block;
  background-color: #fff;
  padding: 0 1rem;
}
.mv-page__image {
  width: 94.2rem;
  height: 100%;
  border-radius: 34.8rem 0 0 34.8rem;
  overflow: hidden;
}
.mv-page__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 1367px) {
  .mv-title__text::before, .mv-title__text::after {
    width: 15%;
  }
}
@media screen and (max-width: 1023px) {
  .mv-page {
    padding-top: 13.5rem;
  }
  .mv-page__item {
    padding: 7rem 2.5rem;
  }
  .mv-title__text::before, .mv-title__text::after {
    width: 15%;
  }
}
@media screen and (max-width: 767px) {
  .mv-page__item {
    width: 100%;
  }
  .mv-title {
    text-align: center;
  }
  .mv-title__text::before, .mv-title__text::after {
    width: 28%;
  }
  .mv-page__image {
    display: none;
  }
}
/* Section - Headline
----------------------------------------------------------------------------------------------------*/
.sec-headline {
  width: min(97%, 120rem);
  margin: 10rem auto;
}
.sec-headline__copy {
  margin-bottom: 8.5rem;
  text-align: center;
  font-size: clamp(3.8rem, 6vw, 9.4rem);
  font-weight: 900;
}
.sec-headline__text {
  color: #5a5a5a;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: justify;
  line-height: 1.75;
}
@media screen and (max-width: 1023px) {
  .sec-headline {
    margin: 10rem auto 7rem;
  }
  .sec-headline__copy {
    margin: 0 auto 6rem;
  }
}
/* Section - Company Profile
----------------------------------------------------------------------------------------------------*/
.sec-prof {
  width: min(97%, 89rem);
  padding-bottom: 5rem;
  margin: 0 auto;
}
.sec-prof__title {
  margin-bottom: 5rem;
}
.sec-prof__title h4 {
  margin-bottom: 6.5rem;
  color: #000;
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
}
.sec-prof__title img {
  width: 46.4rem;
  margin: 0 auto;
}
.sec-prof__box {
  width: 89rem;
  margin: 0 auto 6.5rem;
}
.sec-prof__box dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #cccccc;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 600;
}
.sec-prof__box dt {
  display: flex;
  align-items: center;
  height: 8.5rem;
  width: 15.5rem;
  padding: 0 2rem;
  border-bottom: 1px solid #cccccc;
  background-color: #f5f5f5;
}
.sec-prof__box dd {
  display: flex;
  align-items: center;
  width: 73.5rem;
  padding: 0 2rem;
  border-bottom: 1px solid #cccccc;
}
.sec-prof__box dd span {
  font-size: clamp(1.2rem, 3vw, 2rem);
}
.sec-prof__box dd small {
  font-size: clamp(1rem, 3vw, 1.8rem);
}
@media screen and (max-width: 1023px) {
  .sec-prof {
    padding-bottom: 0;
  }
  .sec-prof__title h4 {
    font-size: 2.2rem;
  }
  .sec-prof__title img {
    width: 100%;
  }
  .sec-prof__box {
    width: 100%;
  }
  .sec-prof__box dt {
    height: 6rem;
    width: 21%;
    padding: 0 0.5rem;
  }
  .sec-prof__box dd {
    width: 79%;
    padding: 0 0.5rem;
  }
}
/* Section - Banner Link
----------------------------------------------------------------------------------------------------*/
.sec-prof__link {
  margin-bottom: 6.5rem;
}
.sec-prof__link ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding: 0;
}
.sec-prof__link ul li {
  width: calc(100% / 2 - 2rem);
  border: 1px solid #dcdcdc;
  border-radius: 0.5em;
  overflow: hidden;
}
.sec-prof__link ul li img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.sec-prof__link ul li a {
  transition: 0.5s;
}
.sec-prof__link ul li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1023px) {
  .sec-prof__link ul {
    flex-direction: column;
    gap: 2rem;
  }
  .sec-prof__link ul li {
    width: 100%;
  }
}
/* Section - Google Map
----------------------------------------------------------------------------------------------------*/
.sec-prof__map iframe {
  width: 100%;
}
/* Footer Copy
----------------------------------------------------------------------------------------------------*/
.footer-copy {
  background-color: #2da600;
}