/* ---------------------------------------------------------------------------------------------

　   PAGE FV (Express etc.)

--------------------------------------------------------------------------------------------- */

.page-fv {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.page-fv-slider {
  height: 100%;
}

.page-fv-slider .splide__track,
.page-fv-slider .splide__list,
.page-fv-slider .splide__slide {
  height: 100%;
}

.page-fv-slider .splide__slide {
  overflow: hidden;
}

.page-fv-slider .splide__slide picture,
.page-fv-slider .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.page-fv-slider .splide__slide img {
  object-fit: cover;
  object-position: center;
}


.page-fv-badge {
  display: block;
  position: absolute;
  z-index: 5;
  width: 30rem;
  pointer-events: none;
}
.page-fv-badge img {
  display: block;
  width: 100%;
  height: auto;
}

/* --- SP --- */
@media only screen and ( max-width : 767px ) {
  .page-fv {
    aspect-ratio: 780 / 800;
    height: auto;
  }
  .page-fv-badge {
    top: 6.5rem;
    right: 1.5rem;
    width: 11rem;
  }
}

/* --- PC --- */
@media print, screen and ( min-width : 768px ) {
  .page-fv {
    height: 100vh;
    height: 100svh;
  }

  .page-fv-badge {
    top: 16rem;
    /* right: max(4rem, calc((100vw - var(--inner-wide)) / 2 + 4rem)); */
    right: 5rem;
    width: 30rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS INTRO

--------------------------------------------------------------------------------------------- */

.sec-intro {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.intro-line {
  position: relative;
  z-index: 10;
}

.intro-body {
  position: relative;
  background-position: center top;
  background-size: 100% auto, cover;
  background-repeat: no-repeat;
}

.intro-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.intro-pine,
.intro-cloud {
  position: absolute;
  display: block;
  height: auto;
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: normal;
}

.intro-logo {
  display: block;
  width: 22rem;
  height: auto;
}

.intro-badge {
  display: block;
  width: auto;
  margin-top: 1.2rem;
}

.intro-title {
  margin: 0;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.intro-text {
  margin: 0;
  line-height: 1.85;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

.intro-gallery {
  overflow: hidden;
  width: 100%;
}

.intro-gallery .gallery-track-inner {
  display: flex;
  width: max-content;
  gap: 1.6rem;
  will-change: transform;
}

.intro-gallery .gallery-item {
  margin: 0;
  flex: 0 0 auto;
  width: min(78vw, 32rem);
}

.intro-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.intro-gallery.is-ready .gallery-track-inner {
  animation: gallery-marquee 40s linear infinite;
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-gallery.is-ready .gallery-track-inner {
    animation: none;
  }
}
.sumoland-tokyo-signature .sec-intro .btn-ticket {
  background: var(--red);
}
.sumoland-tokyo-signature .sec-intro .btn-ticket:hover {
  opacity: 0.9;
}

.sumoland-tokyo-express .sec-intro .btn-ticket {
  background: var(--green);
}

.sumoland-tokyo-express .sec-intro .btn-ticket:hover {
  opacity: 0.9;
}

/* --- SP --- */
@media only screen and ( max-width : 767px ) {
  .intro-brand {
    margin-bottom: 2.8rem;
  }

  .intro-logo {
    width: 30rem;
  }

  .intro-badge {
    height: 1.3rem;
    margin-top: 1rem;
  }

  .intro-title {
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
  }

  .intro-text {
    margin-bottom: 6rem;
    font-size: 1.4rem;
  }

  .sec-intro .btn-ticket {
    margin-bottom: 4rem;
    font-size: 1.8rem;
  }

  .intro-gallery .gallery-item {
    width: min(78vw, 20rem);
  }

  .intro-gallery .gallery-item img {
    height: 15rem;
  }

  .intro-body {
    padding: 8rem 0 6rem;
  }

  /* Express page-specific */
  #express-intro .intro-line {
    height: 4rem;
    background: url("../img/express/line_sp.jpg") left center / auto 100% repeat-x;
  }

  #express-intro .intro-body {
    background-image: url("../img/express/bg_gold_sp.png"),url("../img/express/bg_sp.jpg");
  }
  #tokyo-signature-intro .intro-body {
    background-image: url("../img/tokyo-signature/intro_gold_bg_sp.png"),url("../img/tokyo-signature/intro_bg_sp.jpg");
  }

  #express-intro .intro-pine--01 {
    top: 1.4rem;
    left: -4rem;
    width: 9.6rem;
  }

  #express-intro .intro-cloud--01 {
    top: 27.5rem;
    left: -5.8rem;
    width: 15rem;
  }

  #express-intro .intro-cloud--02 {
    top: -7rem;
    right: -6.4rem;
    width: 9.7rem;
  }

  #express-intro .intro-pine--02 {
    top: auto;
    bottom: 10.4rem;
    right: -4.4rem;
    left: auto;
    width: 12.6rem;
  }
}

/* --- PC --- */
@media print, screen and ( min-width : 768px ) {
  .intro-inner {
    max-width: 126rem;
  }

  .intro-brand {
    margin-bottom: 10rem;
  }

  .intro-logo {
    width: 80rem;
  }

  .intro-badge {
    height: 3rem;
    margin-top: 1.6rem;
  }

  .intro-title {
    margin-bottom: 5rem;
    font-size: 4.2rem;
    text-align: center;
  }

  .intro-text {
    margin-bottom: 8rem;
    font-size: 2rem;
  }

  .sec-intro .btn-ticket {
    margin-bottom: 15rem;
  }

  .intro-gallery .gallery-track-inner {
    gap: 2rem;
  }

  .intro-gallery .gallery-item {
    width: 55rem;
  }

  .intro-gallery .gallery-item img {
    height: 41rem;
  }

  .intro-body {
    padding: 15rem 0;
  }

  /* Express page-specific */
  #express-intro .intro-line {
    height: 11rem;
    background: url("../img/express/line.jpg") left center / auto 100% repeat-x;
  }

  #express-intro .intro-body {
    background-image: url("../img/express/bg_gold.png"),url("../img/express/bg.jpg");
  }
  #tokyo-signature-intro .intro-body {
    background-image: url("../img/tokyo-signature/intro_gold_bg.png"),url("../img/tokyo-signature/intro_bg.jpg");
  }

  #express-intro .intro-pine--01 {
    top: 0;
    left: -36.5rem;
    width: 33.7rem;
  }

  #express-intro .intro-cloud--01 {
    top: 51.4rem;
    left: -33.7rem;
    width: 33.7rem;
  }

  #express-intro .intro-cloud--02 {
    top: -23rem;
    right: -37.7rem;
    width: 41.8rem;
  }

  #express-intro .intro-pine--02 {
    top: auto;
    bottom: 14rem;
    right: -33.7rem;
    left: auto;
    width: 38.6rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS SEATS & PRICE

--------------------------------------------------------------------------------------------- */

.sec-seats {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: -1px;
}

.sec-seats .sec-title {
  color: var(--gold-light);
}

.seats-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.seats-catch {
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  text-align: center;
}

.tokyo-seat-options {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.tokyo-seat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: .1rem solid #fff;
  border-radius: 1.2rem;
  box-sizing: border-box;
}

