@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/***********************
        COMMON
*************************/

/* *{
    border: 2px solid red;
} */

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  background: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --font-jp: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", YuGothic, "Meiryo", sans-serif;
  --font-latin: "helvetica-neue-lt-pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: var(--font-latin), var(--font-jp);
  --font-sans: var(--font-body);
  --font-heading: var(--font-body);
  --font-display: "futura-pt", Futura, var(--font-body);
  --type-scale: 1.2;
  --text-2xs: 0.875rem;
  --text-xs: 1rem;
  --text-sm: 1.2rem;
  --text-md: 1.44rem;
  --text-lg: 1.728rem;
  --text-xl: 2.074rem;
  --text-2xl: 2.488rem;
  --text-3xl: 2.986rem;
  --text-4xl: 3.583rem;
  --text-5xl: 4.3rem;
  --text-6xl: 5.16rem;
  --text-7xl: 6.192rem;
  --text-8xl: 7.43rem;
  --content-max: 1680px;
  --page-gutter: clamp(24px, 6.25vw, 120px);
  --section-ptb: clamp(64px, 8vw, 120px);
  --about-overlap: clamp(72px, 12vw, 180px);
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
}

/* タブレット */
@media (max-width: 1199px) {
  :root {
    --section-ptb: clamp(48px, 7vw, 96px);
  }
}

/* スマホ */
@media (max-width: 767px) {
  :root {
    --section-ptb: clamp(32px, 8vw, 72px);
  }
}

.flex {
  display: flex;
}

.CB {
  clear: both;
}

:focus-visible {
  outline: 2px solid #836110;
  outline-offset: 2px;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  text-decoration: none;
  word-wrap: break-word;
}

p a,
p a:visited {
  color: #000;
}

p {
  font-size: var(--text-xs);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}


/****************
新規CSS追加分ここから
*****************/

.br_sp {
  display: none;
}

.device_pc {
  display: inline;
}

.device_sp {
  display: none;
}

.pc_none {
  display: none !important;
}

.sp_none {
  display: block !important;
}

/* 見出し等共通スタイル */
.section_heading {
  margin-bottom: clamp(24px, 3vw, 42px);
  font-size: clamp(var(--text-3xl), 7vw, var(--text-7xl));
  line-height: 1;
  font-weight: 800;
  text-align: center;
  font-family: var(--font-heading);
  color: #f3ecdc;
}

/****************
native reveal motion
*****************/
.reveal-enabled .anim_01,
.reveal-enabled .anim_02:not(.artist_flow_item):not(.comment_item):not(.dates_card),
.reveal-enabled .music_card,
.reveal-enabled .comment_item,
.reveal-enabled .dates_visual,
.reveal-enabled .dates_body {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 34px), 0);
  transition:
    opacity var(--reveal-duration, 900ms) var(--ease-reveal) var(--reveal-delay, 0ms),
    transform var(--reveal-duration, 900ms) var(--ease-reveal) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-enabled .kv_img {
  --reveal-y: 0px;
  --reveal-duration: 1200ms;
}

.reveal-enabled .music_card,
.reveal-enabled .comment_item,
.reveal-enabled .dates_visual,
.reveal-enabled .dates_body {
  --reveal-y: 24px;
}

