@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Rowdies&display=swap');
@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_sp {
  display: inline-block;
}

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

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

.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: url(../images/schedule_bg.jpg);
  background-blend-mode: lighten;
}

.schedule_inner {
  min-width: 680px;
  width: 68%;
  margin: 0 auto;
}

.schedule_heading {
  margin-bottom: 3%;
  font-size: 2.8em;
}

.heading_img {
  display: block;
  width: 45%;
  margin: 0 auto 3%;
}

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

.venue_date {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.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 {
  margin-left: 2%;
  padding: 0.5% 3.5%;
  font-size: 0.75em;
}

.modal_venue_name .soldout_badge {
  margin-top: 1%;
  padding: 0.5% 2%;
  font-size: 0.5em;
  color: #333;
}

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

.venue_prefecture{
  padding: .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: #836110;
  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;
}

/****************
schedule
*****************/
.artist_section {
  padding: var(--section-ptb) 5%;
  color: #fff;
  background-color: #cc917a;
}

.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: "Rowdies", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.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: #fff;
  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 {
  background: #725602;
  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: #ddded1;
}

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

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

.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: 'Zen Kaku Gothic New', "游ゴシック体", YuGothic, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN W6", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.modal_venue_link a {
  display: block;
  padding-top: 1%;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-family: 'Zen Kaku Gothic New', "游ゴシック体", YuGothic, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN W6", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  vertical-align: super;
  color: #b18700;
}

.showtime {
  font-size: 1.2rem;
  font-family: 'Zen Kaku Gothic New', "游ゴシック体", YuGothic, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN W6", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
}

.modal_info_header {
  margin-bottom: 2.5%;
  text-align: center;
  font-family: poppins;
}

.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.3;
  letter-spacing: 1px;
  font-size: 1.2em;
}

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

  .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% 3% 6%;
  }
}

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

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

  /* 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);
    background: #ddded1;
  }

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

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

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