@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Shippori Mincho B1", "Yu Mincho", "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 1.5rem;
  line-height: 2;
  color: #000000;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dd {
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

button {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: inherit;
}

.main {
  display: block;
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 121px;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.35)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 25px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 20px;
    height: 100%;
  }
}
.header__logo {
  display: block;
}
.header__logo-img {
  display: block;
  width: 170px;
  height: auto;
}
@media (max-width: 767px) {
  .header__logo-img {
    width: 130px;
  }
}
.header__sns {
  margin-left: 32px;
  width: 27px;
  height: 27px;
}
@media (max-width: 1024px) {
  .header__sns {
    margin-left: auto;
    margin-right: 60px;
  }
}
.header__sns img {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.header__menu-btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 24px;
  z-index: 110;
}
@media (max-width: 1024px) {
  .header__menu-btn {
    display: block;
  }
}
.header__menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header__menu-btn span:nth-child(1) {
  top: 0;
}
.header__menu-btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__menu-btn span:nth-child(3) {
  bottom: 0;
}
.header__menu-btn.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.is-open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.gnav {
  margin-left: auto;
}
@media (max-width: 1024px) {
  .gnav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease, visibility 0.4s;
    transition: opacity 0.4s ease, visibility 0.4s;
  }
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media (max-width: 1024px) {
  .gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .gnav__item {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .gnav.is-open .gnav__item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .gnav__item:nth-child(1) {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .gnav__item:nth-child(2) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
  .gnav__item:nth-child(3) {
    -webkit-transition-delay: 0.35s;
            transition-delay: 0.35s;
  }
  .gnav__item:nth-child(4) {
    -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s;
  }
}
.gnav__link {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}
@media (max-width: 1024px) {
  .gnav__link {
    font-size: 1.8rem;
  }
}

.footer {
  padding: 110px 0 85px;
  background: #fff;
}
.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.footer__logo {
  margin: 0 auto;
  width: 46px;
}
.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer__address {
  margin-top: 60px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 1.3rem;
  }
}
.footer__copy {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-head {
    margin-bottom: 40px;
  }
}
.section-head__ja {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .section-head__ja {
    font-size: 2.4rem;
  }
}
.section-head__en {
  margin-top: 2px;
  color: #d6bc8d;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
@media (max-width: 767px) {
  .section-head__en {
    font-size: 1.4rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 919px;
  height: 100dvh;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero {
    height: 90vh;
    min-height: 560px;
  }
}
.hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.6s ease;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform, opacity;
}

.hero__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 50px 50px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1024px) {
  .hero__inner {
    padding: 0 30px 30px;
  }
}
@media (max-width: 767px) {
  .hero__inner {
    padding: 0 20px 30px;
  }
}
.hero__copy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  color: #fff;
}
.hero__copy span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #d6bc8d;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .hero__copy span {
    padding: 4px 6px;
    margin-bottom: 0.5rem;
  }
}
.hero__copy-en {
  margin-top: 32px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 0 8.4px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero__copy-en {
    margin-top: 16px;
    font-size: 0.9rem;
  }
}
.hero__scroll {
  position: absolute;
  right: 50px;
  bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .hero__scroll {
    right: 20px;
  }
}
.hero__scroll-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-shadow: 0 0 8.4px rgba(0, 0, 0, 0.24);
}
.hero__scroll-line {
  margin-top: 18px;
  width: 1px;
  height: 83px;
  background: #fff;
}