.reveal-enabled .anim_01.is-visible,
.reveal-enabled .anim_02:not(.artist_flow_item):not(.comment_item):not(.dates_card).is-visible,
.reveal-enabled .music_card.is-visible,
.reveal-enabled .comment_item.is-visible,
.reveal-enabled .dates_visual.is-visible,
.reveal-enabled .dates_body.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-enabled .artist_flow_item {
  --reveal-offset: 32px;
  --reveal-duration: 1100ms;
  opacity: 0;
  transform: translate3d(0, calc(var(--parallax-offset, 0px) + var(--reveal-offset, 0px)), 0);
  transition:
    opacity var(--reveal-duration) var(--ease-reveal) var(--reveal-delay, 0ms),
    transform var(--reveal-duration) var(--ease-reveal) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-enabled .artist_flow_item.is-visible {
  --reveal-offset: 0px;
  opacity: 1;
  transform: translate3d(0, calc(var(--parallax-offset, 0px) + var(--reveal-offset, 0px)), 0);
}

.reveal-enabled.reveal-rescue .anim_01,
.reveal-enabled.reveal-rescue .anim_02:not(.artist_flow_item):not(.comment_item):not(.dates_card),
.reveal-enabled.reveal-rescue .music_card,
.reveal-enabled.reveal-rescue .comment_item,
.reveal-enabled.reveal-rescue .dates_visual,
.reveal-enabled.reveal-rescue .dates_body,
.reveal-enabled.reveal-rescue .artist_flow_item {
  opacity: 1;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled .anim_01,
  .reveal-enabled .anim_02:not(.artist_flow_item):not(.comment_item):not(.dates_card),
  .reveal-enabled .music_card,
  .reveal-enabled .comment_item,
  .reveal-enabled .dates_visual,
  .reveal-enabled .dates_body,
  .reveal-enabled .artist_flow_item {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

/****************
about
*****************/
.about_section {
  background: #000;
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0 clamp(88px, 10vw, 156px);
}

.about_feature {
  margin-top: 0;
  padding: 0;
}

.about_stage {
  display: none;
}

.about_img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.about_img img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 940px);
  max-height: min(78svh, 860px);
}

.about_copy {
  position: relative;
  z-index: 1;
  padding: 0 var(--page-gutter) 0 0;
  background: transparent;
}

.about_copy_inner {
  width: min(100%, 1680px);
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: start;
}

.about_copy_visual {
  margin: 0;
  position: sticky;
  top: clamp(88px, 8vw, 128px);
  align-self: start;
}

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

.about_text {
  width: 100%;
  margin: 0;
  padding: 0 0 0 clamp(12px, 1.2vw, 20px);
}

.about_intro {
  margin-bottom: clamp(18px, 2vw, 30px);
  color: #f3ecdc;
}

.about_kicker {
  margin: 0;
  font-size: clamp(var(--text-md), 1.8vw, var(--text-lg));
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about_title {
  margin: clamp(8px, 0.9vw, 14px) 0 0;
  font-size: clamp(var(--text-md), 2vw, var(--text-xl));
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f3ecdc;
  font-family: var(--font-heading);
}

.about_paragraph {
  line-height: 1.85;
  letter-spacing: 0.05em;
  font-size: clamp(var(--text-2xs), 0.95vw, var(--text-xs));
  font-weight: 400;
  color: #f3ecdc;
}

.about_paragraph p + p {
  margin-top: 1.4em;
}

.about_note {
  display: block;
  margin-top: 0.9em;
  font-size: clamp(var(--text-2xs), 0.9vw, var(--text-xs));
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #666;
}

/****************
artist flow
*****************/
.artist_flow_section {
  padding: clamp(48px, 5vw, 88px) 0 clamp(72px, 8vw, 128px);
  background: #000;
}

.artist_flow_inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.artist_flow_item {
  margin: 0;
  position: relative;
  will-change: transform;
  transform: translate3d(0, calc(var(--parallax-offset, 0px) + var(--reveal-offset, 0px)), 0);
}

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

.artist_flow_item_01 {
  width: clamp(520px, 41.667vw, 100%);
  margin-left: auto;
  z-index: 1;
}

.artist_flow_item_02 {
  width: clamp(520px, 41.667vw, 100%);
  margin-top: clamp(-176px, -9vw, -112px);
  z-index: 2;
}

.artist_flow_item_03 {
  width: clamp(520px, 41.667vw, 100%);
  margin-top: clamp(-232px, -12vw, -148px);
  margin-left: auto;
  z-index: 3;
}

/****************
news
*****************/
.news_section {
  padding: calc(var(--section-ptb) / 2) 2.5%;
  background: #eee;
}

.news_heading {
  margin-bottom: 3%;
}

.news_list {
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 10ch 1fr;
  column-gap: 2.5rem;
  row-gap: 1rem;
  align-items: center;
}

.news_item {
  display: contents;
  line-height: 1;
}

.news_date {
  grid-column: 1;
  white-space: nowrap;
  font-family: var(--font-latin);
}

.news_text {
  grid-column: 2;
  font-size: clamp(var(--text-xs), 1vw, var(--text-sm));
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #333;
}

.news_modal_link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.news_modal_link:hover {
  opacity: 0.8;
}

/****************
schedule
*****************/
.schedule_section {
  padding: calc(var(--section-ptb) * 1.2) 5%;
  background: url(../images/schedule_bg.jpg) no-repeat center;
  background-size: cover;
  background-blend-mode: lighten;
}

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

.schedule_heading {
  margin-bottom: 3%;
  font-size: clamp(var(--text-2xl), 5vw, var(--text-5xl));
}

.heading_img {
  display: block;
  width: auto;
  margin: 0 auto 3%;
  max-height: 520px;
  height: auto;
}

.heading_img_logo {
  display: block;
  width: auto;
  margin: 0 auto 3%;
  max-height: 330px;
  height: auto;
}

.venue_list {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
}

.venue_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3% 2%;
  border-bottom: 1px solid #392c1c;
}

.venue_header {
  flex-basis: 35%;
  font-family: var(--font-latin);
}

.venue_date {
  font-size: var(--text-md);
  line-height: 1.2;
  font-weight: 400;
}

.venue_name {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.6;
}

.soldout_badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: var(--text-2xs);
  letter-spacing: 1.5px;
  color: #fff;
  background-color: #5e5e5e;
}

