.header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 999;
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.header__logo-image {
  display: block;
  max-width: 110px;
  height: auto;
}

.header__menu-button {
  position: absolute;
  top: 1.8rem;
  right: 1rem;
  z-index: 1100;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

.header__menu-line {
  height: 1px;
  background: #000;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.header__menu-line:nth-child(1) {
  width: 28px;
}
.header__menu-line:nth-child(2) {
  width: 22px;
}
.header__menu-line:nth-child(3) {
  width: 16px;
}

.header__menu-button.is-open .header__menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}

.header__menu-button.is-open .header__menu-line:nth-child(2) {
  opacity: 0;
}

.header__menu-button.is-open .header__menu-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  width: 28px;
}

.header__menu-content {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: #fff;
  padding: 5rem 1.5rem 1.5rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0.25s;
}

.header__menu-content.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0s linear 0s;
}

.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-item + .header__menu-item {
  margin-top: 1.5rem;
}

.header__menu-item {
  margin: 1rem 0;
}

.header__menu-item-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  text-align: center;
}

.header__menu-item-link--style-001 {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.header__menu-item-link--style-002 {
  font-size: 1.25rem;
  opacity: 0.9;
}

.footer {
  padding: 80px 24px 40px;
  font-family: inherit;
  background: #795548;
  color: #fff;
  position: relative;
}

.footer__container {
  margin: 0 auto;
}

@media (max-width: 540px) {
  .footer__container {
    margin: 0 auto;
    padding-bottom: 20%;
  }
}

.footer__logo {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
  width: 300px;
}

.footer__address-list {
  font-style: normal;
  margin-bottom: 103px;
  width: 340px;
}

.footer__nav {
  margin-top: 24px;
}

.footer__nav {
  position: absolute;
  padding-top: 55px;
  right: 0;
  top: 0;
  width: 600px;
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.footer__menu-item-link {
  text-decoration: none;
  color: inherit;
  font-size: 0.875rem;
}

.footer__menu-item-link:hover .footer__menu-item-link--style-001 {
  opacity: 1;
}

.footer__copyright {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
}

.footer__cta-button {
  display: block;
  right: 2%;
  bottom: 2%;
  max-width: 450px;
  position: fixed;
  transition: transform 0.3s ease-in-out;
  width: 35%;
  z-index: 3;
}

.footer__cta-button-image {
  border-radius: 5px;
}

@media (max-width: 768px) {
  .footer__cta-button {
    display: block;
    right: 2%;
    bottom: 1%;
    max-width: 350px;
    position: fixed;
    transition: transform 0.3s ease-in-out;
    width: 92%;
  }
}

@media (max-width: 540px) {
  .footer__cta-button {
    display: block;
    right: 4%;
    bottom: 1%;
    max-width: 450px;
    position: fixed;
    transition: transform 0.3s ease-in-out;
    width: 92%;
  }
}

@media (max-width: 768px) {
  .footer__logo {
    display: block;
    margin-bottom: 10px;
    font-size: 1.25rem;
    width: unset;
  }

  .footer__address-list {
    font-style: normal;
    margin-bottom: 50px;
    width: unset;
  }

  .footer__nav {
    position: static;
    padding-top: 0px;
    right: 0;
    top: 0;
    width: unset;
  }

  .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 60px;
  }

  .footer__copyright {
    display: block;
    margin-top: 16px;
    font-size: 0.75rem;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 60px;
  }
}

.main {
  width: 100%;
  max-width: unset;
  margin-inline: auto;
  padding-bottom: 120px;
}

.hero {
}
.hero__container {
  background: #d9d9d9;
}
.hero__image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 65% 50%;
}
.hero__inner {
  position: relative;
}
.hero__header {
  margin-bottom: 0;
}
.hero__title {
}
.hero__title-image {
  position: absolute;
  width: auto;
  height: 80%;
  top: 55%;
  left: 2%;
  transform: translateY(-50%);
}

