@charset "UTF-8";
/* ==========================================================================
  Global Settings
========================================================================== */
:root {
  --color-golden: #9f6100;
  --color-dark: #000;
  --size-content: 110rem;
  --font-shippori: "Shippori Mincho", serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --size-header: 5rem;
}
html {
  font-size: 62.5%;
  background: url(../img/bg-noise.webp) repeat center center;
  scroll-behavior: smooth;
}
body {
  -webkit-text-size-adjust: 100%;
  color: var(--color-golden);
  font-family: var(--font-shippori);
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.8;
}
body.is-opened {
  overflow: hidden;
}
main *[id] {
  scroll-margin-top: var(--size-header);
}
.center {
  text-align: center;
}
@media (hover: hover) {
  button,
  a {
    transition: opacity 0.3s;
    &:hover {
      opacity: 0.7 !important;
    }
  }
}
@media (max-width: 1100px) and (min-width: 769px) {
  html {
    font-size: calc(1000vw / 1100);
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(1000vw / 375);
  }
  body {
    font-size: 1.5rem;
  }
  .pc {
    display: none;
  }
}
/* ==========================================================================
  Header
========================================================================== */
#site-header {
  width: 100%;
  height: var(--size-header);
  padding: 0 2.4rem;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
#site-header nav {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#site-header nav figure {
  flex: 0 0 13rem;
}
#site-header nav ul {
  display: flex;
  line-height: 1;
  color: #4f4f4f;
  font-size: 1.4rem;
}
#site-header nav ul li {
  border-right: 1px solid #4f4f4f;
}
#site-header nav ul li:first-of-type {
  border-left: 1px solid #4f4f4f;
}
#site-header nav ul li a {
  padding: 0 2.4rem;
}
#site-header .js-menu {
  display: none;
}
@media (max-width: 768px) {
  #site-header {
    background: none;
  }
  #site-header nav {
    padding: 6rem 0 0;
    background-color: #fff;
    position: fixed;
    inset: 0;
    z-index: 8;
    display: block;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s,
      opacity 0.3s;
  }
  #site-header.is-opened nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  #site-header nav > figure {
    margin: 0 4.8rem;
  }
  #site-header nav > figure img {
    width: 100%;
  }
  #site-header nav ul {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }
  #site-header nav ul li {
    border-inline: none !important;
    border-bottom: 1px solid var(--color-golden);
  }
  #site-header nav ul li:first-of-type {
    border-top: 1px solid var(--color-golden);
  }
  #site-header nav ul li a {
    display: block;
    padding: 3.2rem 0;
    background: url(../img/ico-chevron-right.svg) no-repeat 6.4rem center / 1.2rem auto;
    color: var(--color-golden);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  #site-header .js-menu {
    display: block;
    width: 3.6rem;
    aspect-ratio: 1/1;
    background: url(../img/ico-menu.svg) no-repeat center center / 2.5rem auto;
    position: fixed;
    z-index: 9;
    right: 1.6rem;
    top: 1.6rem;
  }
  #site-header.is-opened .js-menu {
    background: url(../img/ico-menu-close.svg) no-repeat center center / contain;
  }
}
/* ==========================================================================
  Main Visual
========================================================================== */
#sec-mainvisual {
  min-height: 80rem;
  margin-bottom: 0;
  padding: 9rem calc(50% - calc(var(--size-content) / 2)) 0;
  text-align: center;
}
#sec-mainvisual > .deco {
  position: absolute;
  width: 100%;
  min-height: inherit;
  inset: 0;
  background: url(../img/mainvisual-deco.webp) no-repeat center 7rem / 124.4rem auto;
  pointer-events: none;
}
#sec-mainvisual > p {
  width: 11rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
#sec-mainvisual > figure {
  max-width: 94.5rem;
  margin: -5.5rem auto 3rem;
  position: relative;
  z-index: 1;
}
#sec-mainvisual > h1 {
  width: 52.6rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
