﻿/* common */

[data-section-slide]{
  opacity: 0;
  transition:
    opacity 0.75s ease,
    transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
[data-section-slide="left"]{
  transform: translateX(-5vw);
}
[data-section-slide="right"]{
  transform: translateX(5vw);
}
[data-section-slide].isSectionSlideVisible{
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce){
  [data-section-slide]{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media screen and (max-width: 768px){
  [data-section-slide="left"]{
    transform: translateX(-8vw);
  }
  [data-section-slide="right"]{
    transform: translateX(8vw);
  }
  [data-section-slide].isSectionSlideVisible{
    transform: translateX(0);
  }
}

/* mainVisual */

.mainVisualSection{
  position: relative;
  padding: 5.5vw 0 7.5vw;
  overflow: hidden;
  background: #fff;
}
.mainVisualInner{
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 3.5vw;
  align-items: center;
  width: 90vw;
  max-width: 1400px;
  margin: 0 auto;
}
.mainVisualCopy{
  padding-left: 2.4vw;
}
.mainVisualSection h1{
  font-family: var(--font-display);
  font-size: min(3.05vw, 58px);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.05em;
  word-break: keep-all;
}
.mainVisualSection h1 span{
  display: block;
  white-space: nowrap;
}
.mainVisualCopy .ornament{
  width: 90%;
  margin: 2vw 0 2.5vw;
}
.mainVisualLead p{
  width: 90%;
  color: var(--color-muted);
  font-size: 1.08vw;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}
.mainVisualLead p + p{
  margin-top: 1.05vw;
}
.mainVisualImage img{
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1480px){
  .mainVisualSection{
    padding: 5.0875rem 0 6.9375rem;
  }
  .mainVisualInner{
    gap: 3.2375rem;
    width: 83.25rem;
    max-width: 83.25rem;
  }
  .mainVisualCopy{
    padding-left: 2.22rem;
  }
  .mainVisualSection h1{
    font-size: 2.8213rem;
  }
  .mainVisualCopy .ornament{
    margin: 1.85rem 0 2.3125rem;
  }
  .mainVisualLead p{
    font-size: 0.999rem;
  }
  .mainVisualLead p + p{
    margin-top: 0.9713rem;
  }
}
@media screen and (max-width: 768px){
  .mainVisualSection{
    padding: 5.5vw 0 9vw;
  }
  .mainVisualInner{
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(100% - 48px, 640px);
  }
  .mainVisualCopy{
    order: 2;
    width: 100%;
    box-sizing: border-box;
    padding-inline: clamp(18px, 5vw, 32px);
    padding-bottom: 2.361vw;
  }
  .mainVisualImage{
    order: 1;
    width: 100%;
  }
  .mainVisualSection h1{
    width: 100%;
    margin: 6vw auto 0;
    font-size: 7.2vw;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .mainVisualSection h1 span:nth-child(2){
    transform: translateX(0.55em);
  }
  .mainVisualCopy .ornament{
    width: 100%;
    max-width: 100%;
    margin: 7.5vw auto 8vw;
  }
  .mainVisualLead{
    width: 100%;
    max-width: 70vw;
    margin-inline: auto;
  }
  .mainVisualLead p{
    width: 100%;
    font-size: 2.8vw;
    line-height: 2;
    letter-spacing: 0.035em;
    text-align: left;
    transform: none;
  }
  .mainVisualLead p + p{
    margin-top: 4vw;
  }
  .mainVisualSection p br{
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px){
  .mainVisualSection h1{
    font-size: 5.8vw;
  }
  .mainVisualCopy .ornament{
    max-width: 65vw;
  }
  .mainVisualLead{
    max-width: 60vw;
    margin-inline: auto;
  }
  .mainVisualLead p{
    font-size: 2.35vw;
  }
}

/* scenario */

.scenarioSection{
  position: relative;
  overflow: hidden;
  background: #f5f3ed;
}
.scenarioSection .sectionInner{
  position: relative;
  z-index: 1;
}
.scenarioPanel{
  position: relative;
}
.scenarioPanel .commonTtl,
.scenarioPanel .scenarioAllBtn{
  position: relative;
  z-index: 1;
}
.bookStage{
  --card-ratio: 300 / 424;
  --featured-w: 23vw;
  --side-w: 15.3vw;
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 15vw;
  margin: 3.056vw auto 0;
  padding: 2.361vw 3.889vw 3.611vw;
  border-radius: 1.806vw;
}
.scenarioCards{
  position: relative;
  z-index: 2;
  height: 30vw;
  perspective: 80vw;
}
.scenarioCard{
  position: absolute;
  overflow: hidden;
  background: #1f1713;
  border-radius: 1.111vw;
  box-shadow: 0 0.556vw 1.25vw rgba(67, 42, 23, 0.09);
  cursor: pointer;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
  will-change: transform, opacity, filter;
}
.scenarioCard:focus,
.scenarioCard:focus-visible,
.scenarioCard:active{
  outline: 0;
}
.scenarioCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured{
  top: -4vw;
  left: 50%;
  z-index: 5;
  width: var(--featured-w);
  aspect-ratio: var(--card-ratio);
  --card-transform: translateX(-50%);
  transform: translateX(-50%);
}
.side{
  top: 3.333vw;
  width: var(--side-w);
  aspect-ratio: var(--card-ratio);
  opacity: 1;
}
.side p{
  display: none;
}
.sideLeft{
  top: 1.944vw;
  z-index: 4;
  left: calc(50% - var(--featured-w) / 2 - var(--side-w) + 1.389vw);
  --card-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
.sideFarLeft{
  top: 6.2vw;
  z-index: 3;
  left: calc(50% - var(--featured-w) / 2 - var(--side-w) * 2 + 4.167vw);
  --card-transform: rotate(-18deg);
  transform: rotate(-18deg);
}
.sideRight{
  top: 1.944vw;
  z-index: 4;
  right: calc(50% - var(--featured-w) / 2 - var(--side-w) + 1.389vw);
  --card-transform: rotate(10deg);
  transform: rotate(10deg);
}
.sideFarRight{
  top: 6.2vw;
  z-index: 2;
  right: calc(50% - var(--featured-w) / 2 - var(--side-w) * 2 + 4.167vw);
  --card-transform: rotate(18deg);
  transform: rotate(18deg);
}
.bookStage.isWaitingDeal .scenarioCard{
  opacity: 0;
  transform: translateX(-12vw) translateY(1.2vw);
}
.bookStage.isDealing .scenarioCard{
  animation: scenarioCardDeal 0.5s ease both;
  transition: none;
}
.bookStage.isDealing .sideFarLeft{
  animation-delay: 0s;
}
.bookStage.isDealing .sideLeft{
  animation-delay: 0.12s;
}
.bookStage.isDealing .featured{
  animation-delay: 0.24s;
}
.bookStage.isDealing .sideRight{
  animation-delay: 0.36s;
}
.bookStage.isDealing .sideFarRight{
  animation-delay: 0.48s;
}
.bookStage.isSwitching .featured{
  animation-duration: 0.42s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
.bookStage.isSwitchingNext .featured{
  animation-name: scenarioFeaturedFlipNext;
}
.bookStage.isSwitchingPrev .featured{
  animation-name: scenarioFeaturedFlipPrev;
}
@keyframes scenarioFeaturedFlipNext{
  0%{
    opacity: 0.4;
    filter: saturate(0.9) brightness(0.94);
    transform: var(--card-transform) rotateY(-82deg) scale(0.985);
  }
  100%{
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: var(--card-transform) rotateY(0deg) scale(1);
  }
}
@keyframes scenarioFeaturedFlipPrev{
  0%{
    opacity: 0.4;
    filter: saturate(0.9) brightness(0.94);
    transform: var(--card-transform) rotateY(82deg) scale(0.985);
  }
  100%{
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: var(--card-transform) rotateY(0deg) scale(1);
  }
}
@keyframes scenarioCardDeal{
  0%{
    opacity: 0;
    transform: translateX(-12vw) translateY(1.2vw);
  }
  100%{
    opacity: 1;
    transform: var(--card-transform);
  }
}
@keyframes scenarioCardDealMobile{
  0%{
    opacity: 0;
    transform: translateX(-18vw);
  }
  100%{
    opacity: 1;
    transform: var(--card-transform);
  }
}
@media (prefers-reduced-motion: reduce){
  .bookStage.isWaitingDeal .scenarioCard{
    opacity: 1;
    transform: var(--card-transform);
  }
  .bookStage.isDealing .scenarioCard{
    animation: none;
  }
}
.infoTicket{
  position: relative;
  z-index: 6;
  width: 52%;
  margin: 0.972vw auto 0;
  padding: 1.6vw 2.5vw 2.2vw;
  color: var(--color-ink);
  background: #fff;
  border-radius: 1.1vw;
}
.ticketContent{
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 0.5vw;
  transform: translateX(-0.6vw);
}
.ticketTtl{
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9vw;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}
.ticketDetailButton{
  position: absolute;
  bottom: 1.65vw;
  right: 2vw;
  z-index: 2;
  width: 2.2vw;
  height: 2.2vw;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.ticketDetailButton:focus,
.ticketDetailButton:focus-visible,
.ticketDetailButton:active{
  outline: 0;
}
.ticketDetailButton img{
  display: block;
  width: 100%;
  height: auto;
}
.ticketTtl small{
  margin-top: 0.03em;
  display: block;
  font-size: 0.72em;
  line-height: 1.45;
}
.facts{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55vw;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
.facts div{
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-align: left;
  border-left: 0;
}
.facts div + div::before{
  display: inline-block;
  width: 0.08vw;
  height: 1.15em;
  margin-right: 0.55vw;
  content: "";
  background: rgba(105, 93, 80, 0.42);
}
.facts dt,
.facts dd{
  margin: 0;
}
.facts dt{
  display: none;
}
.facts dd{
  color: var(--color-muted);
  font-size: 1.05vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.scenarioNavButton{
  position: absolute;
  top: 17.5vw;
  z-index: 8;
  width: 3.611vw;
  height: 3.611vw;
  padding: 0;
  background: var(--color-bronze);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0.417vw 0.833vw rgba(70, 55, 38, 0.14);
  cursor: pointer;
}
.scenarioNavButton span{
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.111vw;
  height: 1.111vw;
  border-top: 0.278vw solid #fffaf0;
  border-right: 0.278vw solid #fffaf0;
}
.scenarioNavPrev{
  left: 0.2vw;
}
.scenarioNavPrev span{
  transform: translate(-34%, -50%) rotate(-135deg);
}
.scenarioNavNext{
  right: 0.2vw;
}
.scenarioNavNext span{
  transform: translate(-66%, -50%) rotate(45deg);
}
.scenarioAllBtn{
  margin: 0 auto;
}
@media screen and (min-width: 1480px){
  .scenarioSection{
    --section-top-space: 11.1rem;
    --section-side-space: 1.542rem;
    --section-bottom-space: 8.7875rem;
  }
  .scenarioPanel .commonTtl{
    margin-bottom: 4.625rem;
  }
  .scenarioPanel .commonTtl p{
    margin-top: 1.3413rem;
  }
  .bookStage{
    --featured-w: 19.625rem;
    --side-w: 13.125rem;
    width: 83.25rem;
    max-width: 83.25rem;
    min-height: 13.875rem;
    margin-top: 2.827rem;
    padding: 2.184rem 3.5973rem 3.3402rem;
    border-radius: 1.6706rem;
  }
  .scenarioCards{
    height: 27.75rem;
    perspective: 74rem;
  }
  .scenarioCard{
    border-radius: 1.0277rem;
    box-shadow: 0 0.5143rem 1.1563rem rgba(67, 42, 23, 0.09);
  }
  .featured{
    top: -3.7rem;
  }
  .side{
    top: 3.083rem;
  }
  .sideLeft{
    top: 1.7982rem;
    left: calc(50% - var(--featured-w) / 2 - var(--side-w) + 1.2848rem);
  }
  .sideFarLeft{
    top: 5.735rem;
    left: calc(50% - var(--featured-w) / 2 - var(--side-w) * 2 + 3.8545rem);
  }
  .sideRight{
    top: 1.7982rem;
    right: calc(50% - var(--featured-w) / 2 - var(--side-w) + 1.2848rem);
  }
  .sideFarRight{
    top: 5.735rem;
    right: calc(50% - var(--featured-w) / 2 - var(--side-w) * 2 + 3.8545rem);
  }
  .bookStage.isWaitingDeal .scenarioCard{
    transform: translateX(-11.1rem) translateY(1.11rem);
  }
  .infoTicket{
    margin-top: 0.8991rem;
    padding: 1.48rem 2.3125rem 2.035rem;
    border-radius: 1.0175rem;
  }
  .ticketContent{
    row-gap: 0.4625rem;
    transform: translateX(-0.555rem);
  }
  .ticketTtl{
    font-size: 1.7575rem;
  }
  .ticketDetailButton{
    bottom: 1.5263rem;
    right: 1.85rem;
    width: 2.035rem;
    height: 2.035rem;
  }
  .facts{
    gap: 0.5088rem;
  }
  .facts div + div::before{
    width: 0.074rem;
    margin-right: 0.5088rem;
  }
  .facts dd{
    font-size: 0.9713rem;
  }
  .scenarioNavButton{
    top: 16.1875rem;
    width: 3.3402rem;
    height: 3.3402rem;
    box-shadow: 0 0.3857rem 0.7705rem rgba(70, 55, 38, 0.14);
  }
  .scenarioNavButton span{
    width: 1.0277rem;
    height: 1.0277rem;
    border-top-width: 0.2572rem;
    border-right-width: 0.2572rem;
  }
  .scenarioNavPrev{
    left: 0.185rem;
  }
  .scenarioNavNext{
    right: 0.185rem;
  }
}
@media screen and (max-width: 768px){
  .scenarioSection .sectionInner{
    width: min(100% - 28px, 640px);
  }
  .bookStage{
    --featured-w: min(63vw, 17.875rem);
    --side-w: min(32vw, 8.875rem);
    min-height: 120vw;
    margin-top: -5vw;
    padding: 6vw 2vw 8vw;
    border-width: 0.2vw;
    border-radius: 5vw;
  }
  .scenarioCards{
    display: block;
    height: 86vw;
  }
  .scenarioCard{
    position: absolute;
    border-radius: 3vw;
  }
  .bookStage.isWaitingDeal .scenarioCard{
    opacity: 0;
    transform: translateX(-18vw);
  }
  .bookStage.isDealing .scenarioCard{
    animation-name: scenarioCardDealMobile;
    animation-duration: 0.46s;
    transition: none;
  }
  .bookStage.isDealing .sideFarLeft,
  .bookStage.isDealing .sideFarRight{
    animation: none;
  }
  .bookStage.isDealing .sideLeft{
    animation-delay: 0s;
  }
  .bookStage.isDealing .featured{
    animation-delay: 0.12s;
  }
  .bookStage.isDealing .sideRight{
    animation-delay: 0.24s;
  }
  .featured{
    top: -2vw;
    left: 50%;
    width: var(--featured-w);
    transform: translateX(-50%);
  }
  .side{
    top: 19vw;
    display: block;
    width: var(--side-w);
    height: 60vw;
    opacity: 0.9;
  }
  .sideLeft{
    left: 0.6vw;
    transform: rotate(-10deg);
  }
  .sideRight{
    right: 0.6vw;
    transform: rotate(10deg);
  }
  .sideFarLeft,
  .sideFarRight{
    display: none;
  }
  .infoTicket{
    width: 92%;
    margin: 6vw auto 0;
    padding: 4.5vw 3vw 5.8vw;
    border-radius: 3vw;
  }
  .ticketContent{
    row-gap: 1.5vw;
    transform: translateX(-1vw);
  }
  .ticketTtl{
    margin: 0;
    font-size: 4.5vw;
  }
  .ticketDetailButton{
    bottom: 4vw;
    right: 4.5vw;
    width: 7vw;
    height: 7vw;
  }
  .facts{
    gap: var(--space-label);
    margin-top: 0;
    padding-bottom: 0;
  }
  .facts div{
    padding: 0;
  }
  .facts div + div::before{
    width: 0.18vw;
    margin-right: var(--space-label);
  }
  .facts dd{
    margin-top: 0;
    font-size: 3vw;
  }
  .scenarioNavButton{
    top: 53vw;
    width: 9vw;
    height: 9vw;
  }
  .scenarioNavButton span{
    width: 2.7vw;
    height: 2.7vw;
    border-top-width: 0.5vw;
    border-right-width: 0.5vw;
  }
  .scenarioNavPrev span{
    transform: translate(-34%, -50%) rotate(-135deg);
  }
  .scenarioNavNext span{
    transform: translate(-66%, -50%) rotate(45deg);
  }
  .scenarioNavPrev{
    left: -2.2vw;
  }
  .scenarioNavNext{
    right: -2.2vw;
  }
  .scenarioAllBtn{
    margin-top: 0;
    margin-bottom: 3vw;
  }
  .snsCard::after{
    right: 3.5vw;
    width: 1.67vw;
    height: 1.67vw;
    border-top-width: 0.34vw;
    border-right-width: 0.34vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px){
  .bookStage{
    --featured-w: 30vw;
    --side-w: 20vw;
    min-height: 24vw;
  }
  .scenarioCards{
    height: 39vw;
  }
  .featured{
    top: -3vw;
  }
  .side{
    top: 5vw;
  }
  .sideLeft{
    left: calc(50% - var(--featured-w) / 2 - var(--side-w) + 1.5vw);
  }
  .sideRight{
    right: calc(50% - var(--featured-w) / 2 - var(--side-w) + 1.5vw);
  }
  .sideFarLeft{
    left: calc(50% - var(--featured-w) / 2 - var(--side-w) * 2 + 4vw);
  }
  .sideFarRight{
    right: calc(50% - var(--featured-w) / 2 - var(--side-w) * 2 + 4vw);
  }
}

/* reservation */

.reservationSection{
  --common-sub-section-title-margin: 0 auto 3.056vw;
  width: 62vw;
  margin: 7vw auto 0;
  padding: 3vw 1vw 3.5vw;
}
.reservationCards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin: 0 auto;
}
.reservationCards article{
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  padding: 0 3vw;
  text-align: center;
}
.reservationCards article + article{
  border-left: 0.069vw solid rgba(220, 160, 68, 0.46);
}
.reservationIcon{
  display: block;
  width: 4vw;
  height: auto;
  margin-bottom: 1.111vw;
}
.reservationCards h2{
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.75vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.reservationCards p{
  margin: 1.3vw 0 2vw;
  color: var(--color-muted);
  font-size: 1vw;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: left;
}
.reservationBtn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.9vw;
  padding: 0 2.361vw;
  color: var(--color-button-dark);
  font-size: 1.16vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: var(--type-button-tracking);
  border-radius: 0.7vw;
}
.reservationBtnPrimary{
  --common-btn-border-color: var(--color-bronze);
  color: var(--color-white);
  background: var(--color-bronze);
}
.reservationBtnSecondary{
  --common-btn-border-color: var(--color-button-dark);
  color: var(--color-white);
  background: var(--color-button-dark);
}
@media screen and (min-width: 1480px){
  .reservationSection{
    --common-sub-section-title-margin: 0 auto 2.8268rem;
    width: 57.35rem;
    margin-top: 6.475rem;
    padding: 2.775rem 0.925rem 3.2375rem;
  }
  .reservationCards article{
    padding: 0 2.775rem;
  }
  .reservationCards article + article{
    border-left-width: 0.0638rem;
  }
  .reservationIcon{
    width: 3.7rem;
    margin-bottom: 1.0277rem;
  }
  .reservationCards h2{
    font-size: 1.6188rem;
  }
  .reservationCards p{
    margin: 1.2025rem 0 1.85rem;
    font-size: 0.925rem;
  }
  .reservationBtn{
    min-height: 3.6075rem;
    padding: 0 2.184rem;
    font-size: 1.073rem;
    border-radius: 0.6475rem;
  }
}
@media screen and (max-width: 768px){
  .reservationSection{
    --common-sub-section-title-margin: 0 auto 8vw;
    width: 90vw;
    margin-top: 14vw;
    padding: 7vw 6vw 8vw;
  }
  .reservationCards{
    grid-template-columns: 1fr;
    gap: 7vw;
  }
  .reservationCards article{
    min-height: auto;
  }
  .reservationCards article + article{
    padding-top: 7vw;
    border-top: 0.2vw solid rgba(220, 160, 68, 0.46);
    border-left: 0;
  }
  .reservationIcon{
    width: 10vw;
    height: auto;
    margin-bottom: 3vw;
  }
  .reservationCards h2{
    font-size: 5vw;
  }
  .reservationCards p{
    margin: 3.75vw 0 7vw;
    font-size: 3.1vw;
    line-height: 1.95;
    text-align: left;
  }
  .reservationBtn{
    min-height: 13vw;
    font-size: 3.3vw;
    border-radius: 2vw;
  }
}

/* special experience */

.specialExpSection{
  position: relative;
  background: #fff;
}
.specialExpSection article{
  text-align: left;
  background: transparent;
  width: 90%;
  margin: 0 auto 4vw;
}
.experiencePanel{
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  border-radius: 1.8vw;
}
.experienceBg{
  position: absolute;
  inset: 0;
}
.experienceBg::before{
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}
.experienceBg img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experienceCopy{
  position: relative;
  z-index: 3;
  width: 38vw;
  padding: 7.5vw 0 6vw 6.5vw;
}
.experienceCopy hgroup{
  font-family: var(--font-display);
}
.experienceCopy h4{
  display: flex;
  align-items: center;
  color: var(--color-gold);
  font-size: var(--type-label-size);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--type-label-tracking);
  margin-bottom: 0.5vw;
}
.experienceCopy h2{
  color: var(--color-paper);
  font-size: 4.6vw;
  line-height: 1.1;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.experienceCopy .ornament{
  width: 14.86vw;
  margin: 2vw 0 2.25vw;
}
.experienceCopy h3{
  color: var(--color-gold-soft);
  font-size: 1.8vw;
  line-height: 1.85;
  letter-spacing: 0.07em;
}
.experienceCopy p{
  margin: 1vw 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: var(--type-body-size);
  font-weight: 500;
  line-height: 2;
  letter-spacing: var(--type-body-tracking);
  overflow-wrap: anywhere;
  word-break: break-all;
}
.experienceBtn,
.storyCafeBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 460px);
  min-height: 74px;
  padding: 0 2.361vw;
  font-weight: 700;
  line-height: 1;
  border-radius: 6px;
}
.experienceBtn{
  margin-top: 3.75vw;
  min-height: 4.8vw;
  font-size: 1.24vw;
  background: #fff;
}
.nTheaterSection .experiencePanel{
  background: var(--color-theater-navy);
}
.specialExpSection article .experiencePanel::after{
  position: absolute;
  inset: 0.8vw;
  z-index: 4;
  content: "";
  pointer-events: none;
  border: 0.08vw solid rgba(202, 162, 74, 0.72);
  border-radius: 1.15vw;
}
.nTheaterSection .experienceBg::before{
  background:
    linear-gradient(90deg, rgba(24, 45, 78, 0.96) 0%, rgba(24, 45, 78, 0.9) 32%, rgba(24, 45, 78, 0.42) 56%, rgba(24, 45, 78, 0) 80%),
    linear-gradient(180deg, rgba(24, 45, 78, 0.16), rgba(24, 45, 78, 0.38));
}
.nTheaterSection .experienceBg img{
  object-position: center right;
  filter: sepia(0.12) saturate(0.9);
}
.nTheaterSection .experienceBtn{
  color: var(--color-theater-navy);
}
.madamiseSection .experienceBg::before{
  background:
    linear-gradient(90deg, rgba(36, 19, 14, 0.92) 0%, rgba(52, 27, 19, 0.74) 36%, rgba(52, 27, 19, 0.12) 72%, rgba(52, 27, 19, 0.42) 100%),
    linear-gradient(180deg, rgba(36, 19, 14, 0.04), rgba(36, 19, 14, 0.38));
}
.madamiseSection .experienceBtn{
  color: var(--color-button-brown);
}
@media screen and (min-width: 1480px){
  .specialExpSection article{
    margin-bottom: 3.7rem;
  }
  .experienceCopy{
    width: 35.15rem;
    padding: 6.9375rem 0 5.55rem 6.0125rem;
  }
  .experienceCopy h4{
    margin-bottom: 0.4625rem;
    font-size: 0.8788rem;
  }
  .experienceCopy h2{
    font-size: 4.255rem;
  }
  .experienceCopy .ornament{
    width: 13.7455rem;
    margin: 1.85rem 0 2.0813rem;
  }
  .experienceCopy h3{
    font-size: 1.665rem;
  }
  .experienceCopy p{
    margin-top: 0.925rem;
    font-size: 0.925rem;
  }
  .experienceBtn{
    margin-top: 3.4688rem;
    min-height: 4.44rem;
    padding: 0 2.184rem;
    font-size: 1.147rem;
  }
  .experiencePanel,
  .specialExpSection article .experiencePanel::after{
    border-radius: 1.0638rem;
  }
  .specialExpSection article .experiencePanel::after{
    inset: 0.73rem;
    border-width: 0.07rem;
  }
}
@media screen and (max-width: 768px){
  .specialExpSection > .sectionInner{
    width: 92vw;
  }
  .specialExpSection article{
    width: 100%;
    margin: 0 auto 5vw;
  }
  .experiencePanel{
    border-radius: 3vw;
  }
  .specialExpSection article .experiencePanel::after{
    inset: 1.5vw;
    border-width: 0.22vw;
    border-radius: 2vw;
  }
  .experienceBg img{
    height: 100%;
    object-position: 80% center;
  }
  .nTheaterSection .experienceBg::before{
    background:
      linear-gradient(90deg, rgba(24, 45, 78, 0.98) 0%, rgba(24, 45, 78, 0.94) 44%, rgba(24, 45, 78, 0.56) 68%, rgba(24, 45, 78, 0.08) 100%),
      linear-gradient(180deg, rgba(24, 45, 78, 0.22), rgba(24, 45, 78, 0.48));
  }
  .madamiseSection .experienceBg::before{
    background:
      linear-gradient(90deg, rgba(36, 19, 14, 0.99) 0%, rgba(52, 27, 19, 0.94) 44%, rgba(52, 27, 19, 0.46) 72%, rgba(52, 27, 19, 0.58) 100%),
      linear-gradient(180deg, rgba(36, 19, 14, 0.18), rgba(36, 19, 14, 0.56));
  }
  .experienceCopy{
    width: 100%;
    padding: 13vw 9vw 9vw;
  }
  .experienceCopy h4{
    font-size: 2.5vw;
    margin-bottom: 1.5vw;
  }
  .experienceCopy h2{
    font-size: 8.5vw;
  }
  .experienceCopy .ornament{
    width: 40vw;
    margin: 5vw 0;
  }
  .experienceCopy h3{
    display: inline-block;
    font-size: 4.5vw;
  }
  .experienceCopy p{
    margin-top: 1.667vw;
    font-size: 3.1vw;
  }
  .experienceBtn,
  .storyCafeBtn{
    width: 100%;
    min-height: 62px;
  }
  .experienceBtn{
    margin-top: 8vw;
    font-size: 3.5vw;
  }
}

/* story cafe */

.storyCafePanel{
  position: relative;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 4.5vw;
  align-items: center;
  width: 90%;
  margin: 0 auto 4vw;
  padding: 5.5vw 4.5vw 5.5vw 4.5vw;
  background: #f5f3ed;
  border: 0.08vw solid rgba(217, 149, 47, 0.8);
  border-radius: 1.8vw;
}
.storyCafePanel::before{
  position: absolute;
  inset: 0.55vw;
  content: "";
  pointer-events: none;
  border: 0.08vw solid rgba(202, 162, 74, 0.48);
  border-radius: 1.15vw;
}
.storyCafePanel img{
  display: block;
  width: 100%;
  height: 25.5vw;
  aspect-ratio: 1.42 / 1;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.72), rgba(223, 207, 170, 0.42)),
    repeating-linear-gradient(-35deg, rgba(217, 149, 47, 0.13) 0 1px, transparent 1px 16px);
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
}
.storyCafeCopy h4{
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: rgba(217, 149, 47, 0.8);
  font-family: Georgia, serif;
  font-size: var(--type-label-size);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--type-label-tracking);
}
.storyCafeCopy h4::after{
  width: 54px;
  height: 1px;
  content: "";
  background: rgba(217, 149, 47, 0.46);
}
.storyCafeCopy h2{
  margin-top: 0.3vw;
  font-family: var(--font-display);
  font-size: 3vw;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.storyCafeCopy h3{
  margin: 1.5vw 0 0;
  color: var(--color-bronze);
  font-size: 1.45vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.09em;
}
.storyCafeText{
  margin: 0.3vw 0 0;
  color: var(--color-muted);
  font-size: var(--type-body-size);
  font-weight: 500;
  line-height: var(--type-body-leading);
  letter-spacing: var(--type-body-tracking);
}
.storyCafeActions{
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 2.5vw;
}
.storyCafeBtn{
  --common-btn-border-color: var(--button-primary-bg);
  width: 100%;
  min-height: 4.8vw;
  color: var(--color-white);
  font-size: 1.18vw;
  background: var(--button-primary-bg);
}
@media screen and (min-width: 1480px){
  .storyCafePanel{
    gap: 4.1625rem;
    margin-bottom: 3.7rem;
    padding: 5.0875rem 4.1625rem;
    border-width: 0.07rem;
    border-radius: 1.665rem;
  }
  .storyCafePanel::before{
    inset: 0.5rem;
    border-width: 0.07rem;
    border-radius: 1.0638rem;
  }
  .storyCafePanel img{
    height: 23.5875rem;
    border-radius: 0.625rem;
  }
  .storyCafeCopy h4{
    gap: 0.875rem;
    font-size: 0.8788rem;
  }
  .storyCafeCopy h4::after{
    width: 3.375rem;
    height: 0.0625rem;
  }
  .storyCafeCopy h2{
    margin-top: 0.2775rem;
    font-size: 2.775rem;
  }
  .storyCafeCopy h3{
    margin-top: 1.3875rem;
    font-size: 1.3413rem;
  }
  .storyCafeText{
    margin-top: 0.2775rem;
    font-size: 0.925rem;
  }
  .storyCafeActions{
    gap: 1.1563rem;
    margin-top: 2.3125rem;
  }
  .storyCafeBtn{
    min-height: 4.44rem;
    font-size: 1.0915rem;
  }
}
@media screen and (max-width: 768px){
  .storyCafePanel{
    grid-template-columns: 1fr;
    gap: 5vw;
    width: 100%;
    margin: 0 auto 5vw;
    padding: 0;
    border-width: 0.22vw;
    border-radius: 3vw;
  }
  .storyCafePanel::before{
    inset: 1.5vw;
    border-width: 0.22vw;
    border-radius: 2vw;
  }
  .storyCafePanel img{
    height: 55vw;
    aspect-ratio: 1.75 / 1;
    border-radius: 3vw 3vw 0 0;
  }
  .storyCafeCopy{
    padding: 2vw 8vw 8vw;
  }
  .storyCafeCopy h4{
    font-size: 2.7vw;
  }
  .storyCafeCopy h4::after{
    width: 10vw;
  }
  .storyCafeCopy h2{
    margin-top: 2.5vw;
    font-size: 6vw;
  }
  .storyCafeCopy h3{
    margin-top: 3vw;
    font-size: 3.5vw;
    line-height: 1.85;
    letter-spacing: 0.06em;
  }
  .storyCafeText{
    margin-top: 1vw;
    font-size: 2.95vw;
    line-height: 1.8;
  }
  .storyCafeActions{
    width: 100%;
    margin-top: 6vw;
  }
  .storyCafeBtn{
    min-height: 13vw;
    font-size: 3.3vw;
  }
  .specialExpSection .madamiseSection{
    padding-bottom: 2.361vw;
  }
}

/* beginner */

.beginnerCamPanel{
  width: 81.94vw;
  margin-inline: auto;
  padding: 2.36vw 2.92vw 0;
  text-align: center;
}
.beginnerCamTtl{
  display: grid;
  grid-template-columns: auto auto;
  gap: 2vw;
  align-items: center;
  justify-content: center;
  width: 52.78vw;
  margin: 0 auto 4vw;
  text-align: center;
  background: rgba(255, 255, 255, 0.52);
}
.beginnerCamMark{
  width: 4.8vw;
  height: auto;
  transform: translateY(0.6vw);
}
.beginnerCamTtl h3{
  display: flex;
  gap: 0.97vw;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.5vw;
  color: #32241b;
  font-family: var(--font-sans);
  font-size: 1.25vw;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.beginnerCamTtl h3 span{
  width: 1.11vw;
  height: 2.22vw;
  border-left: 0.14vw solid currentColor;
}
.beginnerCamTtl h3 span:first-child{
  margin-right: 0.22vw;
  transform: rotate(-35deg);
}
.beginnerCamTtl h3 span:last-child{
  border-left: 0;
  border-right: 0.14vw solid currentColor;
  transform: rotate(35deg);
}
.beginnerCamTtl h2{
  color: var(--color-bronze);
  font-family: var(--font-display);
  font-size: 3.7vw;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.beginnerCamInfo > div > p{
  padding: 0.25vw 2vw;
  background: #f5f3ed;
  color: var(--color-button-dark);
  font-family: var(--font-display);
  font-size: 1.42vw;
  font-weight: 800;
  line-height: 1.65;
  text-align: center;
  letter-spacing: 0.08em;
}
.beginnerCamInfo{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8vw;
  width: min(100%, 66vw);
  margin: 3.06vw auto 0;
  color: var(--color-ink);
  text-align: left;
}
.beginnerCamInfo li{
  padding: 0;
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.beginnerCamPrice{
  flex: 0 0 auto;
}
.beginnerCamPrice strong{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10.9vw;
  aspect-ratio: 1;
  color: var(--color-white);
  font-size: 2vw;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: var(--color-bronze);
  border-radius: 50%;
}
.beginnerCamPrice strong small{
  font-size: 0.68em;
  line-height: 1.2;
  font-weight: 500;
}
.beginnerCamPrice strong span{
  font-family: var(--font-display);
}
.beginnerCamInfo em{
  font-style: normal;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}
.beginnerCamInfo ul{
  display: grid;
  flex: 0 1 auto;
  gap: 0.34vw;
  margin: 0.92vw 0 0 1.15vw;
}
.beginnerCamInfo li{
  position: relative;
  padding-left: 1.28vw;
  font-size: 1.34vw;
}
.beginnerCamInfo li::before{
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 0.48vw;
  height: 0.48vw;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
}
.beginnerCamList{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3vw;
  text-align: left;
}
.beginnerCamList li{
  padding: 1.6vw 1.8vw;
}
.beginnerCamList li + li{
  border-left: 0.05vw solid rgba(106, 60, 16, 0.34);
}
.beginnerCamList h5{
  position: relative;
  display: block;
  margin: 0;
  padding: 0.6vw 1.5vw;
  color: var(--color-button-dark);
  font-family: var(--font-display);
  font-size: 1.5vw;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
  background: #f5f3ed;
  border-radius: 0.55vw;
}
.beginnerCamList p{
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 1.1vw;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
  padding: 1vw 0.8vw 0;
}
.beginnerCamActions{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.67vw;
  margin-top: 3.33vw;
}
.beginnerBtn{
  --common-btn-border-color: var(--color-button-dark);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6vw;
  padding: 0.8vw 2vw 0.8vw;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.6vw;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
  background: var(--color-button-dark);
  border-radius: 0.7vw;
}
.beginnerCamActions .beginnerBtn:first-child{
  --common-btn-border-color: currentColor;
  color: var(--color-button-brown);
  background: transparent;
}
.beginnerBtn small{
  font-size: 1.15vw;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width: 1480px){
  .beginnerCamPanel{
    width: 75.7945rem;
    padding: 2.183rem 2.701rem 0;
  }
  .beginnerCamTtl{
    gap: 1.85rem;
    width: 48.8215rem;
    margin-bottom: 3.7rem;
  }
  .beginnerCamMark{
    width: 4.44rem;
    transform: translateY(0.555rem);
  }
  .beginnerCamTtl h3{
    gap: 0.8973rem;
    margin-bottom: 0.4625rem;
    font-size: 1.1563rem;
  }
  .beginnerCamTtl h3 span{
    width: 1.0268rem;
    height: 2.0535rem;
    border-left-width: 0.1295rem;
  }
  .beginnerCamTtl h3 span:first-child{
    margin-right: 0.2035rem;
  }
  .beginnerCamTtl h3 span:last-child{
    border-right-width: 0.1295rem;
  }
  .beginnerCamTtl h2{
    font-size: 3.4225rem;
  }
  .beginnerCamInfo{
    gap: 1.665rem;
    width: min(100%, 61.05rem);
    margin-top: 2.8305rem;
  }
  .beginnerCamInfo > div > p{
    padding: 0.2313rem 1.85rem;
    font-size: 1.3135rem;
  }
  .beginnerCamPrice strong{
    width: 10.0825rem;
    font-size: 1.85rem;
  }
  .beginnerCamInfo ul{
    gap: 0.3145rem;
    margin: 0.851rem 0 0 1.0638rem;
  }
  .beginnerCamInfo li{
    padding-left: 1.184rem;
    font-size: 1.2395rem;
  }
  .beginnerCamInfo li::before{
    width: 0.444rem;
    height: 0.444rem;
  }
  .beginnerCamList{
    margin-top: 2.775rem;
  }
  .beginnerCamList li{
    padding: 1.48rem 1.665rem;
  }
  .beginnerCamList li + li{
    border-left-width: 0.0463rem;
  }
  .beginnerCamList h5{
    padding: 0.555rem 1.3875rem;
    font-size: 1.3875rem;
    border-radius: 0.5088rem;
  }
  .beginnerCamList p{
    padding: 0.925rem 0.74rem 0;
    font-size: 1.0175rem;
  }
  .beginnerCamActions{
    gap: 1.5448rem;
    margin-top: 3.0803rem;
  }
  .beginnerBtn{
    min-height: 5.55rem;
    padding: 0.74rem 1.85rem;
    font-size: 1.48rem;
    border-radius: 0.6475rem;
  }
  .beginnerBtn small{
    font-size: 1.0638rem;
  }
}
@media screen and (max-width: 768px){
  .beginnerPanel{
    gap: 7vw;
  }
  .beginnerCamPanel{
    width: 100%;
    padding: 4vw 5vw 0;
  }
  .beginnerCamTtl{
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 4vw;
    width: 95%;
    margin: 2vw 0 5vw -5vw;
    border-width: 0.2vw;
    justify-content: center;
    vertical-align: top;
  }
  .beginnerCamMark{
    width: 9vw;
    transform: translateY(1.6vw);
  }
  .beginnerCamTtl h3{
    gap: 1.35vw;
    margin-bottom: 1.5vw;
    font-size: 2.75vw;
    line-height: 1.4;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .beginnerCamTtl h3 span{
    width: 1.9vw;
    height: 4.2vw;
    border-left-width: 0.4vw;
  }
  .beginnerCamTtl h3 span:first-child{
    margin-right: 0.5vw;
    transform: rotate(-35deg);
  }
  .beginnerCamTtl h3 span:last-child{
    border-right-width: 0.4vw;
    transform: rotate(35deg);
  }
  .beginnerCamTtl h2{
    font-size: 7.4vw;
    line-height: 1.15;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .beginnerCamPrice strong{
    margin-left: -1.5vw;
    width: 21.5vw;
    font-size: 4.4vw;
  }
  .beginnerCamInfo{
    gap: 2.5vw;
    width: 100%;
  }
  .beginnerCamInfo > div > p{
    padding: 0.45vw 3vw;
    font-size: 3.3vw;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
  .beginnerCamInfo ul{
    gap: 0.8vw;
    margin: 1.7vw 0 0 2vw;
  }
  .beginnerCamInfo li{
    font-size: 3vw;
    padding: 0 3vw 0 3.3vw;
    line-height: 1.7;
  }
  .beginnerCamInfo li::before{
    top: 0.82em;
    width: 1.25vw;
    height: 1.25vw;
  }
  .beginnerCamList{
    grid-template-columns: 1fr;
    gap: 0;
    margin: 6vw auto 8vw;
    border-top: 0.3vw solid rgba(106, 60, 16, 0.34);
  }
  .beginnerCamList li{
    padding: 6vw 4vw 0;
    border-width: 0.3vw;
  }
  .beginnerCamList li + li{
    border-top: 0;
    border-left: 0;
  }
  .beginnerCamList h5{
    padding: 1.8vw 2.4vw;
    font-size: 4vw;
    border-width: 0.22vw;
    border-radius: 2vw;
  }
  .beginnerCamList p{
    font-size: 3vw;
    line-height: 1.85;
    padding: 2vw 3vw 0;
  }
  .beginnerCamActions{
    grid-template-columns: 1fr;
    gap: 2vw;
    width: 100%;
    margin-top: 3vw;
  }
  .beginnerBtn{
    min-height: 16.5vw;
    padding: 0 2.5vw;
    border-radius: 2vw;
    font-size: 3.8vw;
    white-space: nowrap;
  }
  .beginnerBtn small{
    font-size: 2.8vw;
  }
}

/* access */

.accessSection{
  position: relative;
  overflow: hidden;
  background: #f5f3ed;
}
.accessWrap{
  display: grid;
  grid-template-columns: 30vw 1fr;
  gap: 5vw;
  align-items: start;
  margin: 7vw auto 0;
  width: 90%;
}
.accessInfo hgroup{
  text-align: center;
  padding: 1.3vw 1.5vw 1.5vw;
  border-top: 0.08vw solid var(--color-button-dark);
  border-bottom: 0.08vw solid var(--color-button-dark);
}
.accessInfo h3,
.accessInfo h4{
  font-family: var(--font-display);
}
.accessInfo h3{
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.accessAddress{
  margin: 2.5vw 0 0;
  color: var(--color-ink);
  font-size: 1.3vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--type-body-tracking);
}
.accessRoutes{
  margin-top: 2.5vw;
}
.accessRoutes p{
  margin: 0 0 1.1vw;
  color: #b86f22;
  font-size: var(--type-small-size);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.accessRoutes dl{
  display: grid;
  gap: 0.83vw;
}
.accessRoutes div{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5vw;
  align-items: baseline;
  padding-bottom: 1vw;
  border-bottom: 0.069vw solid rgba(217, 149, 47, 0.3);
}
.accessRoutes div:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}
.accessRoutes dt,
.accessRoutes dd{
  color: var(--color-ink);
  font-size: var(--type-body-size);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: var(--type-body-tracking);
}
.accessRoutes strong{
  color: var(--color-gold);
  font-family: Georgia, serif;
  font-size: 1.6vw;
  font-weight: 500;
  line-height: 1;
}
.accessActions{
  display: grid;
  gap: 0.5vw;
  margin-top: 2.5vw;
}
.accessBtn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.17vw;
  padding: 0 3.6vw 0 2.361vw;
  font-size: var(--type-button-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  border-radius: 0.42vw;
}
.accessBtnPrimary{
  --common-btn-border-color: var(--button-primary-bg);
  color: var(--color-white);
  background: var(--button-primary-bg);
}
.accessBtnSecondary{
  color: var(--color-button-brown);
  background: var(--button-secondary-bg);
}
.accessMap{
  position: relative;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
}
.accessMap img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.accessMap iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1480px){
  .accessWrap{
    grid-template-columns: 27.75rem 1fr;
    gap: 4.625rem;
    width: 83.25rem;
    margin-top: 6.475rem;
  }
  .accessInfo hgroup{
    padding: 1.2025rem 1.3875rem 1.3875rem;
    border-top-width: 0.074rem;
    border-bottom-width: 0.074rem;
  }
  .accessInfo h3{
    font-size: 2.3125rem;
  }
  .accessAddress{
    margin-top: 2.3125rem;
    font-size: 1.2025rem;
  }
  .accessRoutes{
    margin-top: 2.3125rem;
  }
  .accessRoutes p{
    margin-bottom: 1.0175rem;
  }
  .accessRoutes dl{
    gap: 0.7678rem;
  }
  .accessRoutes div{
    gap: 0.4625rem;
    padding-bottom: 0.925rem;
    border-bottom-width: 0.0638rem;
  }
  .accessRoutes strong{
    font-size: 1.48rem;
  }
  .accessActions{
    gap: 0.4625rem;
    margin-top: 2.3125rem;
  }
  .accessBtn{
    min-height: 3.8573rem;
    padding: 0 3.33rem 0 2.184rem;
    border-radius: 0.3885rem;
  }
  .accessMap{
    position: relative;
    aspect-ratio: 1.25 / 1;
    overflow: hidden;
  }
}
@media screen and (max-width: 1200px){
  .accessWrap{
    width: 90vw;
  }
  .accessMap{
    aspect-ratio: 1.3 / 1;
  }
}
@media screen and (max-width: 768px){
  .accessWrap{
    grid-template-columns: 1fr;
    gap: 7vw;
    margin-top: 5vw;
    padding: 0 5vw;
  }
  .accessInfo{
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .accessInfo hgroup{
    padding: 2.5vw 1.5vw 3.5vw;
    border-width: 0.35vw;
  }
  .accessInfo h3{
    font-size: 6.5vw;
    letter-spacing: 0.08em;
    white-space: normal;
  }
  .accessAddress{
    margin-top: 7vw;
    font-size: 3.5vw;
    line-height: 1.8;
  }
  .accessRoutes{
    margin-top: 6.5vw;
  }
  .accessRoutes p{
    margin-bottom: 0;
    font-size: 3vw;
  }
  .accessRoutes div{
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2vw;
    padding: 1.5vw 0 2vw;
    border-bottom-width: 0.2vw;
  }
  .accessRoutes dt,
  .accessRoutes dd{
    font-size: var(--type-body-size);
  }
  .accessRoutes strong{
    font-size: 4.5vw;
  }
  .accessRoutes dd{
    white-space: nowrap;
  }
  .accessActions{
    gap: 2vw;
    margin-top: 7vw;
  }
  .accessBtn{
    min-height: 13vw;
    padding: 0 9vw 0 5vw;
    font-size: var(--type-button-size);
    border-radius: 2vw;
  }
  .accessMap{
    aspect-ratio: 1.13 / 1;
  }
}

/* events */

.eventsSection{
  position: relative;
  overflow: hidden;
  background: #fff;
}
.eventsCards{
  display: grid;
  gap: 1.5vw;
  width: 72vw;
  margin: 4vw auto 0;
  padding: 1.5vw 0;
  border-top: 0.069vw solid rgba(217, 149, 47, 0.24);
  border-bottom: 0.069vw solid rgba(217, 149, 47, 0.24);
}
.eventsCard{
  position: relative;
  overflow: hidden;
  padding-bottom: 1.5vw;
  border-bottom: 0.069vw solid rgba(217, 149, 47, 0.24);
}
.eventsCard a{
  display: grid;
  grid-template-columns: 12vw 1fr auto;
  gap: 2vw;
  align-items: center;
}
.eventsCard::before{
  position: absolute;
  top: 50%;
  right: 1vw;
  z-index: 1;
  width: 1.111vw;
  height: 1.111vw;
  content: "";
  border-top: 0.12vw solid var(--color-bronze);
  border-right: 0.12vw solid var(--color-bronze);
  transform: translateY(-50%) rotate(45deg);
}
.eventsCard:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}
.eventsVisual{
  position: relative;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  border-radius: 0.5vw;
}
.eventsVisual::after{
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(15, 10, 7, 0.02), rgba(15, 10, 7, 0.24));
  pointer-events: none;
}
.eventsVisual img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eventsStatus{
  margin: 0;
  color: var(--color-muted);
  text-align: center;
}
.eventsBody{
  display: grid;
  gap: 0.35vw;
  padding: 0.15vw 0 0;
}
.eventsBody time{
  color: var(--color-bronze);
  font-family: var(--font-display);
  font-size: 1vw;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.eventsBody h3{
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.38vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.eventsMoreBtn{
  margin: 2.361vw auto 0;
}
.tableMemories{
  width: 80.56vw;
  margin: 5.8vw auto 0;
  padding: 4.6vw 3.8vw 4vw;
}
.tableMemoriesHeader{
  position: relative;
  z-index: 1;
  text-align: center;
}
.tableMemoriesHeader p{
  margin: 1.25vw 0 0;
  color: var(--color-muted);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
}
.tableMemoryPhotos{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.6vw;
  align-items: start;
  margin-top: 4vw;
}
.tableMemoryPhoto{
  position: relative;
  display: block;
  --memory-rotate: 0deg;
  --memory-offset-x: 0;
  padding: 0.9vw 0.9vw 1.15vw;
  background: #fff;
  border: 0.069vw solid rgba(140, 100, 62, 0.05);
  box-shadow: 0 0.97vw 1.67vw rgba(47, 35, 22, 0.07);
  transform-origin: 50% 12%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.tableMemoryPhoto:nth-child(1){
  --memory-rotate: -3deg;
  transform: rotate(-3deg);
}
.tableMemoryPhoto:nth-child(2){
  --memory-rotate: 1.6deg;
  transform: rotate(1.6deg);
}
.tableMemoryPhoto:nth-child(3){
  --memory-rotate: -1.8deg;
  transform: rotate(-1.8deg);
}
.tableMemoryPhoto.isMemoryWobble{
  animation: tableMemoryWobble 0.9s ease;
}
@keyframes tableMemoryWobble{
  0%{
    transform: translateX(var(--memory-offset-x)) rotate(var(--memory-rotate)) translateY(0);
  }
  28%{
    transform: translateX(var(--memory-offset-x)) rotate(calc(var(--memory-rotate) + 2deg)) translateY(-0.35vw);
  }
  54%{
    transform: translateX(var(--memory-offset-x)) rotate(calc(var(--memory-rotate) - 1.4deg)) translateY(0.12vw);
  }
  78%{
    transform: translateX(var(--memory-offset-x)) rotate(calc(var(--memory-rotate) + 0.7deg)) translateY(-0.08vw);
  }
  100%{
    transform: translateX(var(--memory-offset-x)) rotate(var(--memory-rotate)) translateY(0);
  }
}
@media (prefers-reduced-motion: reduce){
  .tableMemoryPhoto.isMemoryWobble{
    animation: none;
  }
}
.tableMemoryPhoto:hover{
  box-shadow: 0 1.25vw 2.08vw rgba(47, 35, 22, 0.1);
  transform: rotate(0deg) translateY(-0.28vw);
}
.tableMemoryPhoto figure{
  aspect-ratio: 1.42 / 1;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.62);
}
.tableMemoryPhoto img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tableMemoryPhoto h2{
  margin: 0.56vw 0 0;
  font-family: var(--font-display);
  font-size: 1.18vw;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.04em;
}
.tableMemoryArrow{
  position: relative;
  display: block;
  width: 2vw;
  height: 2vw;
  margin: 0.8vw auto 0;
  border: 0.069vw solid var(--color-gold);
  border-radius: 50%;
}
.tableMemoryArrow::after{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.56vw;
  height: 0.56vw;
  content: "";
  border-top: 0.069vw solid var(--color-gold);
  border-right: 0.069vw solid var(--color-gold);
  transform: translate(-62%, -50%) rotate(45deg);
}
.tableMemoryLoading{
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted);
  text-align: center;
}
.tableMemoriesBtn{
  margin: 3.2vw auto 0;
  color: var(--color-gold);
}
@media screen and (min-width: 1480px){
  .eventsCards{
    gap: 1.3875rem;
    width: 66.6rem;
    margin-top: 3.7rem;
    padding: 1.3875rem 0;
    border-top-width: 0.0638rem;
    border-bottom-width: 0.0638rem;
  }
  .eventsCard{
    padding-bottom: 1.3875rem;
    border-bottom-width: 0.0638rem;
  }
  .eventsCard a{
    grid-template-columns: 11.1rem 1fr auto;
    gap: 1.85rem;
  }
  .eventsCard::before{
    right: 0.925rem;
    width: 1.0277rem;
    height: 1.0277rem;
    border-top-width: 0.111rem;
    border-right-width: 0.111rem;
  }
  .eventsVisual{
    border-radius: 0.4625rem;
  }
  .eventsBody{
    gap: 0.3238rem;
    padding-top: 0.1388rem;
  }
  .eventsBody time{
    font-size: 0.925rem;
  }
  .eventsBody h3{
    font-size: 1.2765rem;
  }
  .eventsMoreBtn{
    margin-top: 2.184rem;
  }
  .tableMemories{
    width: 74.518rem;
    margin-top: 5.365rem;
    padding: 4.255rem 3.515rem 3.7rem;
  }
  .tableMemoriesHeader p{
    margin-top: 1.1563rem;
  }
  .tableMemoryPhotos{
    gap: 2.405rem;
    margin-top: 3.7rem;
  }
  .tableMemoryPhoto{
    padding: 0.8325rem 0.8325rem 1.0638rem;
    border-width: 0.0638rem;
    box-shadow: 0 0.8973rem 1.5448rem rgba(47, 35, 22, 0.07);
  }
  .tableMemoryPhoto:hover{
    box-shadow: 0 1.1563rem 1.924rem rgba(47, 35, 22, 0.1);
    transform: rotate(0deg) translateY(-0.259rem);
  }
  .tableMemoryPhoto h2{
    margin-top: 0.518rem;
    font-size: 1.0915rem;
  }
  .tableMemoryArrow{
    width: 1.85rem;
    height: 1.85rem;
    margin-top: 0.74rem;
    border-width: 0.0638rem;
  }
  .tableMemoryArrow::after{
    width: 0.518rem;
    height: 0.518rem;
    border-top-width: 0.0638rem;
    border-right-width: 0.0638rem;
  }
  .tableMemoriesBtn{
    margin-top: 2.96rem;
  }
}
@media screen and (max-width: 768px){
  .eventsCards{
    gap: 2.4vw;
    width: 100%;
    margin-top: 6vw;
    padding: 3vw 0;
    border-top-width: 0.2vw;
    border-bottom-width: 0.2vw;
  }
  .eventsCard{
    padding-bottom: 3vw;
    border-bottom-width: 0.2vw;
  }
  .eventsCard a{
    grid-template-columns: 31vw 1fr 4vw;
    gap: 3.8vw;
  }
  .eventsCard::before{
    top: 50%;
    right: 3vw;
    width: 2.7vw;
    height: 2.7vw;
    border-top-width: 0.3vw;
    border-right-width: 0.3vw;
  }
  .eventsVisual{
    border-radius: 1vw;
  }
  .eventsBody{
    gap: 0.7vw;
    padding: 0;
  }
  .eventsBody time{
    font-size: 3vw;
  }
  .eventsBody h3{
    font-size: 3.35vw;
    line-height: 1.55;
  }
  .eventsMoreBtn{
    margin-top: 7vw;
  }
  .tableMemories{
    width: 100%;
    margin-top: 12vw;
    padding: 8.5vw 4.5vw 9vw;
  }
  .tableMemoriesHeader p{
    margin-top: 3vw;
    line-height: 1.9;
  }
  .tableMemoriesHeader p br{
    display: none;
  }
  .tableMemoryPhotos{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6vw 1vw;
    align-items: start;
    margin-top: 8vw;
  }
  .tableMemoryPhoto,
  .tableMemoryPhoto:nth-child(1),
  .tableMemoryPhoto:nth-child(2),
  .tableMemoryPhoto:nth-child(3){
    width: 40vw;
    padding: 1.8vw 1.8vw 3.2vw;
    border-width: 0.2vw;
    box-shadow: 0 2.8vw 5vw rgba(47, 35, 22, 0.07);
  }
  .tableMemoryPhoto:nth-child(1){
    transform: rotate(-3deg);
  }
  .tableMemoryPhoto:nth-child(2){
    margin-top: 16vw;
    --memory-rotate: 1.6deg;
    --memory-offset-x: 2vw;
    transform: translateX(2vw) rotate(1.6deg);
  }
  .tableMemoryPhoto:nth-child(3){
    margin-top: -18vw;
    transform: rotate(-1.8deg);
  }
  .tableMemoryPhoto.isMemoryWobble{
    animation-name: tableMemoryWobbleSp;
  }
  @keyframes tableMemoryWobbleSp{
    0%{
      transform: translateX(var(--memory-offset-x)) rotate(var(--memory-rotate)) translateY(0);
    }
    28%{
      transform: translateX(var(--memory-offset-x)) rotate(calc(var(--memory-rotate) + 4deg)) translateY(-1vw);
    }
    54%{
      transform: translateX(var(--memory-offset-x)) rotate(calc(var(--memory-rotate) - 2.8deg)) translateY(0.35vw);
    }
    78%{
      transform: translateX(var(--memory-offset-x)) rotate(calc(var(--memory-rotate) + 1.4deg)) translateY(-0.2vw);
    }
    100%{
      transform: translateX(var(--memory-offset-x)) rotate(var(--memory-rotate)) translateY(0);
    }
  }
  .tableMemoryPhoto:hover{
    transform: rotate(0deg) translateY(-0.8vw);
  }
  .tableMemoryPhoto h2{
    margin: 1.5vw 0 0;
    font-size: 3.1vw;
  }
  .tableMemoryArrow{
    width: 5vw;
    height: 5vw;
    margin-top: 2vw;
    border-width: 0.2vw;
  }
  .tableMemoryArrow::after{
    width: 1.4vw;
    height: 1.4vw;
    border-top-width: 0.24vw;
    border-right-width: 0.24vw;
  }
  .tableMemoriesBtn{
    margin-top: 8vw;
  }
}

/* sns */

.snsSection{
  position: relative;
  overflow: hidden;
  background: #f5f3ed;
}
.snsCards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3vw;
  width: 68vw;
  margin: 4vw auto 0;
}
.snsCard{
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 2.4vw;
  align-items: center;
  padding: 2.4vw 3vw;
  color: var(--color-ink);
  background: #fff;
  border: 0;
  border-radius: 1.5vw;
  box-shadow: none;
}
.snsCard::after{
  position: static;
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 0.7vw;
  height: 0.7vw;
  content: "";
  border-top: 0.12vw solid currentColor;
  border-right: 0.12vw solid currentColor;
  transform: rotate(45deg);
}
.snsIcon{
  display: block;
  grid-row: 1 / span 2;
  width: 3.8vw;
  height: 3.8vw;
  object-fit: contain;
}
.snsCard h3{
  grid-column: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.58vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.snsCard p{
  grid-column: 2;
  margin: 0.4vw 0 0;
  color: var(--color-muted);
  font-size: 1.02vw;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 1480px){
  .snsCards{
    gap: 1.2025rem;
    width: 62.9rem;
    margin-top: 3.7rem;
  }
  .snsCard{
    column-gap: 2.22rem;
    padding: 2.22rem 2.775rem;
    border-radius: 1.3875rem;
  }
  .snsCard::after{
    width: 0.6475rem;
    height: 0.6475rem;
    border-top-width: 0.111rem;
    border-right-width: 0.111rem;
  }
  .snsIcon{
    width: 3.515rem;
    height: 3.515rem;
  }
  .snsCard h3{
    font-size: 1.4615rem;
  }
  .snsCard p{
    margin-top: 0.37rem;
    font-size: 0.9435rem;
  }
}
@media screen and (max-width: 768px){
  .snsSection .sectionInner{
    width: 85vw;
  }
  .snsCards{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2.5vw;
    margin: 2vw auto 5vw;
  }
  .snsIcon{
    width: 11vw;
    height: 11vw;
  }
  .snsCard{
    grid-template-columns: auto 1fr auto;
    column-gap: 5vw;
    padding: 5vw 6vw;
    border-radius: 2.5vw;
  }
  .snsCard::after{
    width: 1.8vw;
    height: 1.8vw;
    border-top-width: 0.32vw;
    border-right-width: 0.32vw;
  }
  .snsCard h3{
    font-size: var(--type-card-title);
  }
  .snsCard p{
    font-size: var(--type-small-size);
  }
}
