@charset "utf-8";

/**
 * ページリンクの位置調整
 */
#news,
#introduction,
#schedule,
#cast,
#staff {
  padding-top: 7rem;
  margin-top: -7rem;
}

@media screen and (max-width: 768px) {

  #news,
  #introduction,
  #schedule,
  #cast,
  #staff {
    padding-top: 8rem;
    margin-top: -8rem;
  }
}


/*-----------------------------------------------
 * mv
-------------------------------------------------*/
.mv {
  width: 100%;
  padding-top: 70.667%;
  position: relative;
}

.mv__swipe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.mvs {
  width: 100%;
  padding-top: 70.667%;
}

.mv1 {
  background: url(../../assets/img/index/mv_image1_pc.jpg) no-repeat center bottom/cover;
}

.mv2 {
  background: url(../../assets/img/index/mv_image2_pc.jpg) no-repeat center bottom/cover;
  
}

.mv__nav {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  z-index: 2;
  flex-direction: column;
}

.mv__navlist {
  margin-bottom: 5px;
  background: #FFF;
  border-radius: 5px;
}

.mv__nav--link {
  border: 4px solid #CCC;
  width: 148px;
  height: 70px;
  display: block;
  border-radius: 5px;
  padding-left: 20px;
  text-decoration: none;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  overflow: hidden;
  position: relative;
}

.mv__nav--link .mnl--name {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  bottom: 0;
  display: block;
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 24px;
  transition: all 0.3s;
}

.mv__nav--link.active {
  border-color: var(--color-main);
  background-color: var(--color-main);
}

.mv1__thumb {
  background: url(../img/index/mv_image1-t_pc.jpg) no-repeat center right / contain;
  background-color: #CCC;
}

.mv2__thumb {
  background: url(../img/index/mv_image2-t_pc.jpg) no-repeat center right / contain;
  background-color: #CCC;
}


@media screen and (max-width: 959px) {
  .mv {
    margin-top: 35px;
    padding-top: 71.2%;
    margin-bottom:100px;
  }

  .mvs {
    width: 100%;
    padding-top: 71.2%;
  }

  .mv1 {
    background: url(../../assets/img/index/mv_image1_sp.jpg) no-repeat center top/cover;
    /* padding-top: 110%; */
  }

  .mv2 {
    background: url(../../assets/img/index/mv_image2_sp.jpg) no-repeat center top/cover;
    /* padding-top: 110%; */
  }

  .mv__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: auto;
    bottom: -80px;
    display: flex;
    z-index: 2;
    flex-direction: row;
    justify-content: center;
  }

  .mv__navlist {
    margin-left: 5px;
    margin-right: 5px;
    background: #FFF;
    border-radius: 5px;
    filter: none;
  }

  .mv__nav--link .mnl--name {
    font-size: 10px;
  }
}

/*-----------------------------------------------
 * BDDVD bnr
-------------------------------------------------*/
.top_bd img {
  width: 150px;
}

.top_bd {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  z-index: 2;
}

@media screen and (max-width: 959px) {
  .top_bd img {
    width: 80px;
  }

  .top_bd {
    position: absolute;
    top: 207px;
    left: 15px;
    display: flex;
    z-index: 2;
  }
}


/*-----------------------------------------------
 * mainCaution
-------------------------------------------------*/
.main {
  width: 83vw;
  overflow: hidden
}

.mainCaution {
  margin: 0 3rem 8rem 4rem
}

.mainCaution__body {
  max-width: 100rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4px;
}

.mainCaution__item--link {
  position: relative;
  display: block;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-main);
  letter-spacing: .1em
}

.mainCaution__item--txt {
  width: 84%;
}
@media screen and (max-width: 768px) {
  .mainCaution__item--txt {
    width: 100%;
  }
}

.mainCaution__item--link .icon_arrow {
  position: absolute;
  top: 22px;
  right: 2rem;
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg)
}

.mainCaution__item--link .icon_arrow::before {
  background-color: var(--color-main)
}