#sec-mainvisual > h1 picture {
  display: block;
}
#sec-mainvisual > h1 picture:first-of-type {
  margin-bottom: 2rem;
}
/* #sec-mainvisual h1:before {
  content: "";
  inset: 0;
  position: absolute;
  background: url(../img/mainvisual-title-deco.svg) no-repeat center bottom 1.8rem / 96.4% auto;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 1s;
}
#sec-mainvisual h1.active:before {
  opacity: 1;
  transform: translateY(0);
} */
@media (max-width: 768px) {
  #sec-mainvisual {
    min-height: 69rem;
    padding: 3rem 0 0;
  }
  #sec-mainvisual > .deco {
    background: url(../img/mainvisual-deco-sp.webp) no-repeat center 12rem / 34.1rem auto;
  }
  #sec-mainvisual > p {
    width: 9.6rem;
  }
  #sec-mainvisual > figure {
    max-width: 35rem;
    margin: 5rem auto 2.4rem;
  }
  #sec-mainvisual > h1 {
    width: 31.8rem;
  }
  #sec-mainvisual > h1 img {
    width: 100%;
  }

  #sec-mainvisual > h1 picture:first-of-type {
    margin-bottom: 1.5rem;
  }
}
/* ==========================================================================
  Intro
========================================================================== */
#sec-intro {
  margin-top: 4rem;
  padding: 9rem calc(50% - calc(var(--size-content) / 2)) 17rem;
  text-align: center;
  position: relative;
}
#sec-intro ruby {
  line-height: 1;
  position: relative;
}
#sec-intro ruby:before {
  content: "しじん";
  position: absolute;
  top: -0.6rem;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}
#sec-intro > p {
  line-height: 2.1em;
  position: relative;
  z-index: 1;
}
#sec-intro > dl {
  width: 53rem;
  height: 10.6rem;
  padding: 1.6rem 0 0 2.4rem;
  margin: 4.5rem auto 0;
  background: url(../img/intro-boxborder.svg) no-repeat center center / contain;
  line-height: 1.57;
  text-align: left;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
#sec-intro > dl dt {
  font-size: 1.8rem;
}
#sec-intro > dl dd {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
#sec-intro > .bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88rem;
  aspect-ratio: 88/60;
  background: url(../img/intro-bg.svg) no-repeat center center / contain;
  transform: translateX(-50%);
  pointer-events: none;
}
#sec-intro > .deco {
  position: absolute;
  top: 2rem;
  left: 51%;
  width: 97rem;
  aspect-ratio: 97/45.8;
  background: url(../img/intro-deco.webp) no-repeat center center / contain;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  #sec-intro {
    margin: 0rem auto 3rem;
    padding: 6.4rem 0 0;
    min-height: 71rem;
  }
  #sec-intro > p {
    line-height: 2.15;
    letter-spacing: -0.02em;
  }
  #sec-intro > dl {
    width: 31.2rem;
    height: 16.2rem;
    margin: 2rem auto 0;
    padding: 1rem 0 0 2.4rem;
    background: url(../img/intro-boxborder-sp.svg) no-repeat center center / contain;
    line-height: 2.1;
  }
  #sec-intro > dl dt {
    font-size: 1.7rem;
  }
  #sec-intro > dl dd {
    line-height: 1.7;
  }
  #sec-intro > .bg {
    width: auto;
    inset: 0;
    aspect-ratio: unset;
    background: url(../img/intro-bg-sp.svg) no-repeat center top / 43rem auto;
    transform: none;
  }
  #sec-intro > .deco {
    width: auto;
    inset: 0;
    aspect-ratio: unset;
    background: url(../img/intro-deco-sp.webp) no-repeat center 0.5rem / 40rem auto;
    transform: none;
  }
}
/* ==========================================================================
  Route
========================================================================== */
#sec-route {
  padding: 8.2rem calc(50% - calc(var(--size-content) / 2)) 18rem;
  background:
    url(../img/route-deco02.webp) no-repeat calc(50% - calc(67rem / 2)) bottom / 12rem auto,
    url(../img/route-deco01.webp) no-repeat right calc(50% - calc(67rem / 2)) top 15rem / 20rem auto,
    linear-gradient(to bottom, #fff calc(100% - 13rem), transparent 13rem);
  text-align: center;
  position: relative;
}
#sec-route > h2 {
  width: 1em;
  line-height: 1;
  font-family: var(--font-noto);
  font-size: 4rem;
  position: absolute;
  left: calc(50% - calc(88rem / 2));
  top: 3rem;
}
#sec-route > figure {
  max-width: 58rem;
  margin: 0 auto;
}
#sec-route > a {
  display: block;
  width: 22rem;
  margin-left: 22rem;
}