.venue_name .soldout_badge {
  padding: 8px 20px;
  font-size: var(--text-2xs);
  color: #fff;
  line-height: 1;
}

.modal_venue_name .soldout_badge {
  margin-top: 1%;
  padding: 8px 20px;
  font-size: var(--text-2xs);
  line-height: 1;
  color: #fff;
}

.venue_item03 .venue_name {
  font-family: var(--font-sans);
}

.venue_prefecture {
  padding: 0.6% 1.5%;
  border: 0.5px solid #392c1c;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: var(--text-2xs);
}

.common_btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff;
  width: 320px;
  height: auto;
  line-height: 50px;
  letter-spacing: 1px;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  background: #000;
  border: 1px solid #000;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.common_btn::before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -9px;
  transition: background-color 0.25s ease;
}

.common_btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transition: border-color 0.25s ease;
}

.common_btn:hover,
.common_btn:focus-visible {
  color: #000;
  background: #fff;
  border-color: #000;
}

.common_btn:hover::before,
.common_btn:focus-visible::before {
  background: #000;
}

.common_btn:hover::after,
.common_btn:focus-visible::after {
  border-color: transparent transparent transparent #fff;
}

.common_btn.btn_disabled {
  cursor: not-allowed;
  pointer-events: none;
  background: #999;
  border-color: #999;
}

/****************
artist
*****************/
.artist_section {
  padding: clamp(48px, 6vw, 88px) 5%;
  color: #fff;
  background: #000;
}

.artist_inner {
  max-width: 1280px;
  margin: 0 auto;
}

.artist_profile {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
}

.artist_info {
  display: grid;
  grid-template-columns: minmax(300px, 42%) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 96px);
  align-items: start;
  min-width: 0;
}

.artist_photo {
  width: 100%;
  min-width: 0;
}

.artist_photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.artist_heading_block,
.artist_body {
  min-width: 0;
}

.artist_heading_block {
  padding-right: clamp(8px, 1vw, 18px);
}

.artist_name_en {
  margin: 0 0 clamp(10px, 1.4vw, 16px);
  font-size: clamp(var(--text-3xl), 6.4vw, var(--text-8xl));
  line-height: 0.88;
  letter-spacing: 0.01em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  text-wrap: balance;
}

.artist_name_en img {
  width: 100%;
}

.artist_name_ja {
  margin: 0;
  font-size: clamp(var(--text-sm), 1.8vw, var(--text-md));
  font-weight: 600;
  letter-spacing: 0.08em;
}

.artist_text {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-size: clamp(var(--text-2xs), 1vw, var(--text-xs));
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.site_link {
  display: inline-flex;
  margin-bottom: clamp(12px, 2vw, 18px);
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 4px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.site_link:hover,
.site_link:focus-visible {
  opacity: 0.75;
  border-color: #fff;
}

.sns_list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sns_item {
  display: inline-flex;
}

.sns_list a img {
  max-width: 30px;
  width: 100%;
  display: block;
}

/****************
movie
*****************/
.movie_section {
  padding: var(--section-ptb) 5%;
  background: #fff;
}

.movie_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.movie_heading {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-5xl));
}

.movie_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.movie_item {
  background: #000;
  overflow: hidden;
}

.movie_link {
  position: relative;
  display: block;
  aspect-ratio: 533 / 300;
  background: #000;
}

.movie_link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.movie_link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.08));
  transition: opacity 0.3s ease;
}

.movie_play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(54px, 5vw, 76px);
  height: clamp(54px, 5vw, 76px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  z-index: 1;
}

.movie_play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.movie_link:hover img,
.movie_link:focus-visible img {
  transform: scale(1.04);
  opacity: 0.92;
}

.movie_link:hover::after,
.movie_link:focus-visible::after {
  opacity: 0.7;
}


/****************
music
*****************/
.music_section {
  padding: clamp(56px, 7vw, 108px) var(--page-gutter);
  color: #f4f0e6;
  background: #000;
}

.music_inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.music_heading {
  margin-bottom: clamp(24px, 3.4vw, 44px);
  font-size: clamp(var(--text-5xl), 7.5vw, var(--text-8xl));
  font-family: var(--font-display);
}