.tokyo-seat-card-title {
  margin: 0;
  padding: 1.6rem 2rem;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  background-repeat: no-repeat;
  background-position: left center, right center, center;
  background-size: contain, contain, cover;
}

.tokyo-seat-card--standard .tokyo-seat-card-title {
  background-color: #9c1c28;
  background-image:
    url("../img/tokyo-signature/seat_bgL.png"),
    url("../img/tokyo-signature/seat_bgR.png"),
    url("../img/tokyo-signature/standard_bg.jpg");
}

.tokyo-seat-card--box .tokyo-seat-card-title {
  background-color: #3a2a6e;
  background-image:
    url("../img/tokyo-signature/seat_bgL.png"),
    url("../img/tokyo-signature/seat_bgR.png"),
    url("../img/tokyo-signature/front_box_bg.jpg");
}

.tokyo-seat-card-media {
  margin: 0;
  line-height: 0;
}

.tokyo-seat-card-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tokyo-seat-card-text {
  margin: 0;
  padding: 3rem 1rem;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: left;
}

.seats-layout {
  width: 100%;
  text-align: center;
}

.seats-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.seats-label::before,
.seats-label::after {
  content: "";
  flex: 1;
  max-width: 18rem;
  height: 0.6rem;
  background-repeat: no-repeat;
}

.seats-label::before {
  background-image:
    radial-gradient(circle closest-side, #fff 99%, transparent 100%),
    linear-gradient(#fff, #fff);
  background-size: 0.6rem 0.6rem, calc(100% - 0.6rem) 1px;
  background-position: right center, left center;
}

.seats-label::after {
  background-image:
    radial-gradient(circle closest-side, #fff 99%, transparent 100%),
    linear-gradient(#fff, #fff);
  background-size: 0.6rem 0.6rem, calc(100% - 0.6rem) 1px;
  background-position: left center, right center;
}

.seats-layout-figure {
  margin: 0 auto;
}
#express-seats .seats-layout-figure {
  max-width: 90rem;
}
#tokyo-signature-seats .seats-layout-figure {
  max-width: 78.4rem;
}

.seats-layout-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.seats-panels {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.seats-panel {
  width: 100%;
}

.seats-panel-title {
  margin: 0 0 1rem;
  text-align: center;
  color: #fff;
  line-height: 1.3;
}

.seats-box {
  border: .1rem solid rgba(255, 255, 255, 1);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.seats-box-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 1rem 1.6rem;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.seats-box--price .seats-box-head {
  background: linear-gradient(90deg, #8a1520 0%, #c30d23 50%, #8a1520 100%);
}

#express-seats .seats-box--price .seats-box-head {
  background: #528128;
}
.seats-box--schedule .seats-box-head {
  background: linear-gradient(90deg, #8a7020 0%, #b59322 50%, #8a7020 100%);
}
#express-seats .seats-box--schedule .seats-box-head {
  background: #C1AB34;
}

.seats-box-body {
  padding: 0 1.6rem;
}

.seats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  border-bottom: .1rem solid rgba(255, 255, 255, 1);
}

.sumoland-tokyo-express .seats-box.seats-box--price .seats-row {
  justify-content: center;
}

.seats-row:has(.seats-row-label--num) {
  position: relative;
  justify-content: center;
}

.seats-row:last-child {
  border-bottom: 0;
}

.seats-row-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  line-height: 1.3;
}

.seats-row-label-main {
  font-weight: 700;
}

.seats-row-label-sub {
  font-weight: 400;
}

.seats-row-label--num {
  display: block;
  width: 10rem;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #D5C987;
  font-weight: 400;
}

.seats-row-price {
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  white-space: nowrap;
}

.seats-row-price s {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.seats-row-price strong,
.seats-row-time {
  color: #fff;
}

.seats-row-time {
  display: block;
  width: 100%;
  text-align: center;
}


.sec-seats .btn-ticket {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

#tokyo-signature-seats .btn-ticket {
  background: var(--red);
}

.sumoland-tokyo-express .sec-seats .btn-ticket {
  background: var(--green);
}
.btn-ticket:hover {
  opacity: 0.9;
}


@media only screen and ( max-width : 767px ) {
  #express-seats.sec-seats {
    padding: 8rem 0 14rem;
    background: url("../img/express/cafe_bg_sp.png") center bottom / 100% auto no-repeat,url("../img/express/bg_black_sp.jpg") center top / 100% auto repeat-y;
  }
  #tokyo-signature-seats.sec-seats {
    padding: 8rem 0;
    background: url("../img/tokyo-signature/howto_bg_sp.jpg") center top / cover no-repeat;
  }

  .seats-catch {
    font-size: 2rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
  }

  .tokyo-seat-options {
    margin-top: 0;
    margin-bottom: 4.8rem;
  }

  .seats-label {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .seats-label::before,
  .seats-label::after {
    height: 0.5rem;
    background-size: 0.5rem 0.5rem, calc(100% - 0.5rem) 0.1rem;
  }

  .seats-layout {
    margin-bottom: 4.8rem;
  }

  .seats-panels {
    gap: 4rem;
    margin-bottom: 4rem;
  }

  #tokyo-signature-seats .seats-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  #tokyo-signature-seats .seats-box--standard .seats-box-head {
    background: url("../img/tokyo-signature/standard_bg.jpg") center / cover no-repeat;
  }

  #tokyo-signature-seats .seats-box--front-box .seats-box-head {
    background: url("../img/tokyo-signature/front_box_bg.jpg") center / cover no-repeat;
  }

  /* #tokyo-signature-seats .seats-row:has(.seats-row-label--num) {
    justify-content: space-between;
  } */

  .seats-panel-title {
    font-size: 2rem;
  }

  .seats-box-head {
    font-size: 2rem;
  }

  .seats-row-label-main {
    font-size: 1.6rem;
  }

  .seats-row-label-sub {
    font-size: 1.2rem;
  }

  .seats-row-price s {
    font-size: 1.2rem;
  }

  .seats-row-price strong {
    font-size: 1.6rem;
  }

  .seats-row-price-unit {
    font-size: 1.2rem;
  }

  .seats-row-time {
    font-size: 1.5rem;
  }
  #express-seats .seats-box--price .seats-box-head {
    
  }
  /* #express-seats .seats-box--schedule .seats-box-head,
  #tokyo-signature-seats .seats-box--schedule .seats-box-head {
    background: url(../img/tokyo-signature/schedule_bg.jpg) center / cover no-repeat;
  } */
  #tokyo-signature-seats .seats-box--schedule .seats-box-head {
    background: url(../img/tokyo-signature/schedule_bg.jpg) center / cover no-repeat;
  }
  .seats-row-label--num {
    width: 6rem;
  }
  .sec-seats .btn-ticket {
    font-size: 1.8rem;
  }
  .seats-row {
    padding: 1.5rem 0;
  }

}

