html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4a3f35;
  background-color: #faf7f4;
  line-height: 1.8;
  overflow-x: hidden;
}
body.is-open {
  overflow: hidden;
}

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section__head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section__head {
    margin-bottom: 40px;
  }
}

.section__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b89a6a;
  display: block;
  margin-bottom: 8px;
}

.section__title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 400;
  color: #3d3028;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}
.section__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #b89a6a;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 22px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.25em;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.btn:hover {
  background: #ffffff;
  color: #3d3028;
  opacity: 1;
}

.btn--dark {
  border-color: #3d3028;
  color: #3d3028;
}
.btn--dark:hover {
  background: #3d3028;
  color: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: background 0.4s, -webkit-box-shadow 0.4s;
  transition: background 0.4s, -webkit-box-shadow 0.4s;
  transition: background 0.4s, box-shadow 0.4s;
  transition: background 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}
.header.is-scroll {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 20px rgba(61, 48, 40, 0.07);
          box-shadow: 0 2px 20px rgba(61, 48, 40, 0.07);
}
.header.is-scroll .header__logo-en,
.header.is-scroll .header__logo-name {
  color: #3d3028;
}
.header.is-scroll .header__nav-list a {
  color: #3d3028;
}
.header.is-scroll .header__hamburger span {
  background: #3d3028;
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 20px;
    height: 60px;
  }
}

.header__logo a {
  display: block;
  line-height: 1;
}

.header__logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.header__logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.1em;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3d3028;
    z-index: 90;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.header__nav-list a {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .header__nav-list a {
    font-size: 20px;
    letter-spacing: 0.3em;
  }
}
.header__nav-list a:hover {
  color: #b89a6a;
  opacity: 1;
}

.header__nav-contact {
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: border-color 0.3s, background 0.3s !important;
  transition: border-color 0.3s, background 0.3s !important;
}
.header__nav-contact:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  opacity: 1 !important;
}

.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 200;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  height: 1px;
  background: #ffffff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__hamburger.is-open span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.header__hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.mv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 520px;
  }
}

.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #3d3028 0%, #7a5c45 40%, #c8a96e 100%);
}
.mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61, 48, 40, 0.6) 0%, rgba(110.0568181818, 87.8977272727, 52.4431818182, 0.5) 100%);
}

.mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
}

.mv__sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 28px;
}

.mv__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.mv__title span {
  display: block;
}

.mv__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 0.5em;
  margin-bottom: 48px;
  opacity: 0.85;
}
.mv__name em {
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.2em;
}

.mv__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    bottom: 24px;
  }
}
.mv__scroll span {
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.mv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    opacity: 0;
  }
}

@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    opacity: 0;
  }
}
.news {
  background: #ffffff;
  padding: 48px 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 32px 0;
  }
}

.news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.news__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b89a6a;
  white-space: nowrap;
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e8ddd4;
}
@media screen and (max-width: 767px) {
  .news__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px;
  }
}
.news__item:first-child {
  border-top: 1px solid #e8ddd4;
}

.news__date {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  color: #8a7a6a;
  letter-spacing: 0.1em;
  white-space: nowrap;
  min-width: 80px;
}

.news__tag {
  display: inline-block;
  padding: 1px 10px;
  border: 1px solid #b89a6a;
  color: #b89a6a;
  font-size: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  min-width: 72px;
  text-align: center;
}

.news__text {
  font-size: 13px;
  line-height: 1.7;
  color: #4a3f35;
}

.concept {
  background: #faf7f4;
}

.concept__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .concept__body {
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .concept__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.concept__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8ddd4 0%, #c8a882 60%, #a07850 100%);
}
.concept__img img {
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
.concept__img:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.concept__catch {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 2;
  color: #3d3028;
  margin-bottom: 32px;
}
.concept__catch em {
  font-style: normal;
  color: #b89a6a;
  border-bottom: 1px solid #b89a6a;
  padding-bottom: 2px;
}

.concept__desc {
  font-size: 14px;
  line-height: 2.2;
  color: #4a3f35;
  margin-bottom: 16px;
}
.concept__desc:last-child {
  margin-bottom: 0;
}

.menu {
  background: #f9f5f0;
}

.menu__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .menu__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.menu__category {
  background: #ffffff;
  padding: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu__category {
    padding: 24px 20px;
  }
}

.menu__category-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: #b89a6a;
  letter-spacing: 0.25em;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8ddd4;
  margin-bottom: 20px;
}

.menu__list {
  list-style: none;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted #e8ddd4;
  font-size: 13px;
}
.menu__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu__name {
  color: #4a3f35;
}

.menu__price {
  font-family: "Cormorant Garamond", serif;
  color: #3d3028;
  font-size: 15px;
  white-space: nowrap;
  margin-left: 16px;
}

.menu__note {
  font-size: 12px;
  color: #8a7a6a;
  margin-top: 28px;
  text-align: center;
  line-height: 1.8;
}