.hero__title-icon {
  width: 22%;
  max-width: 300px;
  position: absolute;
  bottom: 2%;
  right: 3%;
}

.hero__cta {
  background: #d9d9d9;
  text-align: center;
  padding-top: 2%;
}
.hero__cta-image {
  margin: 0 auto;
  display: block;
  width: 900px;
  border-radius: 10px;
}

.hero__body {
  position: relative;
  margin-inline: auto;
}
.hero__description {
  width: 90%;
  max-width: 900px;
  margin-inline: auto;
  padding: 3em 0 0 0;
  margin-bottom: 0;
}
.hero__description-image--style-01 {
}
.hero__description-image--style-02 {
}
.hero__description-image--style-03 {
}

.hero__body-icon {
  width: 22%;
  max-width: 250px;
  position: absolute;
  bottom: 2%;
  right: 1%;
}

.hero__list {
  display: flex;
  gap: 2%;
  /* flex-wrap: wrap; */
  width: 90%;
  max-width: 900px;
  margin: 5% auto 0 auto;
  position: relative;
  z-index: 2;
}

.hero__list-item {
  width: 100%;
}
.hero__list-image {
  border-radius: 10px;
}

@media (max-width: 1280px) {
  .hero__body-icon {
    width: 20%;
    max-width: 230px;
    position: absolute;
    bottom: 17%;
    right: unset;
    left: 66%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1026px) {
  .hero__image {
    width: 100%;
    height: unset;
    object-position: unset;
  }
  .hero__title-image {
    width: auto;
    height: 70%;
    max-width: 700px;
    top: 56%;
    left: 2%;
    transform: translateY(-50%);
  }
  .hero__title-icon {
    width: 30%;
    max-width: 250px;
    position: absolute;
    bottom: 5%;
    right: 2%;
  }
}

@media (max-width: 768px) {
  .hero__image {
    width: 100%;
    height: unset;
    object-position: unset;
  }

  .hero__title-image {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 550px;
    top: 56%;
    left: 2%;
    transform: translateY(-50%);
  }
  .hero__cta {
    background: #d9d9d9;
    text-align: center;
    padding-top: 4%;
  }
  .hero__cta-image {
    margin: 0 auto;
    display: block;
    width: 90%;
    border-radius: 10px;
  }
}
@media (max-width: 540px) {
  .hero__body {
    width: 96%;
  }

  .hero__title-image {
    position: absolute;
    width: 92%;
    height: auto;
    max-width: 750px;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
  }
  .hero__image {
    width: 100%;
    height: unset;
    object-position: unset;
  }
  .hero__description {
    padding: 2em 0;
    margin-bottom: 0;
    width: 100%;
  }
  .hero__body-icon {
    width: 20%;
    max-width: 230px;
    position: absolute;
    bottom: 24%;
    right: unset;
    left: 67%;
    transform: translateX(-50%);
  }

  .hero__cta {
    background: #d9d9d9;
    text-align: center;
    padding-top: 0%;
  }
  .hero__cta-image {
    margin: 0 auto;
    display: block;
    width: 100%;
    border-radius: 0px;
  }
  .hero__title-icon {
    width: 40%;
    max-width: 350px;
    position: absolute;
    bottom: 2%;
    right: 3%;
  }
}

.concept__deco--top {
  color: #ffffff;
  transform: scaleX(1) scaleY(1);
  margin-top: -10%;
}

.concept__container {
}
.concept__inner {
}
.concept__header {
  text-align: center;
}
.concept__label--main {
  font-weight: bold;
  font-size: 2em;
  letter-spacing: 0;
}
.concept__label--sub {
  font-size: 5em;
  font-weight: bold;
  letter-spacing: 00;
  line-height: 1.2;
}
.concept__title {
  margin: 2em 0;
  font-size: 2em;
  font-weight: bold;
}
.concept__title--style-01 {
}
.concept__body {
  text-align: center;
}
.concept__image {
  max-width: 750px;
  margin: 0 auto;
  border-radius: 10px;
}
.concept__description {
  margin: 1.5em 0;
  font-size: 1.25em;
  line-height: 2.3;
}
.concept__description--strong-001 {
  display: block;
  font-size: 4em;
  line-height: 1.3;
}

.concept__description--strong-002 {
  display: block;
  font-size: 3em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .concept__title--style-01 {
    display: block;
  }
  .concept__image {
    width: 90%;
  }
}

@media (max-width: 540px) {
  .concept__inner {
    padding-top: 2em;
  }
  .concept__title {
    margin: 2em 0;
    font-size: 1.2em;
    font-weight: bold;
  }
  .concept__label--main {
    font-size: 1em;
  }
  .concept__label--sub {
    font-size: 2.5em;
  }
  .concept__description.cneter {
    text-align: center;
  }
  .concept__description {
    text-align: justify;
    padding: 0 4%;
    font-size: 1em;
  }
  .concept__description br {
    display: none;
  }

  .concept__description--strong-001 {
    display: block;
    font-size: 3em;
    line-height: 1.3;
  }

  .concept__description--strong-002 {
    display: block;
    font-size: 1.25em;
    line-height: 1.3;
  }
}

.contents__list {
  margin: 5em 0 0 0;
  list-style: none;
  padding: 0;
}

.contents__item {
  position: relative;
  background: #000;
}

.contents__row-inner {
  display: flex;
  gap: 0;
}

.contents__row-inner > .contents__item {
  flex: 1;
}

.contents__image {
  opacity: 0.7;
  width: 100%;
}
.contents__item-article {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  color: #fff;
}
.contents__item-title {
  font-size: 1.5em;
  margin: 0.5em 0;
}
.contents__item-label {
  font-size: 0.75em;
  letter-spacing: 0;
  font-weight: bold;
  display: block;
  margin-bottom: 0.7em;
}
.contents__item-link {
}
.link-button--thirdly {
  font-size: 1em;
  display: block;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  .contents__item-article {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .contents__row-inner {
    display: block;
    gap: 0;
  }

  .contents__row-inner > .contents__item {
    flex: 1;
  }
}

.faq {
}
.faq__container {
  position: relative;
  background: #795548;
  padding: 10rem 0 0 0;
}

.faq__inner {
  width: 90%;
  max-width: 960px;
  margin-inline: auto;
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
}

.faq__label {
  position: absolute;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 4px;
  color: #fff;
  width: 90%;
  max-width: 960px;
  margin-inline: auto;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.faq__title {
  text-align: center;
  margin-bottom: 2em;
}

.faq-block__body {
  margin-top: 5em;
  margin-bottom: 4em;
}

.faq-block__faq-list {
  margin-top: 2rem;
}

.faq-block__faq-item-question {
  margin-top: 2.5rem;
  position: relative;
  text-align: justify;
}

.faq-block__faq-item-question-title {
  padding-left: 5%;
}

.faq-block__faq-item-question-title::before {
  content: "Q";
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 1%;
  background: #795548;
  color: #fff;
  position: absolute;
  left: 0;
}

.faq-block__faq-item-answer {
  margin-top: 2rem;
  margin-left: 0;
  padding-bottom: 2.5em;
  border-bottom: 1px solid #e0e0e0;
  padding-left: 5%;
  position: relative;
  font-size: 1rem;
}

.faq-block__faq-item-answer::before {
  content: "A ";
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-size: 1.25rem;
  font-family: Inter, Arial, sans-serif;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 1%;
  background: #000000;
  color: #fff;
  position: absolute;
  left: 0;
}

.faq__link {
  margin-top: 3em !important;
}

@media (max-width: 768px) {
  .faq-block__faq-item-question-title {
    padding-left: 7%;
  }

  .faq-block__faq-item-answer {
    padding-left: 7%;
  }
}

@media (max-width: 540px) {
  .faq__container {
    position: relative;
    background: #795548;
    padding: 10rem 0 5rem 0;
  }

  .faq__inner {
    width: 90%;
    max-width: 960px;
    margin-inline: auto;
    /* padding-bottom: 60px; */
    background: #fff;
    padding: 3rem 1.15rem;
    border-radius: 10px;
  }

  .faq-block__faq-item-question-title {
    padding-left: 13%;
  }

  .faq-block__faq-item-answer {
    padding-left: 13%;
    text-align: justify;
    font-size: 0.95rem;
  }
}

.message {
}
.message__container {
  position: relative;
  background: #000;
}
.message__image {
  width: 100%;
  object-position: 65% 50%;
  opacity: 0.9;
}
.message__inner {
  position: absolute;
  width: 50%;
  max-width: 600px;
  top: 50%;
  left: 30%;
  transform: translateY(-50%) translateX(-50%);
}
.message__label {
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 0;
  color: #fff;
}
.message__title {
  color: #fff;
}
.message__body {
}
.message__description--lead {
  font-size: 1.25em;
  color: #fff;
}
.message__description {
  color: #fff;
}
.message__link {
  margin: 2.5em 0 !important;
}

.message__deco--top {
  position: absolute;
  width: 100%;
  top: -1px;
  left: 0;
  color: #795548;
  transform: scaleX(-1) scaleY(-1);
}

.message__deco--bottom {
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  color: #ffffff;
  transform: scaleX(-1);
}

@media (max-width: 1024px) {
  .message__description--lead {
    font-size: 1em;
  }

  .message__description {
    font-size: 0.75em;
  }
}

@media (max-width: 540px) {
  .message__inner {
    width: 80%;
    max-width: 600px;
    top: 50%;
    left: 45%;
    transform: translateY(-50%) translateX(-50%);
  }
}

.company {
}
.company__container {
}

.company__inner {
  width: 90%;
  max-width: 960px;
  margin-inline: auto;
  background: #fff;
  padding: 0 3rem;
}

.company__label {
  font-size: 5em;
  font-weight: bold;
  letter-spacing: 0px;
  display: block;
  margin-bottom: 17px;
  margin-left: -5px;
}

.company__title {
  margin-bottom: 2em;
}

.company-block__title {
  text-align: center;
  margin-bottom: 1.5em;
}

.company-block__body {
}
.company-block__definition {
  margin-top: 2rem;
  margin-left: 0;
  padding-bottom: 2em;
  border-bottom: 1px solid #e0e0e0;
}

.company-block__definition:last-child {
  border-bottom: none;
}

.company-block__term {
  font-size: 1rem;
  display: inline-block;
  width: 30%;
  margin-right: 10%;
  vertical-align: top;
  line-height: 1.3;
  text-align: left;
}

.company-block__detail {
  width: 52%;
  display: inline-block;
  font-size: 1rem;
  text-align: left;
}

.company-block-link {
}

@media (max-width: 768px) {
  .company-block__term {
    width: 35%;
    margin-right: 5%;
  }

  .company-block__detail {
    width: 50%;
  }
}

@media (max-width: 540px) {
  .company__inner {
    padding: 0 1rem;
  }

  .company__label {
    font-size: 3em;
    margin-bottom: 17px;
  }

  .company-block__definition-box {
    padding: 1em;
  }

  .company-block__definition-box {
    padding: 1rem 1.5rem;
    box-sizing: border-box;
  }

  .company-block__definition {
    margin-top: 1rem;
    margin-left: 0;
    padding-bottom: 1em;
    border-bottom: 1px solid #e0e0e0;
  }
  .company-block__definition-list {
    margin-top: 20px;
  }

  .company-block__term {
    display: block;
    width: 100%;
    text-align: left;
    padding: 4px 0 5px 0;
    vertical-align: unset;
    font-size: 1rem;
    margin-bottom: 19px;
  }

  .company-block__term:before {
    content: "■";
    color: #795548;
  }

  .company-block__detail {
    width: 100%;
    display: block;
    font-size: 0.95rem;
    margin: 0;
    padding: 0 1%;
  }

  .company-block__definition:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