.music_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(24px, 2.2vw, 40px);
  row-gap: clamp(36px, 3.8vw, 64px);
}

.music_card {
  min-width: 0;
  font-family: var(--font-latin);
}

.music_thumb {
  position: relative;
  display: block;
  aspect-ratio: 533 / 300;
  overflow: hidden;
  background: #120604;
}

.music_thumb::before {
  content: "";
  position: absolute;
  left: clamp(10px, 1vw, 16px);
  bottom: clamp(10px, 1vw, 16px);
  width: clamp(28px, 2.3vw, 38px);
  height: clamp(28px, 2.3vw, 38px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 14'%3E%3Cpath fill='%23ffffff' d='M0 0v14l12-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32% auto;
  backdrop-filter: blur(6px);
  z-index: 1;
}

.music_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.music_thumb:hover img,
.music_thumb:focus-visible img {
  transform: scale(1.02);
  opacity: 0.92;
}

.music_card_body {
  margin-top: clamp(14px, 1.1vw, 22px);
  margin-bottom: clamp(18px, 1.8vw, 30px);
}

.music_track_artist,
.music_track_title,
.music_album_label,
.music_album_text,
.music_album_year {
  margin: 0;
  letter-spacing: 0;
  color: #f3ecdc;
}

.music_track_artist,
.music_track_title {
  font-size: clamp(var(--text-2xs), 1.3vw, var(--text-sm));
  line-height: 1.18;
  font-weight: 700;
}

.music_album {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 1.4vw, 24px);
}

.music_album_art {
  flex: 0 0 clamp(80px, 6.9vw, 130px);
}

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

.music_album_meta {
  padding-top: clamp(2px, 0.3vw, 6px);
}

.music_album_label {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xs), 1.2vw, var(--text-xs));
  line-height: 1.1;
}

.music_album_text {
  margin-top: clamp(8px, 0.7vw, 12px);
  font-size: clamp(var(--text-2xs), 1vw, var(--text-xs));
  line-height: 1.08;
  font-weight: 500;
}

.music_album_year {
  margin-top: clamp(8px, 0.8vw, 14px);
  font-size: clamp(var(--text-2xs), 0.95vw, var(--text-xs));
  line-height: 1.12;
  font-weight: 500;
}

/****************
comments
*****************/
.comments_feature {
  background: #000;
}

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

.comments_copy {
  position: relative;
  z-index: 1;
  margin-top: clamp(-320px, -16.67vw, -180px);
  padding: clamp(40px, 4.5vw, 72px) var(--page-gutter) clamp(72px, 8vw, 128px);
  color: #f4f0e6;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.34) 16%,
    rgba(0, 0, 0, 0.82) 40%,
    #000 64%
  );
}

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

.comments_heading,
.dates_heading {
  font-size: clamp(var(--text-3xl), 7vw, var(--text-6xl));
}

.comments_heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-display);
}

.comments_heading .comments_heading_text {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.comments_heading .comments_heading_note {
  position: absolute;
  left: calc(100% + clamp(8px, 1vw, 8px));
  bottom: clamp(5px, 0.65vw, 10px);
  margin-bottom: 0;
  font-family: var(--font-jp);
  font-size: clamp(10px, 0.8vw, 12px);
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
}

.comments_list {
  --comments-gap: clamp(40px, 2.4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 85%;
  margin: 0 auto;
  gap: var(--comments-gap);
  align-items: start;
}

.comment_item {
  display: grid;
  grid-template-columns: 1fr;
  flex: 0 1 calc((100% - var(--comments-gap) - var(--comments-gap)) / 3);
  gap: clamp(14px, 1.6vw, 20px);
  align-items: start;
}

.comment_visual {
  overflow: hidden;
  background: #111;
}

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

.comment_copy_body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #f4f0e6;
}

.comment_copy_body .comment_heading {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #f4f0e6;
}

.comment_copy_body .comment_role,
.comment_copy_body .comment_name {
  display: block;
}

.comment_copy_body .comment_name {
  margin-top: 0.1em;
}

.comment_copy_body .comment_heading + p {
  margin-top: 0;
}

.comment_copy_body p + p {
  margin-top: 0.65em;
}

/****************
dates
*****************/
.dates_section {
  padding: 0 var(--page-gutter) clamp(84px, 10vw, 152px);
  color: #f4f0e6;
  background: #000;
}

.dates_inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.footer_inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.dates_card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
}

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

.dates_title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(var(--text-lg), 2.2vw, var(--text-2xl));
  line-height: 1.05;
  color: #f4f0e6;
}