.news {
  padding: 120px 0 100px;
}
@media (max-width: 767px) {
  .news {
    padding: 60px 0 50px;
  }
}
.news__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .news__inner {
    padding: 0 20px;
  }
}
.news__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .news__slider {
    gap: 8px;
  }
}
.news__paper {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 772px;
          flex: 0 1 772px;
  width: 100%;
  max-width: 772px;
  border: 1px solid rgba(0, 0, 0, 0.43);
  aspect-ratio: 772/1018;
  overflow: hidden;
  background: #fff;
}
.news__paper-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.news__paper-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.news__paper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: #f8f4ed;
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.news__nav:hover {
  background: #d6bc8d;
}
.news__nav:hover::before {
  border-color: #fff;
}
.news__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #d6bc8d;
  border-right: 2px solid #d6bc8d;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.news__nav--prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.news__nav--next::before {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.news__nav.is-hidden {
  display: none;
}
@media (max-width: 767px) {
  .news__nav {
    width: 36px;
    height: 36px;
  }
  .news__nav::before {
    width: 9px;
    height: 9px;
  }
}
.news__dots {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
.news__dots.is-hidden {
  display: none;
}
.news__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #a5a29b;
  opacity: 0.35;
  cursor: pointer;
  -webkit-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
}
.news__dot.is-active {
  opacity: 1;
  background: #d6bc8d;
}
.news__list {
  display: table;
  margin: 0 auto;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .news__list {
    margin-top: 40px;
  }
}
.news__line {
  margin: 60px auto 0;
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background: rgba(0, 0, 0, 0.43);
  opacity: 0.3;
  border-color: #d6bc8d;
  border-bottom: 0px solid #d6bc8d;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 14px 0;
}
@media (max-width: 767px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    padding: 16px 0;
  }
}
.news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
.news__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