@media print, screen and ( min-width : 768px ) {
  #express-seats.sec-seats {
    padding: 15rem 0 30vw;
    background: url("../img/express/cafe_bg.png") center bottom / 100% auto no-repeat,url("../img/tokyo-signature/gra.png") center top / 2px auto repeat-x,url("../img/express/bg_black.jpg") center top / 100% auto repeat-y;
  }
  #tokyo-signature-seats.sec-seats {
    padding: 15rem 0;
    background: url("../img/tokyo-signature/gra.png") center top / 2px auto repeat-x,url("../img/express/bg_black.jpg") center top / 100% auto repeat-y;
  }

  .seats-catch {
    font-size: 4rem;
    margin-bottom: 5rem;
    margin-top: 6rem;
  }
  .tokyo-seat-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.2rem;
    margin: 0 0 8rem;
  }

  .seats-row-label {
    gap: 0.4rem;
  }
  

  .tokyo-seat-card {
    border-radius: 1rem;
  }

  .tokyo-seat-card-title {
    padding: 2.4rem 3.2rem;
    font-size: 3.2rem;
  }

  .tokyo-seat-card-text {
    padding: 5rem 4.5rem;
    font-size: 1.6rem;
  }

  .seats-label {
    margin-bottom: 4rem;
    font-size: 4rem;
    gap: 2rem;
  }

  .seats-label::before,
  .seats-label::after {
    max-width: 28rem;
    height: 0.8rem;
    background-size: 0.8rem 0.8rem, calc(100% - 0.8rem) 1px;
  }

  .seats-layout {
    margin-bottom: 8rem;
  }

  .seats-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.8rem;
    align-items: stretch;
    margin-bottom: 10rem;
  }

  .seats-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .seats-panel-title {
    margin-bottom: 2rem;
    font-size: 3.3rem;
  }

  .seats-box {
    display: flex;
    flex-direction: column;
  }
  .sumoland-tokyo-signature .seats-box {
    flex: 1;
  }
  .sumoland-tokyo-express .seats-box.seats-box--price {
    height: 25rem; 
  }

  .seats-box-head {
    min-height: 7rem;
    font-size: 3.3rem;
  }

  #tokyo-signature-seats .seats-box--schedule .seats-box-head {
    background: url(../img/tokyo-signature/schedule_bg.jpg) center / cover no-repeat;
  }

  .seats-box-body {
    flex: 1;
    padding: 0 2.4rem;
  }

  .seats-box--price .seats-box-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .seats-box--price .seats-row {
    padding: 5rem 0;
  }

  .seats-row {
    padding: 2rem 0;
    font-size: 2.4rem;
  }

  .seats-row-label-main {
    font-size: 2.8rem;
  }

  .seats-row-label-sub {
    font-size: 1.6rem;
  }

  .seats-row-label--num {
    font-size: 2.4rem;
  }

  .seats-row-price s {
    font-size: 2.4rem;
  }

  .seats-row-price strong {
    font-size: 3.3rem;
  }

  .seats-row-price-unit {
    font-size: 2.8rem;
  }

  .seats-row-time {
    font-size: 2.4rem;
  }
  #tokyo-signature-seats .seats-row-label--num {
    font-size: 3.3rem;
  }
  #tokyo-signature-seats .seats-row-time {
    font-size: 3.3rem;
  }

  /* Tokyo Signature seats panels */
  #tokyo-signature-seats .seats-panel--price {
    display: flex;
    flex-direction: column;
  }

  #tokyo-signature-seats .seats-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    flex: 1;
  }

  #tokyo-signature-seats .seats-panel-stack .seats-box {
    flex: 0 0 auto;
  }

  #tokyo-signature-seats .seats-box--standard .seats-box-head {
    background: url("../img/tokyo-signature/standard_bg.jpg") center / cover no-repeat;
  }

  #tokyo-signature-seats .seats-box--front-box .seats-box-head {
    background: url("../img/tokyo-signature/front_box_bg.jpg") center / cover no-repeat;
  }

  #tokyo-signature-seats .seats-box--standard .seats-box-body,
  #tokyo-signature-seats .seats-box--front-box .seats-box-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #tokyo-signature-seats .seats-box--standard .seats-row {
    padding: 3.2rem 0;
  }

  #tokyo-signature-seats .seats-box--front-box .seats-row {
    padding: 2.4rem 0;
  }

  /* #tokyo-signature-seats .seats-row:has(.seats-row-label--num) {
    justify-content: space-between;
  } */

  #tokyo-signature-seats .seats-box--schedule .seats-box-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #tokyo-signature-seats .seats-box--schedule .seats-row {
    padding: 5rem 0;
    font-size: 3.3rem;
  }
  #tokyo-signature-seats .seats-row-label--num {
    width: 14rem;
  }


}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS GREEN BLOCK (Cafe / Souvenirs / Floor Map)

--------------------------------------------------------------------------------------------- */

