@charset "UTF-8";
/* CSS Document */

/* =========================
   SCHEDULE & TICKET
========================= */

.schedule_wrap{
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}


/* -------------------------
   公演タイトル（東京公演など）
------------------------- */

.schedule_city{
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent1);
}


/* -------------------------
   Google Map
------------------------- */

.schedule_map{
  position: relative;
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.schedule_map iframe{
  width: 100%;
  height: 400px;
  border: 0;
  /* filter: grayscale(90%) brightness(0.95); */
}

/* ほんのり暗くして世界観合わせる
.schedule_map::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.3)
  );
  pointer-events:none;
} */

@media (max-width: 960px){
  .schedule_map iframe{ height: 250px; }
}


/* -------------------------
   チケット案内
------------------------- */

.ticket_notice{
  margin-top: 45px;
  margin-bottom: 45px;
  padding: 20px 0;
  border-top: 1px solid var(--line-main);
  border-bottom: 1px solid var(--line-main);
  color: var(--text-main);
  line-height: 1.8;
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}


/* =========================
   SP対応
========================= */

@media (max-width: 960px){

  .schedule_block{
    padding: 36px 0 44px;
  }

  .schedule_city{
    font-size: 2.6rem;
  }

  .schedule_venue{
    font-size: 1.6rem;
  }

  .schedule_meta{
    font-size: 1.5rem;
  }

  .schedule_map iframe{
    height: 160px;
  }

  .ticket_notice{
    margin-top: 35px;
    margin-bottom: 35px;
    padding: 20px 0;
		font-size: 1.4rem;
    line-height: 1.6;
  }

}


/* =========================
   公演日程一覧box
========================= */
.schedule_city--box {
  font-size: 2.2rem;
  margin: 0 0 10px;
  line-height: 1.2;
}

.box_sche {
  width: 100%;
  max-width: 900px;
  min-height: 180px;
  margin: 35px auto 0;
  padding: 24px 34px 22px;
  background-color: rgba(0,0,0,0);
  background-image: linear-gradient(to right, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(236,236,236,0.40);
  border-radius: 1.1rem;
  position: relative;
  box-sizing: border-box;
  overflow: visible;
}

/* hover用の全面レイヤー */
.box_sche::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(130,109,59,0.15) 50%, rgba(130,109,59,0.00) 100%);
  border: 1px solid rgba(203,172,76,0.55);
	border-radius: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.box_sche:hover::before {
  opacity: 1;
}

.ticketslink_box {
  width: 100%;
  position: relative;
}

.ticketslink_box {
  width: 100%;
  position: relative;
}

.ticketslink_box a {
  position: absolute;
  inset: 0;
  display: block;
  text-indent: -9999px;
  z-index: 3;
}


.box_sche_text1 {
  color: #FFFFFF;
  line-height: 1.75;
  text-align: left;
  width: 100%;
  max-width: 760px;
  margin: 0;
  position: relative;
  z-index: 2;
  padding-right: 210px;
}

.box_sche_text1 .text1em + .text1em {
  margin-top: 4px;
}

.ribon_check {
  width: 200px;
  position: absolute;
  top: -15px;
  right: -55px;
  z-index: 2;
}


@media screen and (max-width: 960px) {
  .box_sche {
    min-height: auto;
    margin-top: 25px;
    padding: 18px 18px 16px;
  }

  .schedule_city--box {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .box_sche_text1 {
    width: 100%;
    max-width: none;
    font-size: 1.25rem;
    line-height: 1.6;
    padding-right: 95px;
  }

  .box_sche_text1 .text1em + .text1em {
    margin-top: 3px;
  }

  .ribon_check {
    width: 120px;
    position: absolute;
    top: -14px;
    right: -35px;
    z-index: 2;
  }
}