@charset "utf-8";
/* CSS Logo */
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.mv-page__item {
  width: min(50%, 75rem);
  padding: 0 5rem;
  margin: 0;
}
.mv-title {
  text-align: left;
}
.mv-title__jp h2 {
  margin-bottom: 2rem;
  color: #ff2b00;
  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;
}
.mv-title__text h3 {
  display: block;
  background-color: #fff;
  padding: 0 1rem;
  color: #000;
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 700;
  white-space: nowrap;
}
.mv-title__text::before, .mv-title__text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #000;
}
.mv-title__text::before {
  left: 0;
}
.mv-title__text::after {
  right: 0;
}
.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: 1023px) {
  .mv-page {
    padding-top: 13.5rem;
  }
  .mv-page__item {
    padding: 7rem 2.5rem;
  }
  .mv-title__text::before, .mv-title__text::after {
    width: 20%;
  }
}
@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: 30%;
  }
  .mv-page__image {
    display: none;
  }
}
/* Section - Logo
----------------------------------------------------------------------------------------------------*/
.sec-logo {
  padding-top: 10rem;
}
@media screen and (max-width: 1023px) {
  .sec-logo {
    padding-top: 5.5rem;
  }
}
/* Section - Headline
----------------------------------------------------------------------------------------------------*/
.sec-headline {
  margin-bottom: 3rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .sec-headline {
    /*font-size: 2.4rem;*/
  }
}
/* Section - Body
----------------------------------------------------------------------------------------------------*/
.sec-body {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-bottom: 11.5rem;
}
.sec-body__image {
  width: 53rem;
}
.sec-body__text {
  width: 93rem;
  color: #5a5a5a;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  text-align: justify;
  line-height: 1.75;
}
.sec-body__text b {
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .sec-body {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .sec-body__image {
    width: 100%;
  }
  .sec-body__text {
    width: 100%;
    /*font-size: 1.6rem;*/
  }
}
/* Section - Design Image
----------------------------------------------------------------------------------------------------*/
.sec-design {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .sec-design {
    flex-wrap: wrap;
  }
  .sec-design__image {
    width: calc(100% / 3);
  }
}
/* Footer Copy
----------------------------------------------------------------------------------------------------*/
.footer-copy {
  background-color: #ff2b00;
}