.block-express-green {
  position: relative;
  z-index: 1;
  background-color: #528128;
}
@media only screen and ( max-width : 767px ) {
  .block-express-green {
    background-image: url("../img/express/bg_green02_sp.jpg"),url("../img/express/bg_green_sp.jpg");
    background-position: center bottom,center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

@media print, screen and ( min-width : 768px ) {
  .block-express-green {
    background-image: url("../img/express/bg_green.jpg");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: repeat-y;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS FLOOR MAP

--------------------------------------------------------------------------------------------- */

.sec-express-floormap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sec-express-floormap .sec-title {
  color: #D5C987;
}

.express-floormap-figure {
  margin: 0;
  line-height: 0;
}

.express-floormap-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media only screen and ( max-width : 767px ) {
  .sec-express-floormap {
    padding: 4rem 0 7.2rem;
  }
  .sec-express-floormap .sec-title {
    margin-bottom: 4rem;
  }
  
}

@media print, screen and ( min-width : 768px ) {
  .sec-express-floormap {
    padding: 15rem 0;
  }

  

  .express-floormap-figure {
    max-width: 110rem;
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS SOUVENIRS

--------------------------------------------------------------------------------------------- */

.sec-express-souvenirs {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}

.sec-express-souvenirs .sec-title {
  color: #D5C987;
}

.express-souvenirs-text {
  color: #fff;
  line-height: 1.8;
}

.express-souvenirs-slider-wrap,
.express-cafe-slider-wrap {
  width: 100%;
  overflow: hidden;
  padding-left: max(2rem, calc((100vw - var(--inner)) / 2 + 2rem));
  box-sizing: border-box;
}

.express-souvenirs-slider,
.express-cafe-slider {
  visibility: visible;
}

.express-souvenirs-card,
.express-cafe-card {
  margin: 0;
  background: #fff;
  line-height: 0;
}

.express-souvenirs-card img,
.express-cafe-card img {
  display: block;
  width: 62rem;
  height: 52rem;
  object-fit: cover;
}

@media only screen and ( max-width : 767px ) {
  .sec-express-souvenirs {
    padding: 4rem 0;
  }

  .express-souvenirs-head {
    margin-bottom: 6rem;
  }

  

  .express-souvenirs-text {
    font-size: 1.3rem;
    line-height: 2.5;
  }

  .express-souvenirs-text br {
    display: none;
  }

  .express-souvenirs-card img,
  .express-cafe-card img {
    width: 26rem;
    height: 20rem;
  }
  .sec-express-souvenirs .sec-title {
    margin-bottom: 4rem;
  }
  .express-souvenirs-slider-wrap {
    margin-top: 4rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec-express-souvenirs {
    padding: 15rem 0;
  }

  .express-souvenirs-head {
    margin-bottom: 4rem;
  }

  

  .sec-express-souvenirs .sec-title br {
    display: none;
  }

  .express-souvenirs-text {
    font-size: 2.1333333333rem;
    line-height: 4rem;
    max-width: 84%;
    margin: 0 auto 5rem;
  }

  .express-souvenirs-slider-wrap,
  .express-cafe-slider-wrap {
    padding-left: max(4rem, calc((100vw - var(--inner)) / 2 + 4rem));
  }
}

/* ---------------------------------------------------------------------------------------------

　   HOW TO ENJOY

--------------------------------------------------------------------------------------------- */

.sec-howto {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
#express-howto .sec-title {
  color: #0E4E0E;
}

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

.howto-item {
  display: flex;
  flex-direction: column;
}
#tokyo-signature-howto .howto-item {
  border: .1rem solid #fff;
}

.howto-media {
  position: relative;
  z-index: 1;
}

.howto-num {
  position: absolute;
  z-index: 2;
  top: -1.2rem;
  left: -1.2rem;
  width: 9.6rem;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.howto-figure {
  margin: 0;
  line-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  position: relative;
}
#tokyo-signature-howto .howto-figure:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1px;
  width: 100%;
}

.howto-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.howto-body {
  position: relative;
  z-index: 0;
  margin-top: -1px;
  padding: 2.4rem 2rem 2.8rem;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.howto-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.howto-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 400;
  line-height: 1.7;
}

/* Chanko CTA — Express only */
.howto-chanko {
  position: relative;
  background: #F5F1D7;
  box-sizing: border-box;
}

.howto-chanko::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid #cbb854;
  pointer-events: none;
  z-index: 1;
}

.howto-chanko-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.howto-chanko-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.howto-chanko-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-image: url("../img/express/howto_chanko_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  box-sizing: border-box;
}

.howto-chanko-icon {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
}

.howto-chanko-text {
  margin: 0;
  color: rgb(51,51,51);
  font-weight: 700;
  line-height: 1.75;
}

.howto-chanko-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 7.2rem;
  padding: 1.6rem 4.8rem;
  background: rgb(170,20,40);
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}

.howto-chanko-btn::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid #fff;
  pointer-events: none;
}

.howto-chanko-btn:hover {
  filter: none;
  color: #fff;
  background: rgb(140,0,20);
}

.howto-chanko-btn-label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.howto-chanko-btn-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1.8rem;
  width: 1.1rem;
  height: 2rem;
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-mask: url("../img/arrow.svg") center / contain no-repeat;
  mask: url("../img/arrow.svg") center / contain no-repeat;
}
/* Tokyo Signature page-specific */
#tokyo-signature-howto {
  color: #fff;
}
#tokyo-signature-howto .sec-title {
  color: #D5C987;
}

@media only screen and ( max-width : 767px ) {
  .howto-list {
    display: flex;
    flex-direction: column;
  }
  #express-howto .howto-list {
    gap: 3.2rem;
    margin-bottom: 3.2rem;
  }
  #tokyo-signature-howto .howto-list {
    gap: 1.5rem;
  }

  #express-howto .howto-num {
    top: -1rem;
    left: -1.1rem;
    width: 10.1rem;
  }
  #tokyo-signature-howto .howto-num {
    top: 0;
    left: 0;
    width: 7.6rem;
  }
  #tokyo-signature-howto .howto-figure:after {
    height: 3.3rem;
    background: url("../img/tokyo-signature/gra_sp.png") repeat-x center center / contain;
  }
  #tokyo-signature-howto .howto-body {
    background: #000;
  }

  .howto-heading {
    font-size: 1.8rem;
  }

  .howto-text {
    font-size: 1.3rem;
  }

  .howto-chanko {
    margin: 0;
    padding: 2.5rem 2.5rem 3.5rem;
  }

  .howto-chanko::after {
    border-width: 0.2rem;
  }

  .howto-chanko-figure {
    margin-bottom: 2rem;
  }

  .howto-chanko-figure img {
    aspect-ratio: 1200 / 800;
  }

  .howto-chanko-body {
    /* padding: 0.8rem 0.8rem 0.4rem; */
    background-size: 100% auto;
    background-position: center top;
  }

  .howto-chanko-icon {
    margin-bottom: .6rem;
  }

  .howto-chanko-text {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    letter-spacing: -0.03em;
    margin-left: -1rem;
    margin-right: -1rem;
    white-space: nowrap;
  }

  .howto-chanko-btn {
    width: 100%;
    max-width: 28rem;
    min-height: 6.4rem;
    padding: 1.4rem 4rem;
  }

  .howto-chanko-btn-label {
    font-size: 1.3rem;
  }

  .howto-chanko-btn-arrow {
    right: 1.6rem;
    width: 1rem;
    height: 1.8rem;
  }

  /* Express page-specific */
  #express-howto {
    background-image: url("../img/express/bg_round_sp.png"),url("../img/express/howto_bg_sp.png");
    background-position: center bottom, center top;
    background-color: #ACC25B;
    background-size: 100% auto;
    padding: 6rem 0 12rem;
  }

  #express-howto .sec-title {
    margin-bottom: 3rem;
  }

  #express-howto .howto-body {
    background-color: #F5F1D7;
    background-image: url("../img/express/howto_cloud.png");
    background-position: right 1.2rem bottom 0.5rem;
    background-size: 9.2rem auto;
  }

  #express-howto .howto-body::after {
    content: "";
    position: absolute;
    inset: 0.6rem;
    border: .2rem solid #cbb854;
    pointer-events: none;
    z-index: 0;
  }

  #express-howto .howto-heading,
  #express-howto .howto-text {
    color: #333;
  }
  /* Tokyo Signature page-specific */
  #tokyo-signature-howto {
    background-image: url("../img/tokyo-signature/gra02.png"),url("../img/express/bg_black_sp.jpg");
    color: #fff;
    background-repeat: repeat-x,repeat-y;
    background-position: center bottom,center top;
    background-size: 1px auto,100% auto;
    padding: 6rem 0 3rem;
  }
  #tokyo-signature-howto .sec-title {
    margin-bottom: 4rem;
  }
  #tokyo-signature-highlights .sec-title {
    margin-bottom: 4rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec-howto {
    padding: 15rem 0 4rem;
    background-position: center bottom;
  }
  #tokyo-signature-howto .sec-title {
    margin-bottom: 8rem;
  }
  #tokyo-signature-highlights .sec-title {
    margin-bottom: 8rem;
  }
  
  #express-howto .howto-figure img {
    aspect-ratio: 1400 / 1120;
  }

  .howto-list {
    display: grid;
    gap: 4.8rem 4rem;
    margin-bottom: 6.4rem;
  }

  #express-howto .howto-num {
    top: -1.6rem;
    left: -1.6rem;
    width: 23rem;
  }
  #tokyo-signature-howto .howto-num {
    top: 0;
    left: 0;
    width: 9.5rem;
  }
  #tokyo-signature-howto .howto-figure:after {
    height: 3.3rem;
    background: url("../img/tokyo-signature/howto_gra.png") repeat-x center center / contain;
  }

  .howto-body {
    padding: 3.5rem 5rem 4.5rem;
  }

  .howto-heading {
    font-size: 2.8rem;
    height: 2.6em;
    margin-bottom: 2rem;
  }

  .howto-text {
    font-size: 1.6rem;
  }
  #express-howto .howto-text {
    width: 68%;
  }

  .howto-chanko {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    margin: 0;
    padding: 3.2rem 4rem;
    max-width: 121.2rem;
    margin: 0 auto;
  }

  .howto-chanko-figure {
    flex: 0 0 50%;
    max-width: 54.5rem;
  }

  .howto-chanko-figure img {
    /* height: 100%;
    min-height: 40rem; */
  }

  .howto-chanko-body {
    flex: 1 1 auto;
    justify-content: center;
    /* padding: 2.4rem 2rem; */
    background-size: 80%;
    background-position: 50% 10%;
  }

  .howto-chanko-icon {
    width: 8rem;
    height: 8rem;
    margin-bottom: 2rem;
  }

  .howto-chanko-text {
    margin-bottom: 6.6rem;
    font-size: 3.3rem;
  }

  .howto-chanko-btn {
    min-width: 42rem;
    min-height: 9.2rem;
    padding: 1.8rem 5.6rem;
  }

  .howto-chanko-btn-label {
    font-size: 2rem;
  }

  .howto-chanko-btn-arrow {
    right: 2.4rem;
    width: 1.2rem;
    height: 2.2rem;
  }

  /* Express: 2 columns */
  #express-howto .howto-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* TOKYO SIGNATURE: 3 columns */
  #tokyo-signature-howto .howto-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Express page-specific */
  #express-howto {
    background-image: url("../img/express/howto_bg.jpg");
    background-color: #9daa37;
    color: #303d21;
  }

  #express-howto .sec-title {
    margin-bottom: 8rem;
  }

  #express-howto .howto-body {
    background-color: #F5F1D7;
    background-image: url("../img/express/howto_cloud.png");
    background-position: right 1.6rem bottom 1.6rem;
    background-size: 19.2rem auto;
  }

  #express-howto .howto-body::after {
    content: "";
    position: absolute;
    inset: 0.8rem;
    border: 1px solid #cbb854;
    pointer-events: none;
    z-index: 0;
  }

  #express-howto .howto-heading,
  #express-howto .howto-text {
    color: #303d21;
  }
  /* Tokyo Signature page-specific */
  #tokyo-signature-howto {
    background-image: url("../img/tokyo-signature/howto_bg.jpg");
  }
  #tokyo-signature-howto .howto-figure img {
    aspect-ratio: 1 / 1;
  }
}