@media (max-width: 768px) {
  #sec-route {
    padding: 11.6rem 1.6rem 2rem;
    background:
      url(../img/route-deco02-sp.webp) no-repeat 1rem bottom / 7.4rem auto,
      url(../img/route-deco01.webp) no-repeat right 3rem top 2rem / 16rem auto,
      linear-gradient(to bottom, #fff calc(100% - 4rem), transparent 13rem);
  }
  #sec-route > h2 {
    left: 1.6rem;
    top: -6rem;
  }
  #sec-route > figure {
    width: auto;
  }
  #sec-route > a {
    margin: 2rem auto 0;
    left: 1.5rem;
    position: relative;
  }
}
/* ==========================================================================
  Design
========================================================================== */
#sec-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2rem;
  padding: 0 calc(50% - calc(var(--size-content) / 2));
  background: url(../img/design-deco.webp) no-repeat right calc(50% - calc(65rem / 2)) top 4rem / 16.7rem auto;
  position: relative;
  scroll-margin-top: calc(var(--size-header) + 3rem);
}
#sec-design > h2 {
  width: 1em;
  line-height: 1;
  font-family: var(--font-noto);
  font-size: 4rem;
  position: absolute;
  left: calc(50% - calc(88rem / 2));
  top: -2rem;
}
#sec-design > p {
  width: min(100%, 50rem);
  border-block: 1px solid var(--color-golden);
  padding: 1.6rem 0;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-feature-settings: "palt";
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.8;
}
#sec-design > dl {
  margin: 7rem 0;
  color: var(--color-dark);
}
#sec-design > dl dt {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2.4rem;
}
#sec-design > dl dd {
  letter-spacing: -0.02em;
}
#sec-design > picture {
  max-width: 76.8rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #sec-design {
    margin: 2rem 0 0;
    padding: 11rem 1.6rem 0;
    background: url(../img/design-deco-sp.webp) no-repeat right 1.6rem top / 11.7rem auto;
    scroll-margin-top: 0;
  }
  #sec-design > h2 {
    left: 1.6rem;
    top: 5rem;
  }
  #sec-design > p {
    width: auto;
    margin-left: 6rem;
    padding: 2rem 1rem 2rem 0;
    font-size: 1.6rem;
    white-space: nowrap;
    overflow: hidden;
  }
  #sec-design > dl {
    margin: 7rem 0;
  }
  #sec-design > dl dt {
    margin-bottom: 1.6rem;
    font-size: 2.2rem;
  }
  #sec-design > dl dd {
    font-size: 1.5rem;
    white-space: nowrap;
    overflow: hidden;
  }
}
/* ==========================================================================
  Interior
========================================================================== */
#sec-interior {
  margin: 10rem auto 0;
  padding-bottom: 5rem;
  color: #000;
  position: relative;
}
#sec-interior hgroup {
  width: max-content;
  margin: 0 auto;
}
#sec-interior hgroup h2 {
  font-size: 4rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
}
#sec-interior .area {
  max-width: 84rem;
  margin: 9rem auto 0;
  text-align: center;
  font-weight: 600;
}
#sec-interior .area h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
#sec-interior .area h3:before,
#sec-interior .area h3:after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #000;
}
#sec-interior .area h3 span {
  width: 24rem;
  padding: 0.4rem 0;
  background: #fff;
  font-size: 1.7rem;
  white-space: nowrap;
}
#sec-interior .area h4 {
  margin: 5rem auto 2rem;
  font-size: 2.4rem;
  font-weight: 600;
}
#sec-interior .area .gallery {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin: 4rem auto 3rem;
  text-align: left;
}
#sec-interior .area .gallery figure {
  width: 50%;
}
#sec-interior .area .gallery figure figcaption {
  font-size: 1.4rem;
}
#sec-interior .area .gallery figure figcaption.right {
  text-align: right;
}
#sec-interior .profile {
  max-width: 84rem;
  padding: 3.5rem 9.5rem;
  margin: 5rem auto 0;
  background: #fff;
  border-radius: 2rem;
}