.mainCaution__item--link:hover .icon_arrow::before {
  background-color: #fff
}

/* PC */
@media screen and (min-width: 769px) {
  .main {
    margin: 3rem 0 0 0rem;
    padding: 0 0 0 3rem
  }

  .mainCaution__item {
    width: calc(50% - 4px);
    position: relative;
  }

  .mainCaution__item--link {
    max-width: 48rem;
    height: 7rem;
    margin: 2rem auto 0;
    padding: 1rem 0 1rem 1rem;
    border: 4px solid var(--color-main);
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left
  }

  .mainCaution__item--link:hover .icon_arrow {
    /* top: 2.3rem */
    right: 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .main {
    width: 100%
  }

  .mainCaution {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%
  }

  .mainCaution__body {
    max-width: 100%
  }

  .mainCaution__item {
    width: 100%;
  }

  .mainCaution__item--txt br {
    /* display: none; */
  }

  .mainCaution__item--link {
    width: 100%;
    border: 2px solid var(--color-main);
    font-size: 12px;
    padding: 1.3rem 0.5rem 1.5rem 0.5rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .mainCaution__item--link .icon_arrow {
    top: auto;
    margin-right: -1em;
  }

  .mainCaution__item--link:hover .icon_arrow {
    top: auto
  }

  .mainCaution__item--link:hover .icon_arrow::before {
    bottom: .8rem;
  }
}


/*-----------------------------------------------
* news
-------------------------------------------------*/
.news {
  margin: 0 3rem 8rem 4rem
}

.news__card {
  position: relative
}

.news__card::before {
  content: '';
  display: block;
  width: 250%;
  height: 0.1rem;
  background: url(../../assets/img/index/news_line.svg) repeat-x;
  position: absolute;
  left: -50%;
  bottom: 0
}

.news__card:last-child::before {
  background: none
}

.news__card .icon_arrow::before {
  background-color: var(--color-main)
}

.news__card--date {
  display: block;
  border-radius: 30rem;
  padding: .4rem 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: var(--color-main);
  margin-right: 2.4vw;
}

.news__card--title {
  width: 70rem;
  display: block;
  padding: .4rem 0;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-right: 2.4rem
}

.news__card--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2.2rem 0
}

.news__card--link:hover {
  color: var(--color-main)
}

.news__card--link:hover .c_icon::before {
  margin-right: -.5rem
}

.news__card--text {
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.btn_newsMore {
  margin-top: 32px;
}

.btn_newsMore .common_btnLink {
  color: var(--color-main);
  border-color: var(--color-main);
}

.btn_newsMore .common_btnLink:hover {
  opacity: 1;
  color: #fff;
}

.btn_newsMore .ani_borderleft::before {
  background-color: var(--color-main);
}

.btn_newsMore .icon_arrow::before {
  background-color: var(--color-main);
}

/* SP */
@media screen and (max-width: 768px) {
  .news {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%
  }

  .news__card--date {
    width: 8rem;
    padding: .1rem 0;
    margin-right: 1rem;
    font-size: 1rem;
    letter-spacing: 0;
  }

  .news__card--title {
    width: 65%;
    padding: .1rem 0;
    font-size: 12px;
    margin-right: .5rem;
  }

  .news__card--link .c_icon::before {
    width: 16px;
    height: 16px
  }

  .news__card--text {
    font-size: 1rem;
  }
}


/*-----------------------------------------------
 * shedule
-------------------------------------------------*/
.schedule {
  margin: 0 3rem 10rem 4rem
}

.schedule__linkArea {
  position: relative;
  padding: 0;
  margin-bottom: .5rem
}

.schedule__linkArea a {
  background: linear-gradient(-45deg, #fc8bb1 25%, var(--color-main) 25%, var(--color-main) 50%, #fc8bb1 50%, #fc8bb1 75%, var(--color-main) 75%, var(--color-main));
  background-size: 60px 60px;
  padding: 4rem 0;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: .1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 18px 0;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: .35rem;
  -webkit-transition: all .3s;
  transition: all .3s
}

.schedule__linkArea .c_icon {
  position: absolute;
  top: 4.2rem;
  right: 3rem;
  -webkit-transition: all .3s;
  transition: all .3s
}

.schedule__imgArea--img {
  width: 100%;
}

.schedule__imgArea--text {
  margin-top: 2.5rem;
  font-size: 16px;
  text-align: center;
  letter-spacing: .1rem;
  font-weight: 600;
  text-align: left
}

.schedule__imgArea--text a {
  color: var(--color-main);
  text-decoration: underline
}

.schedule__linkArea a .icon_arrow::before {
  /* width: 2.6rem;
  height: 2.6rem;*/
  background-color: #fff;
}

.schedule__linkArea a:hover {
  opacity: .8
}

.schedule__linkArea a:hover .c_icon {
  right: 2.5rem
}

.schedule__bnr .schedule__bnr--link {
  max-width: 58rem;
}

/* PC */
@media screen and (min-width: 769px) {
  .schedule .c_title_h2 {
    margin-bottom: 4rem
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .schedule {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%;
    position: relative;
    z-index: 100;
  }

  .schedule .c_title_h2 {
    margin-bottom: 2.5rem
  }

  .schedule__imgArea--text {
    margin-top: 1rem;
    font-size: 1.2rem
  }

  .schedule__linkArea {
    margin-bottom: 1rem;
    padding: 0
  }

  .schedule__linkArea a {
    padding: 2rem 0;
    padding: 1.4rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .2rem
  }

  .schedule__linkArea a .c_icon::before {
    width: 2rem;
    height: 2rem
  }

  .schedule__linkArea .c_icon {
    top: 4rem;
    right: 1.5rem;
  }
}


/*-----------------------------------------------
 * cast
-------------------------------------------------*/
.cast {
  margin: 0 3rem 8rem 4rem;
  margin-right: 0;
  position: relative
}

.cast__body {
  margin: 4rem 0; 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
  justify-content: center;
}

.cast__card.is-large .cast__img {
  padding-top: 75%;
}

.cast__card a {
  display: block;
}

.cast__card a:hover {
  color: var(--color-main)
}

.cast__card a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1)
}

.cast__img {
  padding-top: 102.778%;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.cast__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
}

.cast__img img.is-comingsoon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cast__card a:hover img.is-comingsoon {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1)
}

.cast__img img.is-scale {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

.cast__card a:hover img.is-scale {
  -webkit-transform: scale(1.25);
  transform: scale(1.25)
}

.cast__detail {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: -10px;
}

.cast__name {
  color: var(--color-main);
  font-size: 16px;
  letter-spacing: .1em;
  text-align: center;
  position: relative;
}

.cast__name span {
  position: relative;
  display: inline-block;
}

.cast__name span::after {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  -webkit-mask: url(../img/common/icon_comment.svg) no-repeat center center / contain;
  mask: url(../img/common/icon_comment.svg) no-repeat center center / contain;
  background: var(--color-main);
  vertical-align: top;
  transform-origin: left bottom;
  transition: all 0.3s ease;
  position: absolute;
  right: -28px;
  bottom: 4px;
}

.cast__text {
  text-align: center;
  line-height: 2;
  font-weight: 500;
}

.cast__text__tit{
  color: #fc77a3;
  font-weight: 700;
}

.cast__new {
  width: min(4vw, 40px);
  height: min(4vw, 40px);
  background: var(--color-accent);
  border-radius: 60px;
  position: relative;
  z-index: -1;
  transition: transform .3s ease;
}

.cast__new span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  font-size: min(1.2vw, 12px);
  color: #FFF;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cast__card a:hover .cast__new {
  transform: scale(1.1);
}

/* PC */
@media screen and (min-width: 769px) {
  .cast__card {
    position: relative;
    width: calc(100% / 5 - 30px);
  }

  .cast__card.is-large {
    width: calc(100% / 3 - 30px);
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .cast {
    margin: 0 0 rem 0;
    padding: 0 4% 0 4%
  }

  .cast__body {
    margin-top: 3rem;
    padding: 0;
    gap: 4vw 3vw;
  }

  .cast__card {
    width: calc(100% / 2 - 1.5vw);
  }

  .cast__img {
    padding-top: 102.778%;
  }

  .cast__img img {
    object-fit: contain;
  }

  .cast__name {
    font-size: 1.2rem
  }

  .cast__name::after {
    width: 20px;
    height: 20px;
    margin-left: 0;
  }

  .cast__text {
    font-size: 12px;
    line-height: 2;
    margin-top: 2rem;
  }

  .cast__detail {
    margin-left: -15px;
  }

  .cast__new {
    width: max(40px, 20px);
    height: max(40px, 20px);
  }

  .cast__new span {
    font-size: 10px;
  }

  .cast__name span::after {
    width: 18px;
    height: 18px;
    right: -22px;
  }

  .cast__card.is-large {
    width: calc(100% / 1.5);
    margin: 0 auto;
  }
}

.castM__img{
  padding-top: 0;
}


/*-----------------------------------------------
 * staff
-------------------------------------------------*/
.staff {
  margin: 0 3rem 8rem 4rem
}

.staff__list {
  margin: 5rem 0 10rem 0
}

.staff__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 2.5rem
}

.staff__item--part {
  width: 12rem;
  display: block;
  border-radius: 30rem;
  padding: .4rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: var(--color-main);
  margin-right: 2.4rem
}

.staff__item--name {
  font-size: 16px;
  line-height: 2.1;
  font-weight: 600;
  letter-spacing: .15em;
  position: relative;
  /* display: flex;
  align-items: center;
  flex-wrap: wrap; */
}

.staff__item--name .js-modal-open::after {
  content: '';
  width: 25px;
  height: 25px;
  display: inline-block;
  -webkit-mask: url(../img/common/icon_comment.svg) no-repeat center center / contain;
  mask: url(../img/common/icon_comment.svg) no-repeat center center / contain;
  background: var(--color-main);
  vertical-align: top;
  transform-origin: left bottom;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  right: -32px;
}

.staff__cmnt--img{
  width: 100%;
  display: block;
  padding-top: 70.667%;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .staff {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%
  }

  .staff__list {
    margin: 3rem 0 7rem 0
  }

  .staff__item--part {
    max-width: 8rem;
    padding: .2rem 0;
    margin-right: 1.2rem;
    font-size: 1rem
  }

  .staff__item--name {
    font-size: 12px;
    line-height: 2
  }

  .staff__cmnt--img {
    margin-bottom: 20px;
  }
}


.castm{
  margin-top: 60px;
}
.castm ul{
  margin-top: 10px;

}
.castm__tits{
  display: flex;
  justify-content: center;
}
.castm__tit{
  width: 12rem;
    display: block;
    border-radius: 30rem;
    padding: .4rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background-color: var(--color-main);
}
.nogap{
  gap: 0;
}



/*-----------------------------------------------
 * ticket
-------------------------------------------------*/
.tickets {
  margin: 0 3rem 8rem 4rem;
}

.ticket__price {
  background: linear-gradient(-45deg, #ffabc1 25%, #ff9cb6 25%, #ff9cb6 50%, #ffabc1 50%, #ffabc1 75%, #ff9cb6 75%, #ff9cb6);
  background-size: 60px 60px;
  padding: 4rem 0;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: .1em;
  text-align: center;
  margin: 0 0 40px 0;
}

.ticket__price .c_icon::before {
  width: 2.6rem;
  height: 2.6rem
}

.ticket--card {
  list-style: disc;
  margin-bottom: 3rem
}

.ticket__detail--text {
  font-size: 16px;
  line-height: 2.1;
  font-weight: 600
}

.ticket__detail--text small {
  display: inline-block;
  line-height: 1.8;
}

.ticket__detail--heading {
  font-size: 16px;
  line-height: 2.1;
  font-weight: 600
}

.ticket__detail--sub {
  font-size: 16px;
  line-height: 2.1;
  font-weight: 600
}

.ticket__detail--text.text-large {
  font-size: 20px;
}

.ticket__detail+.ticket__detail {
  margin-top: 40px;
}

.ticket__detail--text+.ticket__detail--text {
  margin-top: 20px;
}

.ticket__detail--text a {
  color: var(--color-main);
}

.ticket_tit {
  background-color: var(--color-main);
  color: #fff !important;
  padding: 10px 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.ticket_subtit {
  margin: 24px 0 16px;
  font-weight: 600;
}

.ticket_tit_border {
  border: 3px solid #fc77a3;
  background-color: #FFF;
  color: #fc77a3 !important;
  padding: 10px 20px;
  display: block;
  margin-bottom: 15px;
}

/* ticket__caution */
.ticket__caution {
  margin-top: 40px;
  /* margin: 3.5rem 3.5vw; */
}

.ticket__caution--h3 {
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: .2em;
  font-weight: 600;
}

.ticket__caution--body {
  margin-bottom: 3rem
}

.ticket__caution--card {
  list-style: disc
}

.ticket__caution--card p {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4;
  letter-spacing: .1em
}

.ticket__caution--card p a {
  text-decoration: underline;
}

.ticket__caution--endText {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4;
  letter-spacing: .1em;
  text-align: center
}

.ticket__detail--playguideLists {
  margin: 3.5rem 0;
}

.ticket__detail--playguideList {
  margin: 3.5rem 0;
  font-weight: 600;
}

.ticket__detail--playguideList .common_btnLink {
  margin: 2rem auto 0;
}

.ticket__detail--playguideList_caution a {
  text-decoration: underline;
  display: inline-block;
  color: #4aacde;
}

/* SP */
@media screen and (max-width: 768px) {
  .tickets {
    margin: 0 2rem 3rem 2rem;
  }

  .ticket {
    /* margin: 0 0 5rem 0;
    padding: 0 4% 0 4% */
  }

  .ticket__price {
    font-size: 1.3rem;
    margin: 3rem 0;
    padding: 2rem 0
  }

  .ticket__detail--text {
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .ticket__caution {
    margin-top: 5rem;
  }

  .ticket__caution--h3 {
    font-size: 12px;
    margin-bottom: 1rem
  }

  .ticket__caution--body {
    margin: 0 0 3rem 1rem
  }

  .ticket__caution--card p {
    font-size: 12px;
    line-height: 2
  }

  .ticket__caution--endText {
    font-size: 12px;
    line-height: 2;
    text-align: left
  }

  .ticket__detail--playguideList_title {
    font-size: 12px;
  }

  .ticket__detail--playguideLists {
    font-size: 12px;
  }

  .ticket_tit_border {
    border: 2px solid #fc77a3;;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .ticket__detail+.ticket__detail {
    margin-top: 20px;
  }

  .ticket__detail--text.text-large {
    font-size: 16px;
  }
}

/**
 * ticketApplyDl
 */
 .ticketApplyDl {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}
.ticketApplyDl__item {
	border: 2px solid #fc77a3;
	width: calc((100% - 40px) / 3);
	margin-bottom: 20px;
	padding: 14px;
}
.ticketApplyDl__item:not(:nth-child(3n + 1)) {
	margin-left: 20px;
}
@media screen and (max-width:767px){
	.ticketApplyDl {
		margin-top: 30px;
	}
	.ticketApplyDl__item {
		width: calc((100% - 10px) / 2);
		margin-bottom: 10px;
		padding: 10px;
	}
	.ticketApplyDl__item:not(:nth-child(3n + 1)) {
		margin-left: 0;
	}
	.ticketApplyDl__item:not(:nth-child(2n + 1)) {
		margin-left: 10px;
	}
}

/* dt */
.ticketApplyDl__dt {
	font-size: 18px;
	margin-top: 4px;
	margin-bottom: 20px;
	text-align: center;
  font-weight: 600;
}
/* apply */
.ticketApply {
	height: 50px;
}
.ticketApply__link{
  border: 2px solid;
  border-color: var(--color-accent);
  display: block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: var(--color-accent);
}
.ticketApply__link:hover{
  background-color: var(--color-accent);
  color: #fff;
}
.ticketApply__link span{
  font-weight: 600;  
}
@media screen and (max-width:767px){
	.ticketApplyDl__dt {
		font-size: 14px;
		margin-top: 4px;
		margin-bottom: 10px;
	}
	.ticketApply {
		height: 40px;
	}
	.ticketApply .firstLinkLists__in {
		font-size: 12px;
	}
  .ticketApply__link span{
    font-size: 14px;
  }
}

.mb30{
  margin-bottom: 30px;
}


/*-----------------------------------------------
 * inquiry
-------------------------------------------------*/
.inquiry {
  margin: 0 3rem 8rem 4rem
}

.inquiry__h3.bg-stripe-pink {
  background: linear-gradient(-45deg, #ffabc1 25%, #ff9cb6 25%, #ff9cb6 50%, #ffabc1 50%, #ffabc1 75%, #ff9cb6 75%, #ff9cb6);
  background-size: 60px 60px;
  padding: 4rem 0;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: .1em;
  text-align: center
}

.inquiry__h3.bg-stripe-pink .c_icon::before {
  width: 2.6rem;
  height: 2.6rem
}

.inquiry__h3.bg-stripe-orange {
  background: linear-gradient(-45deg, #8ad8ff 25%, var(--color-main) 25%, var(--color-main) 50%, #8ad8ff 50%, #8ad8ff 75%, var(--color-main) 75%, var(--color-main));
  background-size: 60px 60px;
  padding: 4rem 0;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: .1em;
  text-align: center
}

.inquiry__h3.bg-stripe-orange .c_icon::before {
  width: 2.6rem;
  height: 2.6rem
}

.inquiry__body {
  margin: 4.2rem 6rem 6rem
}

.inquiry__item {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.4;
  letter-spacing: .1em;
  margin-bottom: 1em;
}

.inquiry__item:last-of-type {
  margin-bottom: 0;
}

.inquiry__item b {
  display: block
}

.inquiry__item a {
  text-decoration: underline;
  color: var(--color-main)
}

@media screen and (max-width: 768px) {
  .inquiry {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%
  }

  .inquiry__h3.bg-stripe-pink {
    font-size: 1.3rem;
    padding: 2rem 0
  }

  .inquiry__h3.bg-stripe-orange {
    font-size: 1.3rem;
    padding: 2rem 0
  }

  .inquiry__body {
    margin: 2rem 2rem 4rem
  }

  .inquiry__item {
    font-size: 12px;
    line-height: 2
  }

  .inquiry__item p {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2
  }
}


/*-----------------------------------------------
 * banner
-------------------------------------------------*/
.banner {
  margin: 0 3rem 8rem 4rem
}

.banner__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.banner__item img {
  width: 100%;
  height: auto
}

@media screen and (max-width: 768px) {
  .banner {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%
  }

  .banner__body {
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .banner__item {
    width: 100%;
    margin-bottom: 10px;    
  }
}

@media screen and (min-width: 769px) {
  .banner__item {
    max-width: 40rem;
    margin-right: 1.3rem
  }
}


/*-----------------------------------------------
 * js-loading
-------------------------------------------------*/
.js-loading {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: var(--color-main);
  text-align: center;
  color: #fff;
  z-index: 3;
}

.js-loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.js-loading-logo img {
  width: 30rem;
  fill: #fff;
}

.loading {
  position: relative;
  z-index: 9999;
}


/*-----------------------------------------------
* firstmodal
-------------------------------------------------*/
.firstmodal {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  height: 100vh;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.firstmodal__content {
  max-width: 1200px;
  width: 70%;
}

.firstmodal__content--img {
  max-width: 1200px;
}

.firstmodal__content--img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .firstmodal__content {
    width: 100%;
  }
}


/*-----------------------------------------------
 * intro
-------------------------------------------------*/
.intro {
  margin: 0 3rem 9rem 4rem;
}

.intro__subTitle {
  font-size: 2.8rem;
  line-height: 1.25;
  margin: 4.5rem 0 3rem 0;
  color: var(--color-main);
  font-weight: 600;
  letter-spacing: .12em
}

.intro__subTitle_small {
  font-size: 2.4rem;
  line-height: 1.25;
  margin: 4.5rem 0 3rem 0;
  font-weight: 500;
  letter-spacing: .12em
}

.intro__text {
  font-size: 16px;
  line-height: 2.15;
  letter-spacing: .2em;
  font-weight: 600;
}


/* SP */
@media screen and (max-width: 768px) {
  .intro {
    margin: 0 0 5rem 0;
    padding: 0 4% 0 4%
  }

  .intro .c_title_h2 {
    font-size: 3rem;
    margin-bottom: 2rem
  }

  .intro__subTitle {
    margin: 2rem 0 1.5rem 0;
    font-size: 1.4rem
  }

  .intro__subTitle_small {
    margin: 4rem 0 1.5rem 0;
    font-size: 1.4rem;
    font-weight: 600;
  }

  .intro__text {
    font-size: 1.2rem
  }
}

/* PC */
@media screen and (min-width: 769px) {
  .intro__text {
    margin-left: .5rem
  }
}

/* tab */
.tab__group {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab__btn {
  flex-grow: 1;
  border: 4px solid var(--color-accent);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background .3s ease-out;
}

.tab__btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-accent);
  transition: all .3s ease-out;
  z-index: 1;
  opacity: 0;
}

.tab__btn:hover a {
  opacity: 1;
}

.tab__btn:hover span {
  color: #fff;
}

.tab__btn:hover::before {
  opacity: 1;
}

.tab__btn .c_icon.icon_arrow::before {
  background-color: var(--color-accent);
}

.tab__btn:hover .c_icon.icon_arrow::before,
.tab__btn.is-active .c_icon.icon_arrow::before {
  background-color: #FFF;
}

.tab__btn .c_icon.icon_arrow {
  transform: translateY(-50%) rotate(90deg);
}

.tab__btn a {
  width: 100%;
  height: 100%;
  padding: 16px 0 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}

.tab__btn span {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--color-accent);
  font-weight: 600;
  z-index: 2;
}

.tab__group {
  gap: 24px;
}

.tab__itemList {
  padding: 0 40px;
}

.tab__itemList .panel {
  padding-top: 20px;
}

.tab__item {
  display: none;
}

.tab__btn a.is-active {
  background: var(--color-accent);
}

.tab__btn a.is-active span {
  color: #FFF;
}

.tab__item.is-show {
  display: block;
}

@media screen and (max-width: 768px) {
  .tab__itemList {
    padding: 0 10px;
  }

  .tab__itemList .panel {
    padding-top: 60px;
    margin-top: -60px;
  }

  .tab__group {
    margin-bottom: 30px;
    gap: 20px;
  }

  .tab__btn {
    border: 2px solid var(--color-accent);
  }

  .tab__btn a {
    padding: 12px 0 10px;
  }

  .tab__btn span {
    font-size: 14px;
  }

  .tab__itemList {
    margin-top: 2.4vw;
  }

  .tab__btn::after {
    width: 4vw;
    height: 1.6vw;
    margin-right: 3.2vw;
  }
}

/* utility */
.text-bg-blue {
  background-color: #fc77a3;;
  color: #fff;
  line-height: 1;
}

.text-border-blue {
  border-bottom: 2px solid #fc77a3;;
}

.box-border{
  border: 1px solid #fc77a3;;
  padding: 16px;
}