/* ---------------------------------------------------------------------------------------------

　   THREE HIGHLIGHTS

--------------------------------------------------------------------------------------------- */

.sec-highlights {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: -1px;
}

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

.highlights-item {
  position: relative;
}

.highlights-media {
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.highlights-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.highlights-card-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--inner);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.highlights-card {
  position: relative;
  z-index: 1;
  overflow: visible;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 12rem auto;
  border-radius: 1.6rem;
  box-sizing: border-box;
}

.highlights-item--right .highlights-card {
  background-position: left bottom;
}

.highlights-icon {
  display: block;
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.highlights-heading {
  margin: 0 0 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.highlights-heading::after {
  content: "";
  display: block;
  width: 7rem;
  height: 0.2rem;
  margin: 1.2rem 0 0;
}

.highlights-text {
  margin: 0;
  line-height: 1.8;
}

.highlights-icon,
.highlights-heading,
.highlights-text {
  position: relative;
  z-index: 1;
}
#express-highlights .highlights-heading::after {
  background: #b9a12f;
}
#tokyo-signature-highlights .highlights-heading::after {
  background: #A61628;
}

#tokyo-signature-highlights .highlights-item--left .highlights-card,
#tokyo-signature-highlights .highlights-item--right .highlights-card {
  border-color: #951C1E;
  background-color: #fff;
  background-image: url("../img/tokyo-signature/koushi.png"),url("../img/tokyo-signature/koushi.png");
  background-position: right top,left top;
  background-size: 3rem;
  background-repeat: repeat-y;
}

#tokyo-signature-highlights .highlights-sensu {
  position: absolute;
  top: -2.4rem;
  right: -1.2rem;
  z-index: 3;
  width: 11rem;
  height: auto;
  pointer-events: none;
}
#express-highlights .sec-title {
  color:#A71628;
}
#tokyo-signature-highlights .sec-title {
  color: #A71628;
}

@media only screen and ( max-width : 767px ) {
  .sec-highlights {
    padding: 35vw 0 8rem;
    margin-top: -1px;
  }
  #express-highlights {
    padding: 4rem 0 8rem;
  }
  #express-highlights .sec-title {
    margin-bottom: 4rem;
  }

  

  #express-highlights .highlights-item + .highlights-item {
    margin-top: 4rem;
  }

  .highlights-media {
    width: 86vw;
    aspect-ratio: 1840 / 1400;
  }

  .highlights-item--left .highlights-media {
    margin-right: auto;
  }

  .highlights-item--right .highlights-media {
    margin-left: auto;
  }

  #express-highlights .highlights-card-wrap {
    /* margin-top: -3.2rem; */
  }
  #tokyo-signature-highlights .highlights-card-wrap {
    margin-top: 1rem;
  }
  #tokyo-signature-highlights .highlights-item {
    margin-bottom: 4rem;
  }
  #tokyo-signature-highlights .highlights-item:last-child {
    margin-bottom: 0;
  }

  .highlights-item--left .highlights-card-wrap {
    display: flex;
  }
  #tokyo-signature-highlights .highlights-item--left .highlights-card-wrap {
    justify-content: flex-end;
  }

  .highlights-item--right .highlights-card-wrap {
    display: flex;
    justify-content: flex-start;
  }

  .highlights-card {
    border-width: 0.3rem;
    border-style: solid;
  }
  #express-highlights .highlights-card {
    width: calc(100% - 1rem);
    padding: 3.2rem 2rem 2.8rem;
    background-size: 8rem auto;
  }
  #tokyo-signature-highlights .highlights-card {
    border-radius: 0;
    padding: 2rem 4rem;
    background-size: 9.6rem auto;
  }

  .highlights-heading {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .highlights-text {
    font-size: 1.4rem;
  }

  #express-highlights .highlights-item--left .highlights-card {
    border-radius: 0 2rem 2rem 0;
  }

  #express-highlights .highlights-item--right .highlights-card {
    padding-left: 7rem;
    border-radius: 2rem 0 0 2rem;
  }

  /* Express page-specific */
  #express-highlights {
    /* background: url("../img/express/bg_round_sp.png") center top / 100% auto no-repeat, url("../img/express/bg02_sp.jpg") center top / 100% auto repeat-y; */
    background: url("../img/express/bg02_sp.jpg") center top / 100% auto repeat-y;
  }

  #express-highlights .highlights-card {
    background-color: #fff;
    background-image: url("../img/express/wave.png");
    border-color: #CBB854;
  }

  #express-highlights .highlights-item--left .highlights-card {
    box-shadow: 1rem 0 0 0 #9FB552;
  }

  #express-highlights .highlights-item--right .highlights-card {
    background-image: url("../img/express/wave02.png");
    box-shadow: -1rem 0 0 0 #9FB552;
  }
  #tokyo-signature-highlights .highlights-item--left .highlights-card {
    border-width: 1rem;
    background-size: 1.5rem;
  }
  #tokyo-signature-highlights .highlights-item--right .highlights-card {
    border-width: 1rem;
    background-size: 1.5rem;
  }

  #tokyo-signature-highlights .highlights-sensu {
    top: -1.6rem;
    right: 2rem;
    width: 9.6rem;
  }
  /* Tokyo Signature page-specific */
  #tokyo-signature-highlights {
    background: url("../img/tokyo-signature/bg_fude02_sp.png") center bottom / 100% auto no-repeat,url("../img/tokyo-signature/bg_fude_sp.png") center top / 100% auto no-repeat, url("../img/tokyo-signature/highlights_bg_sp.jpg") center top / 100% auto repeat-y;
  }

}

