@charset "utf-8";

@import url('https://use.typekit.net/oue7tya.css');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

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

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

body {
font-family: 'Zen Kaku Gothic New', "游ゴシック体", YuGothic, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN W6", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
color: #333;
}

: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; */
  /* セクション余白（デフォルト=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 {
    outline: none;
  }
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
    text-decoration: none;
    word-wrap:break-word;
}

p a:link {
  color: #C1AD68;
  color: #b18700;
  
  
}
p a:visited {
  color: #C1AD68;
  color: #b18700;
  
}

p{
  font-size: 0.95em;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1px;
}


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

.br_pc {
  display: block;
}

.br_sp {
  display: inline-block;
}

/* 見出し等共通スタイル */
.section_heading {
  margin-bottom: 5%;
  text-align: center;
  font-size: 1.8em;
  letter-spacing: 0px;
  text-align: center;
  font-family: "akzidenz-grotesk-next-conden", sans-serif;
  font-weight: 700;
  font-style: normal;
}

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

.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: #dbd2a8;
}

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

.news_text {
  grid-column: 2;
  font-size: clamp(14px, 0.9rem + 0.1vw, 18px);
  line-height: 1.6;
  letter-spacing: .02em;
  color: #333;
}

/****************
schedule
*****************/
.schedule_section {
  padding: calc(var(--section-ptb) * 1.2) 5%;
  background: #5f3a71;
}

.schedule_inner {
  max-width: 1440px;
  margin: 0 auto;
}

.schedule_heading {
  margin-bottom: 3%;
  color: #e8e3ff;
}

.main_title {
  font-size: 2.4em;
  color: #e8e3ff;
}

.sub_title {
  display: block;
  font-size: 1.6em;
}

.schedule_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.schedule_item {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
}

.schedule_item_img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.schedule_item_text {
  margin-bottom: 1rem;
  font-weight: 400;
  color: #fff;
  flex: 1;
}

.schedule_item_member {
  margin-bottom: .5rem;
  font-family: "akzidenz-grotesk-next-pro", sans-serif;
}

.schedule_item_charge {
  margin-bottom: 1.5rem;
}

.member_title {
  margin-bottom: 0.2rem;
  font-weight: 700;
  color: #fff;
}

.member_text {
  color: #fff;
}

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

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

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

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

/****************
artist
*****************/
.artist_section {
  padding: var(--section-ptb) 5%;
  color: #e8e3ff;
  background-color: #000;
}

.artist_profile {
  display: flex;
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.artist_info {
  flex: 0 0 42%;
  min-width: 0;
}

.artist_photo {
  flex: 1 1 0;
  min-width: 0;
}

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

.artist_name_en {
  max-width: 100%;   
  margin-bottom: 5%;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-family: "akzidenz-grotesk-next-conden", sans-serif;
  font-weight: 700;
}

.artist_name_ja {
  margin-bottom: 3%;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 1px;
}

.artist_text {
  margin-bottom: 5%;
  font-size: calc(0.9em + 0.1vw);
  letter-spacing: 1px;
  line-height: 1.5;
}

.site_link {
  display: block;
  margin-bottom: 5%;
  align-items: center;
  color: #e8e3ff;
  text-decoration: underline;
  font-weight: 700;
}

.sns_list {
  display: flex;
  gap: 3%;
}

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

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

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

.movie_heading {
  font-size: 2.8em;
}

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

.movie_item {
  position: relative;
  background: #000;
  box-sizing: border-box;
}

.movie_item img {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  border: 5px solid #000;
  cursor: pointer;
}

.movie_item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 5px solid #000;
}

.play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.8);
  clip-path: polygon(30% 20%, 30% 80%, 80% 50%);
  z-index: 3;
}

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

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

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

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

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

/* ========================================
   max-width: 992px
   ======================================== */
@media (max-width: 992px) {
  /* artist_section */
  .artist_profile {
    flex-direction: column-reverse;
  }

  .artist_info,
  .artist_photo {
    flex: 0 0 auto;
    width: 100%;
  }
}

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

/* ========================================
   max-width: 768px
   ======================================== */
@media (max-width: 768px) {
  /* schedule_section */
  .schedule_inner {
    min-width: auto;
    width: 100%;
  }

  .schedule_list {
    flex-direction: column;
    gap: 64px;
  }

  .schedule_item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .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% 3% 6%;
  }
}

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

  .br_pc {
    display: none;
  }

  .br_sp {
    display: block;
  }

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

  .news_text {
    grid-column: 1;
  }

  /* schedule_section */
  .schedule_heading {
    margin-bottom: 3%;
    color: #e8e3ff;
  }
  
  .main_title {
    font-size: 1.4em;
  }
  
  .sub_title {
    font-size: .8em;
  }  

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

/* ========================================
   min-width: 481px
   ======================================== */
@media screen and (min-width: 481px) {
  .pc_none { display: none !important; }
  .sp_none { display: block !important; }
}

/* ========================================
   max-width: 480px
   ======================================== */
@media screen and (max-width: 480px) {
  .pc_none { display: block !important; }
  .sp_none { display: none !important; }
}