@charset "utf-8";

:root {
  --blue: #2e7fc7;
  --orange: #ec6435;
  --venue-tokyo: #002453;
  --venue-cotton: #bb201c;
  --venue-place: #0054a8;
  --black: #000;
  --white: #f7f7f4;
  --light-gray: #e8e8e8;
  --font-en: "titillium-web", "Arial Narrow", Arial, sans-serif;
  --font-ja: "zen-kaku-gothic-new", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --page-gutter: clamp(22px, 3vw, 72px);
  --content-wide: min(calc(100% - (var(--page-gutter) + var(--page-gutter))), 1600px);
  --content: var(--content-wide);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: #111;
  background: var(--black);
  font-family: var(--font-ja);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  overflow: hidden;
  background: var(--blue);
}

.hero_visual {
  display: block;
}

.hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about {
  padding: clamp(70px, 5.2vw, 100px) 0 clamp(76px, 5.8vw, 112px);
  color: var(--white);
  background: var(--black);
}

.about_inner {
  width: min(calc(100% - (var(--page-gutter) + var(--page-gutter))), 1240px);
  margin: 0 auto;
}

.about h2 {
  margin: 0 0 clamp(34px, 2.8vw, 52px);
  color: var(--white);
  font-size: clamp(30px, 3.1vw, 60px);
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.about p {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 600;
  line-height: 1.9;
}

.section_heading {
  display: grid;
  place-items: center;
  min-height: clamp(132px, 9.5vw, 184px);
  padding: 24px;
  text-align: center;
  color: var(--white);
  background: var(--blue);
}

.section_heading h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 24px);
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(56px, 5.4vw, 104px);
  font-weight: 900;
  line-height: 0.88;
}

.deco {
  flex: 0 0 auto;
  width: clamp(19px, 1.65vw, 32px);
  aspect-ratio: 1;
  background: url("../images/head_deco.png") center / contain no-repeat;
}

.lineup {
  color: var(--black);
  background: var(--white);
}

.lineup_inner {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(72px, 5.2vw, 100px) 0 clamp(88px, 6.8vw, 130px);
}