@media print, screen and ( min-width : 768px ) {
  #express-highlights.sec-highlights {
    padding: 18vw 0 15rem;
  }
  #tokyo-signature-highlights.sec-highlights {
    padding: 20vw 0 30vw;
  }
  #express-highlights .sec-title {
    margin-bottom: 8rem;
  }
  

  #express-highlights .highlights-item + .highlights-item {
    margin-top: 10rem;
  }

  .highlights-item {
    display: flex;
  }
  #express-highlights .highlights-item {
    align-items: stretch;
  }
  #tokyo-signature-highlights .highlights-item {
    align-items: flex-end;
  }

  .highlights-item--left {
    flex-direction: row;
  }

  .highlights-item--right {
    flex-direction: row-reverse;
  }

  .highlights-media {
    width: 50vw;
    max-width: none;
    min-height: 44rem;
  }
  #express-highlights .highlights-media {
    flex: 0 0 48vw;
  }
  #tokyo-signature-highlights .highlights-media {
    flex: 0 0 54vw;
  }

  .highlights-card-wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .highlights-item--left .highlights-card-wrap {
    justify-content: flex-end;
    padding-right: max(4rem, calc((100vw - var(--inner)) / 2 + 4rem));
    padding-left: 0;
  }

  .highlights-item--right .highlights-card-wrap {
    justify-content: flex-start;
    padding-left: max(4rem, calc((100vw - var(--inner)) / 2 + 4rem));
    padding-right: 0;
  }

  .highlights-card {
    width: 100%;
    max-width: 76rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    background-size: 18rem auto;
    border-style: solid;
  }

  #express-highlights .highlights-card {
    padding: 6.4rem 5.6rem 5.6rem;
  }
  #express-highlights .highlights-item--left .highlights-card {
    border-right: 0;
    border-radius: 0 3rem 3rem 0;
    background-position: right bottom;
  }

  #express-highlights .highlights-item--right .highlights-card {
    border-left: 0;
    border-radius: 3rem 0 0 3rem;
    background-position: right bottom;
  }

  #tokyo-signature-highlights .highlights-card {
    width: calc(100% + 12rem);
    max-width: 88rem;
    padding: 9rem 6rem;
    margin-bottom: 9rem;
    /* min-height: 44rem; */
  }
  #tokyo-signature-highlights .highlights-item--left .highlights-card {
    border-width: 1rem;
  }
  #tokyo-signature-highlights .highlights-item--right .highlights-card {
    border-width: 1rem;
  }
  #tokyo-signature-highlights .highlights-sensu {
    top: -3.2rem;
    right: 4rem;
    width: 23.1rem;
  }
  #tokyo-signature-highlights .highlights-item--left .highlights-card-wrap {
    margin-left: -15rem;
  }
  #tokyo-signature-highlights .highlights-item--right .highlights-card-wrap {
    margin-right: -15rem;
  }

  .highlights-icon {
    width: 13rem;
    height: 13rem;
    margin-bottom: 2.4rem;
  }

  .highlights-heading {
    margin-bottom: 3rem;
    font-size: 5rem;
  }

  .highlights-heading::after {
    width: 6.4rem;
    margin-top: 1.6rem;
  }

  .highlights-text {
    font-size: 1.6rem;
    line-height: 2.2;
  }
  #express-highlights .highlights-text {
    /* width: 70%; */
  }
  #tokyo-signature-highlights .highlights-text {
  }

  /* Express page-specific */
  #express-highlights {
    background: url("../img/express/bg_round.png") center top / 100% auto no-repeat, url("../img/express/bg02.jpg") center top / 100% auto repeat-y;
  }

  #express-highlights .highlights-card {
    background-color: #fff;
    background-image: url("../img/express/wave.png");
    border-color: #CBB854;
    border-width: 0.3rem;
  }

  #express-highlights .highlights-item--left .highlights-card {
    box-shadow: 2.6rem 0 0 0 #9FB552;
  }

  #express-highlights .highlights-item--right .highlights-card {
    box-shadow: -2.6rem 0 0 0 #9FB552;
  }
  /* Tokyo Signature page-specific */
  #tokyo-signature-highlights {
    background: url("../img/tokyo-signature/bg_fude02.png") center bottom / 100% auto no-repeat,url("../img/tokyo-signature/bg_fude.png") center top / 100% auto no-repeat,url("../img/tokyo-signature/highlights_gold_bg.png") center top / 100% auto no-repeat, url("../img/tokyo-signature/highlights_bg.jpg") center top / 100% auto repeat-y;
  }
  .express-cafe-catch-inner {
    width: 84%;
    margin: 0 auto;
  }

}

/* ---------------------------------------------------------------------------------------------

　   VEGAN / GLUTEN-FREE OPTIONS (TOKYO SIGNATURE)

--------------------------------------------------------------------------------------------- */

.highlights-vegan {
  list-style: none;
  margin: 4.8rem auto;
  padding: 0 2rem;
  max-width: var(--inner);
  box-sizing: border-box;
}

.vegan-options-btn {
  --vegan-green: #1F4035;
  --vegan-gold: #B59322;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem;
  border: none;
  background-color: var(--vegan-green);
  background-repeat: no-repeat;
  color: #fff;
  text-align: left;
}

.vegan-options-btn-frame {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  min-height: 7.2rem;
  padding: 1.2rem 1.6rem;
  /* border: 1px solid var(--vegan-gold); */
  box-shadow: inset 0 0 0 1px var(--vegan-gold);
  box-sizing: border-box;
}