#sec-interior .profile .flex {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.6rem;
  font-family: var(--font-noto);
}
#sec-interior .profile .flex figure {
  flex: 0 0 25.4rem;
}
#sec-interior .profile .detail h3 {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
#sec-interior .profile .detail h3 small {
  font-size: 1.3rem;
}
#sec-interior .profile .detail p {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 500;
}
#sec-interior .profile .comment {
  color: #666;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
#sec-interior .profile .comment em {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-style: normal;
  color: #b2b2b2;
}
#sec-interior .profile .comment em:after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #b2b2b2;
}
#sec-interior.comingsoon {
  height: 50rem;
  pointer-events: none;
}
#sec-interior.comingsoon:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background: linear-gradient(to bottom, transparent 4rem, #ffffff 32rem, #fff 100%);
}
#sec-interior.comingsoon hgroup ~ * {
  display: none;
}
#sec-interior .block-comingsoon {
  padding: 20rem 0 0;
  background: url(../img/comingsoon-deco.webp) no-repeat center top / 18.2rem auto;
  text-align: center;
  position: relative;
  display: none;
}
#sec-interior.comingsoon .block-comingsoon {
  display: block;
  position: absolute;
  top: 20rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#sec-interior .block-comingsoon > p {
  margin-bottom: 2rem;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-golden);
}