body.single-documentimg {
  background-image: linear-gradient(to bottom, #d6bc8d 0, #d6bc8d 105px, transparent 105px);
  background-repeat: no-repeat;
  background-attachment: scroll;
}
@media (max-width: 1024px) {
  body.single-documentimg {
    background-image: linear-gradient(to bottom, #d6bc8d 0, #d6bc8d 75px, transparent 75px);
  }
}

.news-single {
  padding: 180px 0 100px;
}
@media (max-width: 767px) {
  .news-single {
    padding: 120px 0 50px;
  }
}
.news-single__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .news-single__inner {
    padding: 0 20px;
  }
}
.news-single__head {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .news-single__head {
    margin-bottom: 40px;
  }
}
.news-single__date {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #a5a29b;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.news-single__title {
  font-family: "Shippori Mincho B1", "Yu Mincho", "游明朝", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .news-single__title {
    font-size: 2.2rem;
  }
}
.news-single__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .news-single__images {
    gap: 24px;
    margin-bottom: 40px;
  }
}
.news-single__image {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.43);
  background: #fff;
  overflow: hidden;
}
.news-single__image img {
  display: block;
  width: 100%;
  height: auto;
}
.news-single__body {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
.news-single__body > * + * {
  margin-top: 1em;
}
.news-single__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.43);
}
@media (max-width: 767px) {
  .news-single__nav {
    margin-top: 50px;
    padding-top: 28px;
    gap: 12px;
  }
}
.news-single__nav-link {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 48%;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.43);
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-transition: background 0.3s, color 0.3s, border-color 0.3s;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.news-single__nav-link:hover {
  background: #f8f4ed;
  border-color: #d6bc8d;
}
.news-single__nav-link--prev {
  text-align: left;
}
.news-single__nav-link--prev .news-single__nav-arrow {
  grid-row: span 2;
}
.news-single__nav-link--next {
  text-align: right;
  grid-template-columns: 1fr auto;
}
.news-single__nav-link--next .news-single__nav-arrow {
  grid-row: span 2;
  grid-column: 2;
}
.news-single__nav-link--next .news-single__nav-label,
.news-single__nav-link--next .news-single__nav-title {
  grid-column: 1;
}
.news-single__nav-link.is-disabled {
  pointer-events: none;
  visibility: hidden;
}
@media (max-width: 767px) {
  .news-single__nav-link {
    padding: 12px 14px;
    font-size: 1.2rem;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.news-single__nav-arrow {
  font-size: 1.8rem;
  color: #d6bc8d;
}
.news-single__nav-label {
  display: block;
  font-size: 1.2rem;
  color: #a5a29b;
  letter-spacing: 0.08em;
}
.news-single__nav-title {
  display: block;
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-single__foot {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-single__foot {
    margin-top: 40px;
  }
}
.news-single__back {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(0, 0, 0, 0.43);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.news-single__back:hover {
  background: #d6bc8d;
  color: #fff;
  border-color: #d6bc8d;
}

.about {
  padding: 110px 0 130px;
  background: #f8f4ed;
}
@media (max-width: 767px) {
  .about {
    padding: 60px 0 70px;
  }
}
.about__inner {
  max-width: 1404px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .about__inner {
    padding: 0 24px;
  }
}
.about__photo {
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 1364/384;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__photo {
    margin-top: 24px;
    aspect-ratio: 16/9;
  }
}
.about__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about__lead {
  margin: 60px 0 30px;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .about__lead {
    font-size: 1.9rem;
    margin: 40px 0 24px;
  }
}
.about__text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

.message {
  padding: 150px 0 100px;
}
@media (max-width: 767px) {
  .message {
    padding: 70px 0 60px;
  }
}
.message__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
@media (max-width: 1024px) {
  .message__inner {
    grid-template-columns: 1fr;
  }
}
.message__body {
  padding: 0 5vw;
  max-width: 800px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .message__body {
    padding: 40px 40px 0;
    max-width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 767px) {
  .message__body {
    padding: 30px 24px 0;
  }
}
.message__label {
  color: #d6bc8d;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.message__heading {
  margin-top: 18px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .message__heading {
    font-size: 2rem;
  }
}
.message__text {
  margin-top: 32px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
.message__sign {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px 14px;
}
@media (max-width: 767px) {
  .message__sign {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.message__sign-company {
  width: 100%;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: -1rem;
}
@media (max-width: 767px) {
  .message__sign-company {
    text-align: right;
  }
}
.message__sign-position {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.message__sign-name {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.message__photo {
  width: 100%;
  aspect-ratio: 800/763;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .message__photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 720px;
    margin: 0 auto;
  }
}
.message__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.message__photo-wrapper {
  position: relative;
}
.message__photo-wrapper::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: -20px;
  width: 100%;
  height: 40%;
  background: #d6bc8d;
  z-index: -1;
}

.gallery {
  --gallery-scale: 1;
  padding: 30px 0 100px;
  overflow: hidden;
  height: calc(524px * var(--gallery-scale));
}
@media (max-width: 1024px) {
  .gallery {
    --gallery-scale: 0.7;
    padding: 20px 0 60px;
  }
}
@media (max-width: 767px) {
  .gallery {
    --gallery-scale: 0.65;
    padding: 20px 0 50px;
  }
}
.gallery__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  -webkit-animation: gallery-scroll 50s linear infinite;
          animation: gallery-scroll 50s linear infinite;
}
.gallery__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: calc(32px * var(--gallery-scale));
  height: calc(280px * var(--gallery-scale));
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery__item--a {
  aspect-ratio: 473/335;
  margin-top: calc(101px * var(--gallery-scale));
}
.gallery__item--b {
  aspect-ratio: 264/337;
  margin-top: 0;
}
.gallery__item--c {
  aspect-ratio: 473/336;
  margin-top: calc(188px * var(--gallery-scale));
}
.gallery__item--d {
  aspect-ratio: 289/336;
  margin-top: calc(60px * var(--gallery-scale));
}
.gallery__item--e {
  aspect-ratio: 473/335;
  margin-top: calc(130px * var(--gallery-scale));
}

@-webkit-keyframes gallery-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes gallery-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.company {
  padding: 130px 0 150px;
}
@media (max-width: 767px) {
  .company {
    padding: 60px 0 70px;
  }
}
.company__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .company__inner {
    padding: 0 24px;
  }
}
.company__table {
  max-width: 870px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.company__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 767px) {
  .company__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 4px;
  }
}
.company__term {
  color: #a5a29b;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.company__desc {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.group {
  padding: 120px 0 120px;
  background: #f8f4ed;
}
@media (max-width: 767px) {
  .group {
    padding: 80px 0 80px;
  }
}
.group__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .group__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .group__inner {
    padding: 0 24px;
  }
}
.group__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-right: 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
@media (max-width: 1024px) {
  .group__head {
    border-right: none;
    padding-right: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  }
}
.group__heading {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .group__heading {
    font-size: 2.4rem;
  }
}
.group__label {
  margin-top: 0px;
  color: #d6bc8d;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .group__label {
    font-size: 1.4rem;
  }
}
.group__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  gap: 24px 50px;
}
@media (max-width: 767px) {
  .group__list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
  }
}
.group__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.group__link {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}