.vegan-options-btn-icon {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  z-index: 2;
  display: block;
  width: 9.6rem;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.vegan-options-btn-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.vegan-options-btn-text {
  flex: 1 1 auto;
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

.vegan-options-btn-br {
  display: none;
}

.vegan-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.vegan-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vegan-modal[hidden] {
  display: none;
}

.vegan-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.vegan-modal.is-open .vegan-modal-overlay {
  opacity: 1;
}

.vegan-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--inner);
  max-height: calc(100vh - 4.8rem);
  overflow: auto;
  padding: 1.2rem;
  background-color: #f3efe6;
  background-image: url("../img/tokyo-signature/modal_bg.jpg");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  border-radius: 1.2rem;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(2.4rem) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vegan-modal.is-open .vegan-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.vegan-modal-close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.vegan-modal-close img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vegan-modal-inner {
  padding: 4rem 2rem 3.2rem;
  border: 1px solid #fff;
  box-sizing: border-box;
}

.vegan-modal-badge {
  display: block;
  width: fit-content;
  margin: 0 auto .5rem;
  padding: 0.4rem 1.2rem;
  background: var(--red);
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.vegan-modal-title {
  margin: 0 0 2.4rem;
  color: #1c4a38;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.vegan-modal-vegan {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 4rem;
}

.vegan-modal-list {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Libre Baskerville", serif;
  font-size: 1.4rem;
  line-height: 1.9;
}

.vegan-modal-figure {
  margin: 0;
  line-height: 0;
}

.vegan-modal-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

body.is-vegan-modal-open {
  overflow: hidden;
}

@media only screen and ( max-width : 767px ) {
  .highlights-vegan {
    margin: 5rem auto;
  }

  .vegan-options-btn {
    background-size: 9rem auto;
    padding: .6rem;
    background-image: url("../img/tokyo-signature/btn_cloud_bg_sp.png");
    background-position: 98.5% 80%;
  }

  .vegan-options-btn-frame {
    gap: 1.2rem;
    min-height: 6rem;
    padding: 1.2rem 1.2rem 1.2rem 1.6rem;
  }

  .vegan-options-btn-icon {
    left: 1.2rem;
    width: 6.8rem;
  }

  .vegan-options-btn-text {
    font-size: 1.4rem;
    font-family: Noto Sans JP, sans-serif;
    font-weight: 600;
  }

  .vegan-options-btn-br {
    display: inline;
  }
  .vegan-modal-close {
    width: 2.4rem;
    height: 2.4rem;
  }
  .vegan-modal-title {
    font-size: 2.4rem;
  }

  .vegan-modal {
    /* ブラウザUI表示時も上下余白を確保 */
    padding:
      max(3.2rem, calc(env(safe-area-inset-top, 0px) + 2.4rem))
      2rem
      max(3.2rem, calc(env(safe-area-inset-bottom, 0px) + 2.4rem));
    align-items: safe center;
  }

  .vegan-modal-dialog {
    /* 100vh だとツールバー込みで余白が潰れるため svh 基準 */
    max-height: calc(100svh - 6.4rem);
    max-height: calc(100dvh - 6.4rem);
  }
}

@media print, screen and ( min-width : 768px ) {
  .highlights-vegan {
    margin: 10rem auto;
    padding: 0 4rem;
  }

  .vegan-options-btn {
    background-size: 21.8rem auto;
    background-image: url("../img/tokyo-signature/btn_cloud_bg.png");
    background-position: right bottom;
  }

  .vegan-options-btn-frame {
    gap: 3.2rem;
    min-height: 12rem;
    padding: 2rem 4rem;
  }

  .vegan-options-btn-icon {
    left: 3.2rem;
    width: 17.8rem;
  }

  .vegan-options-btn-text {
    font-size: 3.3rem;
  }

  .vegan-modal {
    padding: 4rem;
  }

  .vegan-modal-dialog {
    max-height: calc(100vh - 8rem);
    padding: 1.6rem;
    border-radius: 1.6rem;
  }

  .vegan-modal-close {
    top: 3rem;
    right: 3rem;
  }

  .vegan-modal-inner {
    padding: 5.6rem 5.6rem 4.8rem;
  }

  .vegan-modal-badge {
    margin-bottom: 1rem;
    padding: 0.5rem 1.6rem;
    font-size: 2.4rem;
    border: .3rem solid #000;
  }

  .vegan-modal-title {
    margin-bottom: 3.2rem;
    font-size: 4.3rem;
  }

  .vegan-modal-vegan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 55rem);
    align-items: center;
    column-gap: 3.2rem;
    margin-bottom: 5.6rem;
  }

  .vegan-modal-list {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS CAFE & SHOP

--------------------------------------------------------------------------------------------- */

.sec-express-cafe {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
}

.sec-express-cafe .sec-title {
  color: #D5C987;
}

.express-cafe-head {
}

.express-cafe-catch {
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.express-cafe-text {
  margin: 0;
  color: #fff;
  line-height: 1.8;
}

.express-cafe-text + .express-cafe-text {
  margin-top: 1.6rem;
}

.express-cafe-card {
  position: relative;
  overflow: hidden;
}

.express-cafe-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: rgba(0, 0, 0, 0.66);
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}

.express-cafe-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 7.4rem;
  padding: 1.2rem 6.4rem 1.2rem 2.4rem;
  background: #fff;
  color: #508325;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
}

.express-cafe-menu-btn::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid #508325;
  pointer-events: none;
  transition: border 0.3s ease;
}

.express-cafe-menu-btn:hover {
  opacity: 1;
  filter: none;
  color: #fff;
  background: #BFBFBF;
}
.express-cafe-menu-btn:hover::before {
  border: 1px solid #fff;
}

.express-cafe-menu-label {
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  line-height: 1.2;
}

.express-cafe-menu-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  min-width: 4.2rem;
  min-height: 2.2rem;
  padding: 0.2rem 0.6rem;
  background: #508325;
  color: #fff;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

