@charset "utf-8";

@import url("https://use.typekit.net/ohj0quc.css");
@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-sans);
  color: #333;
  line-height: 1.6;
}

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

:root {
  /* --ttl-font: "Jost", sans-serif; */
  /* --sub-color: #ea6060; */
  /* --main-color: #836110; */
  /* --bg-gradation: linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%) fixed; */
  --font-sans: "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN W6", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  --font-heading: "alternate-gothic-atf", "alternate-gothic-no-2-d", "Arial Narrow", "Helvetica Neue", Helvetica, Arial, "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN W6", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  --font-latin: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* セクション余白（デフォルト=PC） */
  --section-ptb: clamp(64px, 8vw, 120px);
}

/* タブレット */
@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: 0.95em;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1px;
}

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: 5%;
  font-size: 1.8em;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-heading);
}

/****************
about
*****************/
.about_section {
  padding: var(--section-ptb) 13vw;
  background: #fff;
}

.about_heading {
  margin: 0 0 3% 0;
  font-size: calc(13px + 0.7vw);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 1.8px;
}

.about_paragraph {
  line-height: 1.8;
  letter-spacing: 1.1px;
  font-size: calc(12px + 0.33vw);
  font-weight: 500;
}

/****************
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(14px, 0.9rem + 0.1vw, 18px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #333;
}

/****************
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: 2.8em;
}

.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: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}

.venue_name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.6;
}

.soldout_badge {
  display: inline-block;
  color: #333;
  letter-spacing: 1.5px;
  background-color: #fff;
}

.venue_name .soldout_badge {
  padding: 8px 20px;
  font-size: 0.75em;
  line-height: 1;
}

.modal_venue_name .soldout_badge {
  margin-top: 1%;
  padding: 8px 20px;
  font-size: 0.5em;
  line-height: 1;
  color: #333;
}

.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: 0.8rem;
}

.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(3rem, 6.4vw, 7.6rem);
  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(1.1rem, 1rem + 0.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.artist_text {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.08rem);
  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: 2.8em;
}

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

.movie_item {
  background: #000;
  padding: 4px;
  box-sizing: border-box;
}

.movie_item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
}


/****************
music
*****************/
.music_section {
  padding: var(--section-ptb) 5%;
  background: #eee;
}

.music_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.music_heading {
  font-size: 2.8em;
}

.music_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.2vw, 24px);
}

.music_item {
  position: relative;
  min-width: 0;
  height: 360px;
  overflow: hidden;
}

.music_item iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  max-width: none !important;
  min-width: 100%;
  height: 100% !important;
  border: 0;
  display: block;
}

/****************
music
*****************/
.footer_section {
  margin: 0 auto;
  padding: 5% 5% 1% 5%;
  text-align: center;
  color: #fff;
  background: #000;
}

.back_to_top {
  display: inline-block;
  margin-bottom: 3%;
}

.footer_support {
  margin-bottom: 3%;
  text-align: center;
  font-size: 0.8em;
  font-weight: normal;
  letter-spacing: 0px;
  line-height: 1.5;
}

.footer_copyright {
  font-size: 0.8em;
  letter-spacing: 1px;
  text-align: center;
  font-weight: normal;
}

/****************
モーダル
*****************/
.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 {
  margin-bottom: 3%;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
}

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

.modal_venue_date {
  margin-bottom: 1%;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

.modal_venue_name {
  margin-bottom: 2%;
  font-size: 1.6rem;
  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: 0.8rem;
  letter-spacing: 2px;
  font-family: var(--font-sans);
  font-weight: normal;
  vertical-align: super;
  color: #000;
}

.showtime {
  font-size: 1.2rem;
  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: 1.2em;
}

.modal_info_text .soldout_badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  font-size: 0.7em;
}

.modal_text_sm {
  font-weight: 500;
  font-size: 80%;
  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: 1.2em;
  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: 0.85em;
}

.modal_info_bottom_01 {
  margin-bottom: 2.5%;
}

.modal_info_btn_list_03 {
  margin-bottom: 2.5%;
}


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

/* ========================================
   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(2.8rem, 12vw, 6rem);
    line-height: 0.9;
  }
}

/* ========================================
   768px〜1199px
   ======================================== */
@media (min-width: 768px) and (max-width: 1199px) {
  /* movie_section */
  .movie_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   max-width: 767px
   ======================================== */
@media (max-width: 767px) {
  /* artist_section */
  .artist_section {
    padding: var(--section-ptb) 5%;
    overflow-x: hidden;
  }

  .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(2.1rem, 13.5vw, 3.4rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .artist_name_ja {
    font-size: clamp(1rem, 4.2vw, 1.24rem);
  }

  .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_list {
    grid-template-columns: 1fr;
  }

  .music_item { height: 400px; }

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

  /* modal */
  .modaal-container,
  .modal_info_release,
  .modal_info_fee,
  .modal_info_contact,
  .modal_info_organizer,
  .modal_info_bottom {
    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: 0.9em;
    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;
  }
}

/* ========================================
   max-width: 480px
   ======================================== */
@media (max-width: 480px) {
  /* about_section */
  .about_section {
    padding: var(--section-ptb) calc(13vw / 2);
  }

  /* 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%;
  }

  .modal_venue_date {
    font-size: 1.3rem;
    letter-spacing: 0px;
  }

  .modal_venue_name {
    margin-bottom: 5%;
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
  
  .modal_venue_link a {
    padding-top: 4%;
  }

  .showtime {
    font-size: 1.1rem;
  }

  .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;
  }
}