.lineup_lead {
  margin: 0;
  font-size: clamp(20px, 1.75vw, 34px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.event_list {
  display: grid;
  gap: clamp(68px, 4.7vw, 90px);
  margin-top: clamp(72px, 5.2vw, 100px);
}

.event {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  gap: clamp(44px, 4vw, 76px);
}

.event_visual {
  margin: 0;
}

.event_visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event:nth-child(2) .event_visual img {
  aspect-ratio: 1600 / 916;
}

.event_body {
  min-width: 0;
  max-width: 640px;
}

.event_venue {
  display: inline-flex;
  align-items: center;
  margin: 0 0 clamp(21px, 1.6vw, 30px);
  padding: 0.55em 1.2em 0.6em;
  font-family: var(--font-en);
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1;
}

.event_venue_tokyo {
  color: var(--white);
  background: var(--venue-tokyo);
}

.event_venue_cotton {
  color: var(--white);
  background: var(--venue-cotton);
}

.event_venue_place {
  color: var(--white);
  background: var(--venue-place);
}

.event h3 {
  margin: 0;
  max-width: 18em;
  font-size: clamp(22px, 1.85vw, 36px);
  font-weight: 700;
  line-height: 1.36;
  text-wrap: balance;
}

.event_schedule {
  display: grid;
  gap: 0.55em;
  margin: clamp(22px, 2vw, 38px) 0 0;
  font-family: var(--font-en), var(--font-ja);
  font-size: clamp(17px, 1.35vw, 26px);
  font-weight: 700;
  line-height: 1.45;
}

.event_schedule p {
  margin: 0;
}

.event_schedule_date,
.event_schedule_time {
  display: block;
}

.event_schedule_time {
  margin-top: 0.12em;
}

.event_summary {
  max-width: 40em;
  margin: clamp(12px, 1.8vw, 24px) 0 0;
  padding: clamp(12px, 1.8vw, 24px) 0 0;
  border-top: 1px solid #888888;
  font-size: clamp(14px, 1.04vw, 20px);
  line-height: 1.68;
}

.detail_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 50px;
  margin-top: clamp(30px, 2.8vw, 52px);
  padding: 0 24px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.detail_button:hover,
.detail_button:focus-visible {
  color: var(--orange);
  background: transparent;
}

.dark_section {
  color: var(--white);
  background: var(--black);
}

.benefits_inner {
  width: 100%;
  margin: 0 auto;
  padding: clamp(68px, 4vw, 76px) 0 clamp(82px, 4.8vw, 92px);
}

.benefits_top {
  width: var(--content-wide);
  margin: 0 auto;
}

.benefits_lead,
.reserve_lead {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 33px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.benefit_list {
  margin-top: clamp(44px, 3vw, 58px);
}

.benefit_carousel {
  width: var(--content);
  margin: 0 auto;
}

.benefit_grid {
  --benefit-gap: clamp(18px, 1.45vw, 28px);
  display: flex;
  gap: var(--benefit-gap);
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.benefit_grid::-webkit-scrollbar {
  display: none;
}

.benefit_grid:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 8px;
}

.benefit_grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.benefit_card {
  flex: 0 0 calc((100% - (var(--benefit-gap) * 2)) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.benefit_card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.benefit_card h3 {
  margin: clamp(24px, 2vw, 38px) 0 0;
  font-size: clamp(18px, 1.48vw, 28px);
  font-weight: 700;
  line-height: 1.5;
}

.benefit_card p {
  margin: clamp(14px, 1.2vw, 22px) 0 0;
  font-size: clamp(13px, 0.98vw, 18px);
  font-weight: 500;
  line-height: 1.75;
}

.benefit_shop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: clamp(18px, 1.5vw, 28px);
  line-height: 1;
}

.benefit_shop_label {
  margin-right: 2px;
  font-size: clamp(12px, 0.85vw, 15px);
  font-weight: 600;
}

.benefit_shop_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(30px, 2.2vw, 38px);
  padding: 0.52em 1.15em 0.56em;
  color: var(--white);
  font-family: var(--font-en);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 700;
  line-height: 1;
}

.benefit_shop_tag_tokyo {
  background: var(--venue-tokyo);
}

.benefit_shop_tag_cotton {
  background: var(--venue-cotton);
}

.benefit_shop_tag_place {
  background: var(--venue-place);
}

.benefit_controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(28px, 2.2vw, 42px);
}

.benefit_arrow,
.benefit_dot {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.benefit_arrow {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.benefit_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.benefit_arrow_prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.benefit_arrow_next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.benefit_arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.benefit_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 20px;
}

.benefit_dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.benefit_dot.is-current {
  background: var(--white);
  transform: scale(1.15);
}

.benefit_arrow:focus-visible,
.benefit_dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.reserve_inner {
  width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(68px, 4vw, 76px) 0 clamp(72px, 4.2vw, 82px);
}

.shop_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 2.8vw, 48px);
  margin-top: clamp(66px, 4.2vw, 82px);
}

.shop_card {
  text-align: center;
}

.shop_card_visual {
  position: relative;
  padding-top: 28px;
}

.shop_card_photo {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.shop_card_logo {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  object-fit: contain;
}

.shop_card_logo_bn {
  width: clamp(118px, 10vw, 190px);
}

.shop_card_logo_cc {
  width: clamp(106px, 8.8vw, 168px);
}

.shop_card_logo_bnp {
  width: clamp(88px, 7vw, 132px);
}

.shop_card h3 {
  margin: clamp(24px, 2vw, 38px) 0 0;
  font-family: var(--font-en), var(--font-ja);
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 400;
  line-height: 1.45;
}

.shop_card_tel {
  display: block;
  width: fit-content;
  margin: 8px auto 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-en);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1.2;
}

.shop_card_access {
  display: inline-block;
  margin-top: clamp(24px, 1.6vw, 30px);
  font-family: var(--font-en);
  font-size: clamp(14px, 0.95vw, 18px);
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.shop_card_access:hover,
.shop_card_access:focus-visible {
  opacity: 0.65;
}

.reserve_notes {
  width: min(100%, 1120px);
  margin: clamp(58px, 3.5vw, 68px) auto 0;
  text-align: center;
}

.reserve_notes p {
  margin: 0 0 14px;
  font-size: clamp(11px, 0.77vw, 14px);
  font-weight: 500;
  line-height: 1.75;
}

.footer {
  padding: clamp(42px, 4vw, 76px) 24px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.footer p {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(12px, 0.9vw, 17px);
  font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
  .js-enabled .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  :root {
    --content-wide: min(92vw, 820px);
    --content: var(--content-wide);
  }

  .about_inner {
    width: min(90vw, 780px);
  }

  .event {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .event_body {
    width: min(100%, 760px);
    max-width: none;
  }

  .shop_grid {
    grid-template-columns: 1fr;
  }

  .benefit_carousel {
    width: min(var(--content-wide), 760px);
    margin: 0 auto;
  }

  .benefit_card {
    flex-basis: calc((100% - var(--benefit-gap)) / 2);
  }

  .shop_grid {
    gap: 86px;
  }

  .shop_card {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .benefits_top {
    width: var(--content-wide);
  }

  .shop_card_logo_bn {
    width: 150px;
  }

  .shop_card_logo_cc {
    width: 136px;
  }

  .shop_card_logo_bnp {
    width: 110px;
  }
}

@media (max-width: 767px) {
  .hero img {
    aspect-ratio: 750 / 936;
  }
}

@media (max-width: 600px) {
  .hero img {
    min-height: auto;
  }

  .about {
    padding: 62px 0 72px;
  }

  .about h2 {
    margin-bottom: 30px;
    font-size: 27px;
  }

  .about p {
    font-size: 13px;
    line-height: 1.9;
    text-align: justify;
  }

  .section_heading {
    min-height: 112px;
    padding: 18px 12px;
  }

  .section_heading h2 {
    gap: 8px;
    font-size: clamp(45px, 14vw, 68px);
  }

  .deco {
    width: 16px;
  }

  .lineup_inner {
    padding: 60px 0 88px;
  }

  .lineup_lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .event_list {
    gap: 74px;
    margin-top: 60px;
  }

  .event {
    gap: 28px;
  }

  .event_venue {
    min-height: 38px;
    margin-bottom: 18px;
    font-size: 13px;
  }

  .event h3 {
    font-size: 21px;
    line-height: 1.45;
  }

  .event_schedule {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.48;
  }

  .event_summary {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.72;
  }

  .detail_button {
    min-height: 48px;
    margin-top: 26px;
    border-radius: 7px;
    font-size: 15px;
  }

  .benefits_inner,
  .reserve_inner {
    padding-top: 62px;
    padding-bottom: 88px;
  }

  .benefits_lead,
  .reserve_lead {
    font-size: 17px;
  }

  .benefits_top {
    display: block;
  }

  .benefit_list {
    margin-top: 34px;
  }

  .benefit_grid {
    --benefit-gap: 14px;
  }

  .benefit_card {
    flex-basis: 90%;
  }

  .benefit_card h3 {
    margin-top: 20px;
    font-size: 17px;
  }

  .benefit_card p {
    margin-top: 12px;
    font-size: 13px;
  }

  .benefit_shop {
    gap: 6px;
    margin-top: 16px;
    line-height: 1;
  }

  .benefit_shop_label,
  .benefit_shop_tag {
    font-size: 11px;
  }

  .benefit_shop_tag {
    min-height: 28px;
    padding: 0.52em 0.9em 0.56em;
  }

  .shop_grid {
    gap: 72px;
    margin-top: 62px;
  }

  .shop_card_visual {
    padding-top: 24px;
  }

  .shop_card h3 {
    margin-top: 20px;
    font-size: 13px;
  }

  .shop_card_tel {
    font-size: 19px;
  }

  .shop_card_access {
    margin-top: 24px;
    font-size: 13px;
  }

  .reserve_notes {
    width: 100%;
    margin-top: 66px;
  }

  .reserve_notes p {
    font-size: 10px;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }

}