@media only screen and ( max-width : 767px ) {
  .sec-express-cafe {
    padding: 2rem 0 4rem;
  }

  

  .express-cafe-head {
    margin-bottom: 4rem;
  }

  .express-cafe-catch {
    font-size: 2rem;
    margin: 4rem 0 2rem;
  }

  .express-cafe-text {
    font-size: 1.4rem;
    line-height: 2;
  }

  .express-cafe-soon {
    font-size: 2rem;
  }

  .express-cafe-menu-btn {
    width: 28rem;
    margin: 0 auto;
    display: flex;
  }

  .express-cafe-menu-label {
    font-size: 1.6rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec-express-cafe {
    padding: 0 0 15rem;
  }

  

  .express-cafe-head {
    margin: 0 auto 5rem;
  }

  .express-cafe-catch {
    font-size: 4.2rem;
    margin: 5rem 0 3.4rem;
  }

  .express-cafe-text {
    font-size: 2.1333333333rem;
    line-height: 4rem;
  }

  .express-cafe-soon {
    font-size: 4rem;
  }

  .express-cafe-menu-btn {
    min-width: 36rem;
    min-height: 9.2rem;
    padding-right: 8rem;
  }

  .express-cafe-menu-label {
    font-size: 2rem;
  }

  .express-cafe-menu-pdf {
    right: 2rem;
    min-width: 5.2rem;
    min-height: 2.6rem;
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS LOCATION

--------------------------------------------------------------------------------------------- */

.sec-express-location {
  position: relative;
  z-index: 1;
}

.sec-express-location .sec-title {
  color: var(--gold-light);
}

.express-location-card {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

.express-location-figure {
  margin: 0;
}

.express-location-figure-frame {
  position: relative;
  overflow: hidden;
}

.express-location-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1300 / 960;
  object-fit: cover;
}

.express-location-figure figcaption {
  margin-top: 0.8rem;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}

.express-location-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.express-location-name {
  margin: 0;
}
.express-location-name img {
  display: block;
}

.express-location-logo {
  flex-shrink: 0;
  opacity: 0.22;
}

.express-location-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.express-location-address {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  line-height: 1.7;
}

.express-location-meta {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  margin: 0;
}

.express-location-meta-row {
  display: contents;
}

.express-location-meta dt {
  margin: 0;
  padding: 1.2rem 2rem 1.2rem 0;
  border-right: 1px solid #707070;
  color: #A71628;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  line-height: 1.5;
}

.express-location-meta dd {
  margin: 0;
  padding: 1.2rem 0 1.2rem 2rem;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  line-height: 1.7;
}

.express-location-meta-row:first-child dt,
.express-location-meta-row:first-child dd {
  padding-top: 0;
}

.express-location-meta-row:last-child dt,
.express-location-meta-row:last-child dd {
  padding-bottom: 0;
}

.express-location-meta dd ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.express-location-meta dd li {
  position: relative;
  margin: 0 0 0.4rem;
  padding-left: 1.2rem;
  list-style: none;
}

.express-location-meta dd li::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.express-location-meta dd li:last-child {
  margin-bottom: 0;
}

.express-location-map {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ddd;
}

.express-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and ( max-width : 767px ) {
  .sec-express-location {
    padding: 6rem 0 0;
    background: url("../img/bg03_sp.jpg") center top / 100% auto repeat-y;
  }

  

  .express-location-card {
    padding: 4rem 2rem;
    margin-bottom: 8rem;
  }

  .express-location-media {
    order: -1;
    margin-bottom: 2rem;
  }

  .express-location-heading {
    gap: .6rem;
  }

  .express-location-name {
    font-size: 2rem;
  }
  .express-location-name img {
    height: 4.8rem;
    width: auto;
  }
  .sumoland-tokyo-signature .express-location-name {
    letter-spacing: -.03em;
  }

  .express-location-logo {
    width: 7.2rem;
    margin-right: -1rem;
  }

  .express-location-body {
    padding-right: 0;
  }

  .express-location-address {
    margin-bottom: 4rem;
    font-size: 1.3rem;
    /* margin-top: -1.5rem; */
    margin-top: 3rem;
    width: calc(100% - 7.2rem);
  }

  .express-location-meta dt {
    padding-right: .6rem;
    border-right: none;
    width: 9rem;
    font-size: 1.3rem;
  }

  .express-location-meta dd {
    font-size: 1.3rem;
    padding-left: 0;
    line-height: 2;
  }

  .express-location-meta dd li {
    line-height: 2;
  }

  .express-location-map {
    height: 24.5rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec-express-location {
    padding: 12rem 0 0;
    background: url("../img/bg03.jpg") center top / 100% auto repeat-y;
  }

  

  .express-location-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-areas:
      "heading heading"
      "media body";
    column-gap: 4rem;
    row-gap: 3.2rem;
    padding: 8rem 4rem;
    margin-bottom: 15rem;
  }

  .express-location-heading {
    grid-area: heading;
    display: block;
    text-align: center;
    margin-bottom: 0;
    gap: 1.6rem;
  }

  .express-location-name {
    font-size: 4.3rem;
  }
  .express-location-name img {
    width: auto;
    height: 3.4rem;
    margin: 0 auto;
  }

  .express-location-logo {
    position: absolute;
    top: 7rem;
    right: 4rem;
    width: 17rem;
    z-index: 1;
    pointer-events: none;
  }

  .express-location-media {
    grid-area: media;
  }

  .express-location-body {
    grid-area: body;
    display: flex;
    flex-direction: column;
/*    padding-right: 20rem;*/
  }

  .express-location-figure figcaption {
    margin-top: 1rem;
    font-size: 1.2rem;
  }

  .express-location-address {
    margin-top: 0.8rem;
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }

  .express-location-meta dt {
    padding: 1.6rem 2.4rem 1.6rem 0;
    font-size: 1.4rem;
  }

  .express-location-meta dd {
    padding: 1.6rem 0 1.6rem 2.4rem;
    font-size: 1.4rem;
  }

  .express-location-meta-row:first-child dt,
  .express-location-meta-row:first-child dd {
    padding-top: 0;
  }

  .express-location-meta-row:last-child dt,
  .express-location-meta-row:last-child dd {
    padding-bottom: 0;
  }

  .express-location-map {
    height: 70rem;
  }
  .express-location-meta dd li {
    letter-spacing: -0.06em;
  }
}

/* ---------------------------------------------------------------------------------------------

　   EXPRESS CTA

--------------------------------------------------------------------------------------------- */

.sec-express-cta {
  position: relative;
  z-index: 1;
  background: url("../img/bg01.jpg") center top / 100% auto repeat-y;
}

.express-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.express-cta-title {
  margin: 0;
  color: #8B0011;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.sec-express-cta .btn-ticket {
  margin-bottom: 0;
}

.sumoland-tokyo-signature .sec-express-cta .btn-ticket {
  background: var(--red);
}

.sumoland-tokyo-signature .sec-express-cta .btn-ticket:hover {
  opacity: 0.9;
}

.sumoland-tokyo-express .sec-express-cta .btn-ticket {
  background: var(--green);
}

.sumoland-tokyo-express .sec-express-cta .btn-ticket:hover {
  background: rgb(140, 168, 20);
}

@media only screen and ( max-width : 767px ) {
  .sec-express-cta {
    padding: 3rem 0 10rem;
  }

  .express-cta-title {
    margin-bottom: 2.8rem;
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .sec-express-cta .btn-ticket {
    font-size: 1.8rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .sec-express-cta {
    padding: 12rem 0 16rem;
  }

  .express-cta-title {
    margin-bottom: 5rem;
    font-size: 4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   SINGLE POST

--------------------------------------------------------------------------------------------- */

.single-fv {
  position: relative;
  z-index: 1;
  height: 10rem;
  background: #111;
}

.single-article-wrap {
  position: relative;
  z-index: 1;
  padding: 4rem 0 8rem;
  background: #fff;
}

.single-article-top {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.single-article-title {
  margin: 0 0 3.2rem;
  color: #111;
  font-family: "Libre Baskerville", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.35;
}

.single-article-media {
  margin: 0 0 3.2rem;
  line-height: 0;
}

.single-article-media img {
  display: block;
  width: 100%;
  height: auto;
}

.single-article-content {
  color: #333;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.9;
}

.single-article-content > *:first-child {
  margin-top: 0;
}

.single-article-content > *:last-child {
  margin-bottom: 0;
}

.single-article-content img {
  max-width: 100%;
  height: auto;
}

.single-article-content a {
  color: var(--red);
}

.single-article-foot {
  margin-top: 4.8rem;
  text-align: center;
}

@media print, screen and ( min-width : 768px ) {
  .single-fv {
    height: 12rem;
  }

  .single-article-wrap {
    padding: 6rem 0 12rem;
  }

  .single-article {
    max-width: 84rem;
    margin: 0 auto;
  }

  .single-article-title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }

  .single-article-content {
    font-size: 1.6rem;
  }

  .single-article-foot {
    margin-top: 6.4rem;
  }
}