.dates_kicker {
  margin-top: clamp(10px, 1vw, 16px);
  font-size: clamp(var(--text-2xs), 0.95vw, var(--text-xs));
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #ded6c8;
}

.dates_day {
  margin: clamp(14px, 1.6vw, 22px) 0 clamp(14px, 1.7vw, 26px);
  font-family: var(--font-latin);
  font-size: clamp(var(--text-sm), 1.8vw, var(--text-md));
  line-height: 1;
  letter-spacing: -0.01em;
  color: #f4f0e6;
}

.dates_button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  padding: 0.95em 3.6em 0.95em 2.4em;
  border-radius: 4px;
  background: #dfc05b;
  color: #000;
  border: 1px solid #dfc05b;
  font-size: clamp(var(--text-2xs), 1vw, var(--text-xs));
  font-weight: 700;
  letter-spacing: 0.06em;
  overflow: hidden;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.dates_button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: -0.5625rem;
  border-radius: 999px;
  background: #000;
  transition: background-color 0.25s ease;
}

.dates_button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3125rem;
  width: 0;
  height: 0;
  margin-top: -0.25rem;
  border-style: solid;
  border-width: 0.25rem 0 0.25rem 0.375rem;
  border-color: transparent transparent transparent #dfc05b;
  transition: border-color 0.25s ease;
}

.dates_button:hover,
.dates_button:focus-visible {
  background: #fff;
  color: #dfc05b;
  border-color: #dfc05b;
}

.dates_button:hover::before,
.dates_button:focus-visible::before {
  background: #dfc05b;
}

.dates_button:hover::after,
.dates_button:focus-visible::after {
  border-color: transparent transparent transparent #fff;
}

/****************
music
*****************/
.footer_section {
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) var(--page-gutter) clamp(16px, 2vw, 32px);
  text-align: center;
  color: #fff;
  background: #000;
}

.back_to_top {
  display: inline-block;
  margin-bottom: clamp(16px, 2vw, 28px);
  line-height: 0;
}

.back_to_top img {
  display: block;
  width: clamp(34px, 3vw, 54px);
  height: auto;
}

.footer_support {
  margin-bottom: 3%;
  text-align: center;
  font-size: var(--text-2xs);
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 1.5;
}

.footer_copyright {
  font-size: var(--text-2xs);
  letter-spacing: 1px;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
}

/****************
モーダル
*****************/
.is-video-modal-open {
  overflow: hidden;
}

.video_modal[hidden] {
  display: none;
}

.video_modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.video_modal.is-open {
  opacity: 1;
}

.video_modal.is-closing {
  opacity: 0;
}

.video_modal_dialog {
  position: relative;
  width: min(100%, 1220px);
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.985);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video_modal.is-open .video_modal_dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.video_modal.is-closing .video_modal_dialog {
  opacity: 0;
  transform: translate3d(0, 6px, 0) scale(0.99);
}

.video_modal_close {
  position: absolute;
  top: -2.4rem;
  right: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xs), 1vw, var(--text-xs));
  letter-spacing: 0.08em;
  cursor: pointer;
}

.video_modal_frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video_modal_frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.modaal-content-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 5%;
  background: #fff;
}

.modaal-container {
  max-width: 1220px;
}

.modal_inner {
  width: 100%;
}

.modal_info_release,
.modal_info_fee,
.modal_info_bottom {
  max-width: 800px;
  min-width: 700px;
  margin: 0 auto;
}

.modal_title_news {
  max-width: 800px;
  min-width: 700px;
  margin-bottom: 3%;
  font-size: var(--text-xs);
  line-height: 1.4;
  font-weight: bold;
}

.news_modal_body {
  max-width: 800px;
  min-width: 700px;
  margin: 0 auto;
}

.news_modal_body p + p {
  margin-top: 1.1em;
}

/* スケジュール */
.modal_info_block_01 {
  margin-bottom: 6%;
  text-align: left;
}

.modal_venue_date {
  margin-bottom: 1%;
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.modal_venue_name {
  margin-bottom: 2%;
  font-size: clamp(var(--text-md), 2vw, var(--text-lg));
  font-weight: bold;
  line-height: 1;
}

.modal_venue_name_03 {
  font-family: var(--font-sans);
}

.modal_venue_link a {
  display: block;
  padding-top: 1%;
  font-size: var(--text-2xs);
  letter-spacing: 2px;
  font-family: var(--font-sans);
  font-weight: normal;
  vertical-align: super;
  color: #000;
}

.showtime {
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 2px;
}

.modal_info_header {
  margin-bottom: 2.5%;
  text-align: center;
  font-family: var(--font-latin);
}

.modal_section {
  display: flex;
  align-items: baseline;
  text-align: left;
}

.modal_info_fee {
  margin-bottom: 2.5%;
}

.modal_info_release {
  margin-bottom: 2.5%;
}

.modal_info_title {
  flex-basis: 30%;
  font-weight: 800;
  line-height: 1.3;
}

.modal_info_text {
  flex-basis: 70%;
  text-align: left;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: var(--text-sm);
}

.modal_info_text .soldout_badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  font-size: var(--text-2xs);
}