@media (max-width: 768px) {
  #sec-interior .block-comingsoon {
    padding: 20rem 1.6rem 0;
    background:
      url(../img/comingsoon-deco.webp) no-repeat center 5.6rem / 13.4rem auto,
      linear-gradient(to bottom, transparent 20%, #fff 40%);
  }
  #sec-interior .block-comingsoon > p {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  #sec-interior.comingsoon:after {
    width: calc(100% + 3.2rem);
    left: -1.6rem;
  }
  #sec-interior {
    margin: 5rem 1.6rem 0;
  }

  #sec-interior hgroup {
    width: auto;
    margin: 0 1.6rem;
  }
  #sec-interior hgroup h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  #sec-interior .area h3 {
    display: block;
    margin-bottom: 0.8rem;
  }
  #sec-interior .area h3:before,
  #sec-interior .area h3:after {
    display: none;
  }
  #sec-interior .area h3 span {
    display: block;
    width: auto;
    padding: 0.4rem 0 0.6rem;
    border-radius: 0.8rem;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  #sec-interior .area h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    white-space: nowrap;
    line-height: 1.5;
    background: url(../img/interior-title-deco.svg) no-repeat center center / auto 5.8rem;
  }
  #sec-interior .area h4 span {
    display: none;
  }
  #sec-interior .area .gallery {
    flex-direction: column;
    gap: 0.4rem;
    margin: 0 auto 2rem;
  }
  #sec-interior .area .gallery figure {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #sec-interior .area .gallery figure img {
    order: 98;
  }
  #sec-interior .area .gallery figure figcaption {
    text-align: center;
    line-height: 1.6;
  }
  #sec-interior .area .gallery figure figcaption.right:nth-of-type(1) {
    order: 99;
  }
  #sec-interior .area .gallery figure figcaption:nth-of-type(2) {
    text-align: center !important;
    font-size: 1rem;
  }
  #sec-interior .area:has(h4) .gallery {
    gap: 3rem;
    margin-top: 4rem;
  }
  #sec-interior .profile {
    display: block;
    padding: 2rem 1.6rem;
  }
  #sec-interior .profile .flex {
    display: block;
  }
  #sec-interior .profile .detail h3 {
    letter-spacing: 0.05em;
    margin: 2rem auto 1rem;
    align-items: flex-end;
    gap: 1rem;
  }
  #sec-interior .profile .detail p {
    letter-spacing: 0;
    font-size: 1.15rem;
  }
  #sec-interior .profile .comment {
    letter-spacing: 0;
    font-size: 1.1rem;
  }
  #sec-interior .profile .comment em {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  #sec-interior .profile .comment .shrink {
    letter-spacing: -0.06em;
  }
}
/* ==========================================================================
  World Heritage
========================================================================== */
#sec-worldheritage {
  padding: 8rem calc(50% - calc(var(--size-content) / 2)) 12rem;
  text-align: center;
  position: relative;
  scroll-margin-top: 0;
}
#sec-interior.comingsoon + #sec-worldheritage:before {
  background: linear-gradient(to bottom, #efeaca 0, #efeaca calc(100% - 5rem), transparent 100%);
}
#sec-worldheritage:before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(to bottom, transparent 0%, #efeaca 5rem, #efeaca calc(100% - 5rem), transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
#sec-worldheritage h2 {
  position: relative;
}
#sec-worldheritage .map-container {
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
#sec-worldheritage .map-container > figure {
  flex: 0 0 56.6rem;
  aspect-ratio: 566/880;
  position: relative;
}
#sec-worldheritage .map-container > figure img {
  position: absolute;
  left: 0;
  top: 0;
}
#sec-worldheritage .map-container .spot-list {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 25.5rem 25.5rem;
  gap: 0.6rem;
  filter: drop-shadow(0.24rem 0.24rem 0.24rem rgba(0 0 0 /20%));
}
#sec-worldheritage .map-container .spot-list li {
  --theme-color: #fff;
  --theme-subcolor: var(--color-golden);
  padding: 0.8rem 0.8rem 0;
  aspect-ratio: 256/81;
  background: url(../img/worldheritage-frame.svg) no-repeat center center / contain;
  color: var(--theme-subcolor);
  text-align: left;
  font-family: var(--font-noto);
  font-feature-settings: "palt";
  counter-increment: spot;
  font-weight: normal;
}
#sec-worldheritage .map-container .spot-list li h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
#sec-worldheritage .map-container .spot-list li h3 small {
  font-size: 0.7rem;
}
#sec-worldheritage .map-container .spot-list li h3::before {
  content: counter(spot);
  background: var(--theme-subcolor);
  color: var(--theme-color);
  flex: 0 0 1.8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec-worldheritage .map-container .spot-list li p {
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #sec-worldheritage .map-container .spot-list li:nth-of-type(4n + 2),
  #sec-worldheritage .map-container .spot-list li:nth-of-type(4n + 3) {
    --theme-color: var(--color-golden);
    --theme-subcolor: #fff;
  }
  #sec-worldheritage .map-container .spot-list li:nth-of-type(4n + 2),
  #sec-worldheritage .map-container .spot-list li:nth-of-type(4n + 3) {
    background: url(../img/worldheritage-frame-golden.svg) no-repeat center center / contain;
  }
}
@media (max-width: 768px) {
  #sec-worldheritage .map-container {
    display: block;
  }

  #sec-worldheritage .map-container .spot-list {
    grid-template-columns: 1fr;
    margin: 2rem 3.4rem 0;
    gap: 1rem;
  }

  #sec-worldheritage .map-container .spot-list li {
    padding-top: 1rem;
    text-align: justify;
    overflow: hidden;
  }

  #sec-worldheritage .map-container .spot-list li:nth-of-type(even) {
    --theme-color: var(--color-golden);
    --theme-subcolor: #fff;
  }

  #sec-worldheritage .map-container .spot-list li:nth-of-type(even) {
    background: url(../img/worldheritage-frame-golden.svg) no-repeat center center / contain;
  }

  #sec-worldheritage .map-container .spot-list li h3 {
    font-size: 1.5rem;
  }

  #sec-worldheritage .map-container .spot-list li h3 small {
    font-size: 0.8rem;
  }

  #sec-worldheritage .map-container .spot-list li h3::before {
    flex: 0 0 2.2rem;
    font-size: 1.4rem;
  }

  #sec-worldheritage .map-container .spot-list li p {
    font-size: 1.1rem;
  }
}
/* ==========================================================================
  Reservation
========================================================================== */
#sec-reservation {
  margin-top: 5rem;
  font-family: var(--font-noto);
  text-align: center;
  position: relative;
}