.gallery {
  background: #3d3028;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .gallery {
    padding: 60px 0;
  }
}
.gallery .section__en {
  color: rgba(184, 154, 106, 0.8);
}
.gallery .section__title {
  color: #ffffff;
}
.gallery .section__title::after {
  background: #b89a6a;
}

.gallery__slider {
  padding-bottom: 56px !important;
}

.gallery__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #5a4a3a 0%, #8a6a50 100%);
}
.gallery__img img {
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide:hover .gallery__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.swiper-button-prev,
.swiper-button-next {
  color: #b89a6a !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: #b89a6a !important;
}

.profile {
  background: #faf7f4;
}

.profile__body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1024px) {
  .profile__body {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .profile__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.profile__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #f0e8df 0%, #d4b896 50%, #b89a6a 100%);
}

.profile__name-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: #b89a6a;
  margin-bottom: 6px;
}

.profile__name {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 400;
  color: #3d3028;
  margin-bottom: 4px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .profile__name {
    font-size: 22px;
  }
}

.profile__role {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  color: #8a7a6a;
  letter-spacing: 0.2em;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e8ddd4;
}

.profile__desc p {
  font-size: 14px;
  line-height: 2.2;
  color: #4a3f35;
  margin-bottom: 16px;
}
.profile__desc p:last-child {
  margin-bottom: 0;
}

.profile__career {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e8ddd4;
}
.profile__career h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #b89a6a;
  text-transform: uppercase;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 14px;
}
.profile__career ul {
  list-style: none;
}
.profile__career ul li {
  font-size: 13px;
  color: #4a3f35;
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px dotted #e8ddd4;
  line-height: 1.6;
}
.profile__career ul li:last-child {
  border-bottom: none;
}
.profile__career ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: #b89a6a;
}

.access {
  background: #ffffff;
}

.access__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .access__body {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .access__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.access__map {
  overflow: hidden;
  -webkit-box-shadow: 0 4px 30px rgba(61, 48, 40, 0.1);
          box-shadow: 0 4px 30px rgba(61, 48, 40, 0.1);
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.access__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.access__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8ddd4;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.access__row:first-child {
  border-top: 1px solid #e8ddd4;
}
.access__row dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #8a7a6a;
  white-space: nowrap;
}
.access__row dd {
  font-size: 13px;
  line-height: 1.9;
  color: #4a3f35;
}
.access__row dd a {
  color: #b89a6a;
  border-bottom: 1px solid rgba(184, 154, 106, 0.4);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.access__row dd a:hover {
  border-color: #b89a6a;
  opacity: 1;
}

.contact {
  background: #f9f5f0;
}

.contact__lead {
  text-align: center;
  font-size: 14px;
  color: #4a3f35;
  margin-bottom: 56px;
  line-height: 2.2;
}

.contact__methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__methods {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

.contact__method {
  background: #ffffff;
  padding: 44px 32px;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.contact__method:hover {
  -webkit-box-shadow: 0 8px 32px rgba(61, 48, 40, 0.08);
          box-shadow: 0 8px 32px rgba(61, 48, 40, 0.08);
}
.contact__method h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #3d3028;
  margin: 16px 0 12px;
}

.contact__method-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  color: #b89a6a;
}
.contact__method-icon svg {
  width: 100%;
  height: 100%;
}

.contact__method-info {
  font-size: 17px;
  color: #3d3028;
  margin-bottom: 8px;
}
.contact__method-info a {
  color: #b89a6a;
  border-bottom: 1px solid rgba(184, 154, 106, 0.4);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  padding-bottom: 1px;
}
.contact__method-info a:hover {
  border-color: #b89a6a;
  opacity: 1;
}

.contact__method-note {
  font-size: 11px;
  color: #8a7a6a;
  line-height: 1.8;
}

.footer {
  background: #3d3028;
  padding: 64px 0 32px;
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  margin-bottom: 36px;
}
.footer__logo .footer__logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer__logo .footer__logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.footer__nav {
  margin-bottom: 36px;
}
.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .footer__nav ul {
    gap: 8px 20px;
  }
}
.footer__nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__nav a:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
}

.page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: #b89a6a;
  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;
  -webkit-transition: opacity 0.3s, visibility 0.3s, background 0.3s;
  transition: opacity 0.3s, visibility 0.3s, background 0.3s;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  background: rgb(161.8681818182, 129.2772727273, 77.1318181818);
  opacity: 1;
}
.page-top span {
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid #ffffff;
  border-left: 1.5px solid #ffffff;
  -webkit-transform: rotate(45deg) translateY(2px);
          transform: rotate(45deg) translateY(2px);
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  -webkit-transform: translateX(-28px);
          transform: translateX(-28px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fade-in-left.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(28px);
          transform: translateX(28px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.fade-in-right.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}