.modal_text_sm {
  font-weight: 500;
  font-size: var(--text-2xs);
  letter-spacing: 2px;
}

.modal_info_btn_item {
  border: 1px solid #0d2c41;
  padding: 1.5% 15% 1.5% 15%;
  align-items: center;
  justify-content: space-between;
}

.modal_info_btn_list .modal_info_btn_item + .modal_info_btn_item {
  border-top: none;
}

.btn_venue {
  font-size: var(--text-sm);
  letter-spacing: 1px;
  font-weight: bold;
}

.btn_link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #fff;
  width: 320px;
  height: auto;
  line-height: 50px;
  letter-spacing: 1px;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  background: #836110;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.modal_info_btn_list .note {
  margin: 2% 0 4%;
  font-size: var(--text-2xs);
}

.modal_info_bottom_01 {
  margin-bottom: 2.5%;
}

.modal_info_btn_list_03 {
  margin-bottom: 2.5%;
}


/****************
レスポンシブ
*****************/

/* ========================================
   1200px〜1599px
   ======================================== */
@media (min-width: 1200px) and (max-width: 1599px) {
  .artist_flow_item_01,
  .artist_flow_item_02,
  .artist_flow_item_03 {
    width: clamp(620px, 48vw, 760px);
  }

  .artist_flow_item_02 {
    margin-top: clamp(-188px, -12vw, -144px);
  }

  .artist_flow_item_03 {
    margin-top: clamp(-232px, -15vw, -180px);
  }
}

/* ========================================
   max-width: 992px
   ======================================== */
@media (max-width: 992px) {
  /* artist_section */
  .artist_info {
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vw, 30px);
  }

  .artist_name_en {
    font-size: clamp(var(--text-3xl), 12vw, var(--text-7xl));
    line-height: 0.9;
  }
}

/* ========================================
   768px〜1199px
   ======================================== */
@media (min-width: 768px) and (max-width: 1199px) {
  .artist_flow_section {
    padding: clamp(40px, 6vw, 64px) 0 clamp(60px, 8vw, 92px);
  }

  .artist_flow_inner {
    padding: 0 clamp(40px, 6vw, 72px);
  }

  .artist_flow_item_01 {
    width: min(66%, 720px);
  }

  .artist_flow_item_02 {
    width: min(70%, 760px);
    margin-top: clamp(-76px, -8vw, -48px);
  }

  .artist_flow_item_03 {
    width: min(66%, 720px);
    margin-top: clamp(-104px, -10vw, -68px);
  }

  /* movie_section */
  .movie_list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* music_section */
  .music_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 2.6vw, 32px);
    row-gap: clamp(32px, 3.4vw, 48px);
  }

  .music_album_art {
    flex-basis: clamp(88px, 9vw, 118px);
  }

  .music_track_artist,
  .music_track_title {
    font-size: clamp(var(--text-2xs), 1.8vw, var(--text-xs));
  }

  .music_album_label {
    font-size: clamp(var(--text-2xs), 1.6vw, var(--text-xs));
  }

  .music_album_text,
  .music_album_year {
    font-size: clamp(var(--text-2xs), 1.4vw, var(--text-xs));
  }

  .comments_copy {
    margin-top: clamp(-240px, -14vw, -140px);
    padding: clamp(40px, 6vw, 64px) var(--page-gutter) clamp(72px, 8vw, 112px);
  }

  .comments_list {
    width: 100%;
  }

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

}

/* ========================================
   max-width: 767px
   ======================================== */