#sec-reservation > h2 {
  padding: 1rem 1.6rem;
  background: var(--color-golden);
  color: #edecf8;
  font-size: 3rem;
}
#sec-reservation nav {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 8.8rem auto 6.4rem;
}
#sec-reservation nav a {
  flex: 0 0 30rem;
}
#sec-reservation nav a:first-of-type {
  border-right: 1px solid var(--color-golden);
}
#sec-reservation nav a h3 {
  padding-bottom: 3rem;
  background: url(../img/reservation-chevron.svg) no-repeat center bottom / 4.2rem auto;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  font-weight: 900;
}
#sec-reservation nav a p {
  line-height: 1.3;
  font-size: 2rem;
  font-weight: 600;
}
#sec-reservation nav a figure + p {
  letter-spacing: 0.1em;
}
#sec-reservation nav a p small {
  font-size: 1.3rem;
}
#sec-reservation nav a figure {
  margin: 1.6rem 0;
}
#sec-reservation nav a figure img {
  height: 8.6rem;
}
@media (max-width: 768px) {
  #sec-reservation {
    margin: 0;
  }

  #sec-reservation > h2 {
    padding: 2.8rem 0;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }

  #sec-reservation nav {
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    margin: 5rem auto;
  }

  #sec-reservation nav a {
    border: none !important;
  }

  #sec-reservation nav a h3 {
    font-size: 2rem;
    background: url(../img/reservation-chevron-sp.svg) no-repeat center bottom / 2.4rem auto;
  }

  #sec-reservation nav a p {
    font-size: 2.2rem;
  }

  #sec-reservation nav a p small {
    font-size: 1.6rem;
  }
}
/* ==========================================================================
  Footer
========================================================================== */
.site-footer {
  color: #000;
  text-align: center;
  font-family: var(--font-noto);
  font-size: 1.1rem;
  position: relative;
}
.site-footer .cta p {
  margin: 3rem auto 2rem;
  line-height: 1.7;
  font-weight: 400;
}
.site-footer .cta button {
  display: block;
  width: 7rem;
  margin: 0 auto;
}
.site-footer .cta a:first-of-type {
  display: block;
  width: 21.8rem;
  margin: 0 auto;
}
.site-footer .cta a + a {
  display: block;
  width: 38rem;
  margin: 2.4rem auto 0;
}
.site-footer figure {
  padding: 1.6rem 0;
  margin: 0 auto;
  background: #fff;
}
.site-footer figure img {
  width: 21rem;
}
@media (max-width: 768px) {
  .site-footer .cta p {
    font-size: 1.3rem;
  }
  .site-footer .cta a + a {
    width: auto;
    margin: 8rem 1.6rem 6rem;
  }
  .site-footer figure img {
    width: 12.6rem;
  }
}