@media (max-width: 767px) {
  .about_section {
    padding: clamp(56px, 10vw, 88px) 0 clamp(72px, 12vw, 112px);
  }

  .about_copy_inner {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .about_copy_visual {
    position: static;
  }

  .about_text {
    padding: 0 0 0 var(--page-gutter);
  }

  .about_kicker {
    font-size: clamp(var(--text-sm), 5vw, var(--text-md));
  }

  .about_title {
    font-size: clamp(var(--text-sm), 5.4vw, var(--text-lg));
  }

  .about_paragraph {
    font-size: clamp(var(--text-2xs), 3.8vw, var(--text-xs));
    line-height: 1.8;
  }

  /* artist_section */
  .artist_section {
    padding: var(--section-ptb) 5%;
    overflow-x: hidden;
  }

  .section_heading {
    font-size: clamp(var(--text-3xl), 15vw, var(--text-5xl));
    margin-bottom: 22px;
  }

  .comments_heading {
    align-items: center;
  }

  .comments_heading .comments_heading_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 8px;
  }

  .comments_heading .comments_heading_note {
    position: static;
    margin-bottom: 0;
    font-size: clamp(10px, 3vw, 11px);
  }

  .artist_flow_section {
    padding: clamp(36px, 10vw, 64px) 0 clamp(52px, 12vw, 82px);
  }

  .artist_flow_inner {
    padding: 0 8%;
    gap: 0;
  }

  .artist_flow_item_01 {
    width: min(86%, 640px);
  }

  .artist_flow_item_02 {
    width: min(90%, 640px);
    margin-top: clamp(-34px, -5vw, -22px);
  }

  .artist_flow_item_03 {
    width: min(86%, 640px);
    margin-top: clamp(-48px, -7vw, -30px);
  }

  .artist_profile {
    gap: clamp(18px, 5vw, 28px);
  }

  .artist_info {
    gap: clamp(14px, 4vw, 24px);
  }

  .artist_heading_block {
    padding-right: 0;
  }

  .artist_name_en {
    font-size: clamp(var(--text-2xl), 13.5vw, var(--text-4xl));
    line-height: 0.92;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .artist_name_ja {
    font-size: clamp(var(--text-xs), 4.2vw, var(--text-sm));
  }

  .artist_photo img {
    aspect-ratio: 4 / 3;
  }

  .artist_text {
    line-height: 1.75;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
  }

  .sns_list {
    gap: 12px;
  }

  /* schedule_section */
  .schedule_inner { width: 100%; }

  .heading_img {
    width: 80%;
  }
  
  .venue_item {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .venue_prefecture {
    position: static;
    transform: none;
    margin: 8px 0;
  }

  .venue_detail {
    width: 100%;
    margin: 12px 0 0;
  }

  .common_btn {
    width: 100%;
  }

  /* music_section */
  .music_section {
    padding: clamp(42px, 11vw, 72px) var(--page-gutter);
  }

  .music_heading {
    font-size: clamp(var(--text-3xl), 16vw, var(--text-5xl));
  }

  .music_grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
  }

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

  .music_card_body {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .music_album {
    gap: 14px;
  }

  .music_album_art {
    flex-basis: clamp(104px, 28vw, 132px);
  }

  .music_track_artist,
  .music_track_title {
    font-size: clamp(var(--text-2xs), 4vw, var(--text-xs));
    line-height: 1.2;
  }

  .music_album_label {
    font-size: clamp(var(--text-2xs), 3.8vw, var(--text-xs));
  }

  .music_album_text,
  .music_album_year {
    font-size: clamp(var(--text-2xs), 3.6vw, var(--text-xs));
    line-height: 1.12;
  }

  .comments_copy {
    margin-top: clamp(-112px, -14vw, -72px);
    padding: clamp(36px, 9vw, 56px) var(--page-gutter) clamp(58px, 12vw, 88px);
  }

  .comments_list {
    width: 100%;
  }

  .comment_item {
    flex-basis: 100%;
    gap: 16px;
    align-items: start;
  }

  .comment_copy_body p {
    font-size: 14px;
    line-height: 1.7;
  }

  .dates_section {
    padding: 0 var(--page-gutter) clamp(64px, 13vw, 96px);
  }

  .dates_card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dates_title {
    font-size: clamp(var(--text-xs), 4.4vw, var(--text-sm));
  }

  .dates_kicker {
    font-size: clamp(var(--text-2xs), 2vw, var(--text-xs));
  }

  .dates_day {
    margin: 10px 0 14px;
    font-size: clamp(var(--text-xs), 4.8vw, var(--text-sm));
  }

  .dates_button {
    min-width: 100%;
    padding: 0.85em 1.1em;
    font-size: clamp(var(--text-2xs), 2.8vw, var(--text-xs));
  }

  /* footer_section */
  .back_to_top img {
    width: 36px;
  }

  .footer_section {
    padding: 34px var(--page-gutter) 18px;
  }

  .footer_copyright {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  /* modal */
  .modaal-container,
  .modal_info_release,
  .modal_info_fee,
  .modal_info_contact,
  .modal_info_organizer,
  .modal_info_bottom,
  .news_modal_body {
    width: 100%;
    min-width: auto;
  }

  .modal_section {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .modal_info_title {
    flex-basis: auto;
    margin-left: -3%;
    font-weight: 700;
    line-height: 1.3;
  }

  .modal_info_text {
    flex-basis: 66%;
    text-align: left;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
  }

  .btn_venue {
    margin-bottom: 2%;
    font-size: var(--text-2xs);
    letter-spacing: 1px;
    font-weight: bold;
  }

  .modal_info_btn_item {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 3% 6%;
  }

  .artist_name_en img {
    width: 70%;
  }  

  /* br_sp */
  .br_sp {
    display: block;
  }

  .device_pc {
    display: none;
  }

  .device_sp {
    display: inline;
  }

  .pc_none {
    display: block !important;
  }

  .sp_none {
    display: none !important;
  }

  /* movie_section */
  .movie_list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .artist_flow_item {
    transform: none !important;
    will-change: auto;
  }

  .video_modal,
  .video_modal_dialog {
    transition: none !important;
  }
}

/* ========================================
   max-width: 480px
   ======================================== */
@media (max-width: 480px) {
  /* about_section */
  .about_section {
    padding: clamp(48px, 9vw, 72px) 0 clamp(64px, 10vw, 96px);
  }

  /* music_section */
  .music_heading {
    margin-bottom: 18px;
    font-size: clamp(var(--text-3xl), 18vw, var(--text-4xl));
  }

  .music_card_body {
    margin-top: 12px;
    margin-bottom: 14px;
  }

  .music_track_artist,
  .music_track_title {
    font-size: clamp(var(--text-2xs), 4.1vw, var(--text-xs));
  }

  .music_album {
    gap: 12px;
  }

  .music_album_art {
    flex-basis: min(34vw, 124px);
  }

  .music_album_label {
    font-size: clamp(var(--text-2xs), 4vw, var(--text-xs));
  }

  .music_album_text,
  .music_album_year {
    font-size: clamp(var(--text-2xs), 3.6vw, var(--text-xs));
  }

  .artist_flow_inner {
    padding: 0 6%;
    gap: 0;
  }

  .artist_flow_item_01 {
    width: 82%;
  }

  .artist_flow_item_02 {
    width: 86%;
    margin-top: -16px;
  }

  .artist_flow_item_03 {
    width: 82%;
    margin-top: -26px;
  }

  .comment_item {
    gap: 14px;
  }

  .comment_copy_body p {
    font-size: 14px;
  }

  .dates_title {
    font-size: clamp(var(--text-xs), 4.7vw, var(--text-sm));
  }

  .dates_kicker {
    font-size: clamp(var(--text-2xs), 2vw, var(--text-xs));
  }

  .dates_day {
    font-size: clamp(var(--text-xs), 4.5vw, var(--text-sm));
  }

  .dates_button {
    padding: 0.82em 0.9em;
    font-size: clamp(var(--text-2xs), 2.7vw, var(--text-xs));
  }

  /* news_section */
  .news_section {
    padding: var(--section-ptb) 5%;
  }

  .news_heading {
    margin-bottom: 4%;
  }

  .news_list {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .news_item {
    display: grid;
    row-gap: 0.2rem;
  }

  .news_date {
    grid-column: 1;
    text-align: left;
    margin-bottom: 0.2rem;
  }

  .news_text {
    grid-column: 1;
  }

  /* footer_section */
  .footer_support {
    margin-bottom: 5%;
  }
  
  .back_to_top img {
    width: 30px;
  }

  /* modal */
  .modaal-inner-wrapper {
    padding: 0 5%;
  }
  
  .modal_info_header {
    margin-bottom: 10%;
    text-align: left;
  }
  
  .modaal-content-container {
    padding: 10% 4%;
  }

  .video_modal {
    padding: 16px;
  }

  .video_modal_close {
    top: -2rem;
    font-size: var(--text-2xs);
  }

  .modal_venue_date {
    font-size: clamp(var(--text-sm), 4vw, var(--text-md));
    letter-spacing: 0px;
  }

  .modal_venue_name {
    margin-bottom: 5%;
    font-size: clamp(var(--text-sm), 4.5vw, var(--text-md));
    letter-spacing: 1px;
  }
  
  .modal_venue_link a {
    padding-top: 4%;
  }

  .showtime {
    font-size: clamp(var(--text-xs), 4vw, var(--text-sm));
  }

  .modal_info_fee,
  .modal_info_release,
  .modal_info_btn_list_03,
  .modal_info_bottom {
    margin-bottom: 5%;
  }

  .modal_info_btn_list .note {
    margin: 5% 0 10%;
    text-align: left;
  }
}
