@charset "UTF-8";

/* noto-sans-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('/kodomo/open/english_concert/resources/fonts/noto-sans-jp-v52-japanese-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('/kodomo/open/english_concert/resources/fonts/noto-sans-jp-v52-japanese-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('/kodomo/open/english_concert/resources/fonts/noto-sans-jp-v52-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* --------------------------------------- */
/* 共通
/* --------------------------------------- */
html {
  font-size: 75%;
  line-height: 1.5;
  color: #000;
}

body, input, textarea, * {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
}

figure{
  margin: 0;
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.page{
  overflow-x: hidden;
  color: #333;
  a:hover {
    text-decoration: none;
  }
}

.page img {
  line-height: 0;
  border: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

.br{
  display: inline-block;
}

.txtRed {
  color: #E4000F !important;
}

.textLink{
  color: #06C !important;
  text-decoration: underline !important;
}



/* --------------------------------------- */
/* ヘッダー
/* --------------------------------------- */

.head {
  width: 100%;
  min-width: 1240px;
}

.headInner {
  width: 1240px;
  margin: 0 auto;
  padding: 5px 0 20px;
}

/* SP追従ヘッダー  */
.headMenu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}

.headMenuInner {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.headMenu .headMenuButton{
  display: block;
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(160deg, #FFFA50 -6.27%, #A55900 87.86%);
  font-size: 11px;
  text-align: center;
  padding: 32px 12px 6px;
  box-sizing: border-box;
}
.headMenu .headMenuButton::before,
.headMenu .headMenuButton::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 3px;
  background: #FFF;
  transition: all .3s ease;
}
.headMenu .headMenuButton::before{
  top: 14px;
}
.headMenu .headMenuButton::after{
  top: 23px;
}
.headMenu .headMenuButton.is-open::before,
.headMenu .headMenuButton.is-open::after{
  top: 28px;
  left: 14px;
}
.headMenu .headMenuButton.is-open::before{
  transform: rotate(45deg) translate(0);
}
.headMenu .headMenuButton.is-open::after{
  transform: rotate(-45deg) translate(0);
}
.headMenu .headMenuButton.is-open img{
  display: none;
}

.gnav {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #521EE8, #001952);
}

.gnav.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 9998;
  margin-top: 0;
}

.gnavInner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.gnavList {
  display: flex;
  width: calc(100% - 20px);
  max-width: 1260px;
  margin: 0 auto;
  align-items: center;
}

.gnavListItem {
  width: calc((100% - 80px) / 4);
}
.gnavListItem.top{
  width: 80px;
}
.gnavListItem.is-close{
  pointer-events: none;
  position: relative;
}
.gnavListItem.is-close:before {
  position: relative;
  content: "";
  display: block;
  background-image: url(/kodomo/open/english_concert/winter24/assets/images/common/img_gnav-close.png);
  background-position: center 50%;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 120px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 1px;
  height: 100%;
  width: 99%;
  z-index: 9;
}
.gnavListItem a picture {
  margin: 0 auto;
  padding: 0 5px;
  line-height: 0;
  display: block;
  width: fit-content;
  position: relative;
}

.gnavListItem a {
  display: flex;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  transition: 0.2s all;
}

.gnavListItem a picture img {
  width: 100%;
  height: auto;
}

.gnavListItem:hover {
  background: #000000;
  background: rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 769px) {
  .gnavListItem a::after{
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 42px;
    z-index: 1;
    border-right: 1px dotted #fff;
  }
  .gnavListItem:first-child a::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 42px;
    z-index: 1;
    border-right: 1px dotted #fff;
  }
  .gnavListItemLink{
    position: relative;
  }
  .gnavListItemLink.is-new:before {
    content: "";
    position: absolute;
    top: 0;
    left: 1px;
    width: 29px;
    height: 15px;
    background: url(/kodomo/open/english_concert/winter24/assets/images/common/pc/icon_new.png) center top no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .gnavListItemWrapper{
    z-index: 1;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
    transform: scaleY(0);
    transform-origin: center top;
    transition: .3s all ease;
    background-color: #fff;
    border-top: 4px solid #ac7900;
    border-bottom: 4px solid #ac7900;
    box-sizing: border-box;
    .list{
      display: flex;
      justify-content: center;
    }
    .listItemLink {
      height: 80px !important;
      width: 140px !important;
      padding: 15px 0 !important;
      box-sizing: border-box;
    }
    .listItemLink.member::before{
      position: absolute;
      content: "";
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      width: 1px;
      height: 42px;
      z-index: 1;
      height: 68px !important;
      border-left: 1px dotted #bd9e4c !important;
    }
    .listItemLink::after{
      height: 68px !important;
      border-right: 1px dotted #bd9e4c !important;
    }
    .listItem.comingSoon{
      position: relative;
    }
    .listItem.comingSoon::before{
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: #000;
      opacity: 0.5;
    }
    .listItem.comingSoon:after{
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110px;
      height: 37px;
      background: url(/kodomo/open/english_concert/winter24/assets/images/common/img_coming-soon.png) center top no-repeat;
      background-size: contain;
      z-index: 1;
    }
  }
  .gnavListItem:hover .gnavListItemWrapper{
    transform: scaleY(1);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .gnavListItem.schedule{
    width: 21%;
  }
  .gnavListItem.ticket{
    width: 17.1%;
  }
  .gnavListItem.goods{
    width: 28.5%;
  }
  .gnavListItem.faq{
    width: 23.4%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .gnavListItem.is-new:before {
    width: 27px;
    height: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .gnavList {
    flex-direction: column;
    width: 100%;
  }
  .gnavListItem{
    width: 100%;
  }
  .gnavListItem a {
    padding: 20px 0 20px 12px;
  }
  .gnavListItem a picture{
    margin: 0 auto 0 0;
    max-width: 249px;
  }
  .listItem .listItemLink picture{
    max-width: 114px;
  }
  .gnavListItem a picture{
    padding: 0;
  }
  .gnavListItem {
    border-top: 1px dotted #fff;
  }
  .gnavListItem:first-child {
    border-top: none;
    width: 100%;
  }
  .listItem{
    border-top: 1px dotted #fff;
    margin-left: 55px;
    position: relative;
  }
  .listItem.comingSoon::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    opacity: 0.5;
  }
  .listItem.comingSoon:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 37px;
    background: url(/kodomo/open/english_concert/winter24/assets/images/common/img_coming-soon.png) center top no-repeat;
    background-size: contain;
    z-index: 1;
  }
  .gnavListItemLink.is-close:before {
    width: 100%;
  }
  .gnavListItem a{
    height: 68px;
  }
  .gnav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    background: #000000;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    overflow: hidden;
    margin-top: 0;
  }

  .gnav.is-open {
    display: block;
  }

  .gnav.fixed .gnavInner {
    height: auto;
  }

  .gnavInner {
    top: 60px;
    background: #0167bd;
  }

  .gnavListItem a {
    box-sizing: border-box;
    height: 68px;
  }

  .gnavListItem:hover {
    background: transparent;
  }

  .gnavListItem a::before{
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: #fff;
  }
  .gnavListItem a::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border-style: solid;
    border-color: transparent transparent transparent #0063b2;
    border-width: 6px 0 6px 8px;
  }
  .gnavListItemLink.ticket::before,
  .gnavListItemLink.member::before{
    display: none;
  }
}


.heroInner{
  position: relative;
}

.heroNote{
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
}

.gnavListItem.is-pc.is-hover>a {
  background: rgba(0, 0, 0, 0.2);
}

.megaArea {
  display: none;
  background: #fff;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 9;
  border-top: 3px solid #00579a;
  border-bottom: 3px solid #00579a;
}

.megaArea.is-act {
  display: block;
}

.megaAreaIn {
  width: calc(100% - 40px);
  max-width: 1240px;
  margin: 0 auto;
}

.megaAreaIn ul li a:hover {
  background: none;
}

.gnavListItem.comingSoon {
  position: relative;
}
.gnavListItem.comingSoon::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0.5;
}
.gnavListItem.comingSoon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 103px;
  height: 32px;
  background-image: url(/kodomo/open/english_concert/winter24/assets/images/common/img_coming-soon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}



/*
ページのトップへ戻る
-------------------------------------------*/

.pageTop {
  position: fixed;
  bottom: 20px;
  right: 26px;
  z-index: 2;
}

/* 災害対応・お詫びエリア */

#cautionArea {
  /*display: none;*/
  min-width: 1190px;
}

#cautionArea .cautionAreaBox {
  width: 940px;
  margin: 10px auto;
  padding: 15px 20px;
  border: 2px solid #e22525;
  box-sizing: border-box;
  color: #e22525;
}

#cautionArea .cautionHead {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
}

#cautionArea .cautionTxt {
  margin-bottom: 5px;
}

#cautionArea .cautionTxt:last-child {
  margin-bottom: 0;
}

#cautionArea .cautionTxt a {
  background: url(/global/english-concert/summer/images/top/arrow_news.png) 4px 3px no-repeat;
  background-size: 7px 11px;
  font-size: 14px;
  color: #e22525;
  padding-left: 16px;
}

#cautionArea .cautionTxt a:hover {
  text-decoration: none;
}

#cautionOverlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
}

#cautionModal {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 580px;
  margin-top: -290px;
  margin-left: -340px;
  padding: 25px 35px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
}

#cautionModalLink {
  display: block;
  width: 360px;
  margin: 0 auto;
}

.cautionModalData {
  color: #e22525;
}

.cautionModalHead {
  margin-bottom: 25px;
  padding: 10px 0;
  background: #e22525;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.cautionModalDataHead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.cautionModalDataBody {
  font-size: 13px;
}

.cautionModalDataBody p:first-child {
  margin-bottom: 30px;
}

#cautionModalClose {
  display: block;
  width: 360px;
  margin: 0 auto;
}

#cautionModalCloseBtn {
  position: absolute;
  top: -11px;
  right: -10px;
  width: 41px;
}

/* ラッパー */

.container {
  position: relative;
  width: 100%;
}


/*
メイン
-------------------------------------------*/

.topSec {
  width: 100%;
}

.topSecInner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

/* コンサート紹介 */
.topIntroDataTxt {
  width: 300px;
  font-size: 18px;
  /* font-weight: bold; */
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.02em;
}

/* PC タブ切替 */
.secScheduleBtnsWrap.is-pc .areaBox {
  display: block;
  width: calc(100% - 40px);
  max-width: 1240px;
  margin: 0 auto;
  background-color: transparent;
}

.secScheduleBtnsWrap.is-pc .tab {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.secScheduleBtnsWrap.is-pc .tab li {
  position: relative;
  cursor: pointer;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  padding: 30px 40px 40px 40px;
  border-radius: 30px;
  box-sizing: border-box;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea .areaName {
  display: none;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea.hide {
  display: none;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea ul li a.flag01:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 66.923076923%;
  height: 22.7227723%;
  background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag01.png) no-repeat left top;
  background-size: 100% auto;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea ul li a.flag02:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 66.923076923%;
  height: 22.7227723%;
  background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag02.png) no-repeat left top;
  background-size: 100% auto;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea ul li a.flag03:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 66.923076923%;
  height: 22.7227723%;
  background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag03.png) no-repeat left top;
  background-size: 100% auto;
}

.secScheduleBtnsWrap.is-pc .secScheduleBtns .topScheduleArea ul li a.flag04:after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 66.923076923%;
  height: 22.7227723%;
  background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag04.png) no-repeat left top;
  background-size: 100% auto;
}


/* SP タブ切替 */
@media only screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .ttlSub {
    padding: 5px 0 20px 20px;
    color: #fff;
    /* text-align: center; */
    font-size: 14px;
    font-weight: bold;
  }


  .secScheduleBtnsWrap.is-sp .areaBox {
    display: none;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea {
    position: relative;
    margin: 0 0 10px 0;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea.area06 {
    margin: 0;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea .areaName img {
    width: auto;
    height: 40px;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul {
    margin: 15px auto 20px;
    width: calc(100% - 30px);
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
  }
  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul:last-child {
    margin-bottom: 0;
  }
  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea.area06 ul {
    margin: 0 5.5% 0px;
    border-radius: 0 0 10px 10px;
  }


  /* リンクあり start */

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li {
    position: relative;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li img {
    width: 100%;
    /*max-height:90px;*/
    height: auto;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li:last-child {
    background-image: none;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li a {
    padding: 0px;
    display: block;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li:first-child a {
    padding: 0px;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li a img {
    outline: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li a.flag01:after {
    position: absolute;
    display: block;
    content: "";
    top: 0px;
    margin-top: 13px;
    right: 8.5%;
    max-width: 70px;
    width: 100%;
    max-height: 19px;
    height: 100%;
    background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag01.png) no-repeat left top;
    background-size: 100% auto;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li a.flag02:after {
    position: absolute;
    display: block;
    content: "";
    top: 0px;
    margin-top: 13px;
    right: 8.5%;
    max-width: 70px;
    width: 100%;
    max-height: 19px;
    height: 100%;
    background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag02.png) no-repeat left top;
    background-size: 100% auto;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li a.flag03:after {
    position: absolute;
    display: block;
    content: "";
    top: 0px;
    margin-top: 13px;
    right: 8.5%;
    max-width: 70px;
    width: 100%;
    max-height: 19px;
    height: 100%;
    background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag03.png) no-repeat left top;
    background-size: 100% auto;
  }

  .secScheduleBtnsWrap.is-sp .secScheduleBtns .topScheduleArea ul li a.flag04:after {
    position: absolute;
    display: block;
    content: "";
    top: 0px;
    margin-top: 13px;
    right: 8.5%;
    max-width: 70px;
    width: 100%;
    max-height: 19px;
    height: 100%;
    background: url(/kodomo/open/hiroba_concert/resources/images/winter24/production/pc/pages/home/icn_flag04.png) no-repeat left top;
    background-size: 100% auto;
  }
}



/* ------------------------------------------ */
/* 共通ページ下部
/* ------------------------------------------ */
.commonArea{
  padding: 100px 0 80px;
  background: url(/kodomo/open/english_concert/winter24/assets/images/top/pc/img_bg-goods.webp) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .commonArea {
    padding: 20px 0 40px;
    background: url(/kodomo/open/english_concert/winter24/assets/images/top/sp/img_bg-goods.webp) center top no-repeat;
    background-size: cover;
  }
}


/* ------------------------------------------ */
/* goodsエリア
/* ------------------------------------------ */
.goodsButtonAreaLink{
  display: block;
  max-width: 608px;
  margin: 0 auto;
}
/* 下層ページ */
.mainInner .goodsButtonArea{
  margin-top: 80px;
}

@media only screen and (max-width: 768px){
  .goodsButtonAreaLink{
    max-width: 430px;
  }
  /* 下層ページ */
  .mainInner .goodsButtonArea{
    margin-top: 40px;
  }
  .mainInner .goodsButtonArea .goodsButtonAreaLink{
    padding: 0 20px;
  }
}


/* ------------------------------------------ */
/* snsエリア
/* ------------------------------------------ */
.snsArea {
  max-width: 640px;
  margin: 115px auto 0;
}
.snsAreaHead{
  background-color: #E83829;
  position: relative;
  padding: 14px 0 14px 70px;
  border-radius: 20px 20px 0 0;
}
.snsAreaHeadIcon{
  position: absolute;
  top: -40px;
  left: -40px;
}
.snsAreaHeadTitle {
  display: block;
  max-width: 426px;
  margin: 0 auto;
}
.snsAreaBody {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 30px 0;
  background-color: #FFF;
  border-radius: 0 0 20px 20px;
}

.snsAreaLink{
  display: block;
  max-width: 60px;
}

@media only screen and (max-width: 768px) {
  .snsArea{
    margin: 30px auto 0;
  }
  .snsAreaHead{
    padding: 12px 0 14px 25px;
  }
  .snsAreaHeadIcon{
    max-width: 140px;
    top: -22px;
    left: -5px;
  }
  .snsAreaHeadTitle {
    max-width: 230px;
  }
  .snsAreaBody{
    padding: 20px;
    gap: 20px;
  }
  /* 下層ページ */
  .mainInner .snsArea{
    margin-top: 50px;
  }
  .snsAreaLink{
    max-width: 40px;
  }
}

@media only screen and (max-width: 460px){
  .snsAreaHead{
    padding: 12px 10px 14px 100px;
  }
}


/* ------------------------------------------ */
/* バナーエリア（ページ下部）
/* ------------------------------------------ */
.bnrArea{
  padding: 60px 0;
  background-color: #fff;
}
.bnrAreaLists{
  display: flex;
  justify-content: center;
  gap: 40px;
}
.bnrAreaList a{
  display: block;
  max-width: 180px;
}
@media only screen and (max-width: 768px) {
  .bnrArea{
    padding: 40px 0;
  }
  .bnrAreaLists{
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .bnrAreaList a{
    max-width: 100%;
  }
}

/* ------------------------------------------ */
/* 下層ページ共通
/* ------------------------------------------ */
.main {
  width: 100%;
}

.mainInner {
  position: relative;
  padding-bottom: 0;
  padding: 80px 0;
  color: #333;
}

.mainInner::before {
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100vw;
  height:100vh;
  background: url(/kodomo/open/english_concert/winter24/assets/images/common/pc/img_bg.webp) no-repeat center top;
  background-size: cover;
  content:"";
}

.underBody {
  border-radius: 20px;
  background: #fff;
  width: calc(100% - 40px);
  max-width: 960px;
  padding: 30px;
  box-sizing: border-box;
  margin: 0 auto;
}

.underHead {
  background-image: url(/kodomo/open/english_concert/winter24/assets/images/common/pc/img_mv-bg.webp);
  background-repeat: no-repeat;
  background-position: center top, center top;
  background-size: cover;
  width: 100%;
  height: 200px;
  line-height: 200px;
  text-align: center;
  position: relative;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.underDataHead{
  position: relative;
	border-bottom: 8px solid #93723E;
  padding: 0 0 10px 77px;
  box-sizing: border-box;
  color: #353D7F;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
}

.underDataHead::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: url(/kodomo/open/english_concert/winter24/assets/images/common/img_head-deco.svg) no-repeat;
  background-size: contain;
  background-position: center;
  margin-top: -5px;
}

.underBodyInner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  /* height: 600px;
  overflow-y: scroll; */
}
.underBodyInner::-webkit-scrollbar{
  display: none;
}
.ticketBodyInner{
  width: calc(100% - 80px);
}


@media only screen and (max-width: 768px){
  .underDataHead{
    border-bottom: 4px solid #93723E;
    max-width: 100%;
    padding: 0 0 10px 50px;
    font-size: 20px;
    letter-spacing: 0.8px;
    line-height: 1.46;
  }

  .underDataHead::before{
    width: 40px;
    height: 40px;
  }
}

.telLink {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

.stageHead {
  position: relative;
  width: 100%;
  height: 70px;
  padding: 0 15px;
  background: #caac7b;
  border-radius: 10px;
  box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}

.stageHead p {
  height: 70px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  line-height: 72px;
}

.stageHead p small {
  font-size: 20px;
}

.stageHeadDate {
  display: inline-block;
  margin-right: 5px;
}

.stageHead .mark {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 30px;
  margin: -13px 0 0 -40px;
}

.stageHead .unsold {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 70px;
  height: 25px;
  margin: -13px 0 0 -35px;
  background: url(/kodomo/open/english_concert/winter24/assets/images/schedule/icn_unsold.png) 0 0 no-repeat;
}

.stageHead:after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: url(/kodomo/open/english_concert/winter24/assets/images/schedule/icn_acc_open.png) 0 0 no-repeat;
}

.stageHead.open:after {
  background: url(/kodomo/open/english_concert/winter24/assets/images/schedule/icn_acc_close.png) 0 0 no-repeat;
}

.stageBodyLead {
  margin-bottom: 30px;
  padding: 20px 0 25px;
  background: #fff;
  border-radius: 10px;
}

.stageBodyLeadInner {
  width: 640px;
  margin: 0 auto;
  text-align: center;
}

.stageBodyLeadEncore {
  width: 347px;
  margin: 0 auto 12px;
  padding: 12px 0 11px;
  background: #fcf301;
  border-radius: 25px;
  font-size: 22px;
  font-weight: bold;
  line-height: 0;
  color: #fff;
  text-align: center;
}

.stageBodyLeadEncore img {
  width: 220px;
  margin: 0 auto;
  text-align: center;
}

.stageBodyLeadEncoreTxt {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: bold;
}

.stageBodyLeadEncoreTxt img {
  padding: 0 3px 3px 0;
  vertical-align: middle;
}

.stageBodyLeadEncoreTxt .space {
  display: none;
}
.stageBodyTbl .tbl {
  width: 100%;
  table-layout: fixed;
}

.stageBodyTbl .tblHead {
  width: 232px;
  padding: 15px;
  background: #f3fbff;
  border-right: 2px solid #13489d;
  border-bottom: 2px solid #13489d;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: bold;
  color: #13489d;
  vertical-align: top;
}

.stageBodyTbl .tblBody {
  width: 548px;
  padding: 15px;
  background: #fff;
  border-bottom: 2px solid #0086c9;
  box-sizing: border-box;
  font-size: 20px;
  word-wrap: break-word;
}

.stageBodyTbl .tblBody .tblMap img.is-pc {
  display: inline;
}

.stageBodyTbl .tblBody .tblMap img.is-sp {
  max-width: 90px;
}

.stageBodyTbl .tblBody .tblTxt {
  margin-top: 10px;
  font-size: 16px;
}

.stageBodyTbl .tblRow:last-child .stageBodyTblHead,
.stageBodyTbl .tblRow:last-child .stageBodyTblBody {
  border-bottom: none;
}

.stageBodyTbl .tbl .timeList li {
  position: relative;
}

.stageBodyBtn {
  width: 460px;
  margin: 20px auto 0;
}

.stageBodyBtn a {
  display: block;
}

.excuse {
  color: #e22525;
}


/* ------------------------------------------------------- */
/* チケットページ
/* ------------------------------------------------------- */

.ticketBody {
  padding: 0 0 80px;
}
.ticketBodyInner {
  padding-top: 40px;
}
.ticketHeadLabel{
  border-radius: 20px 20px 0 0;
  padding: 18px 0;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  letter-spacing: 1.2px;
}
.memberHeadLabel{
  background: #E4000F;
}
.regularHeadLabel {
  background: #003d8c;
}
.memberDataBody {
  margin-top: 20px;
}
.notesDataBody {
  font-size: 18px;
  padding: 0 0 20px 18px;
}
.memberNotesListItem:not(:first-of-type){
  margin-top: 20px;
}
.memberNotesListTitle{
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 0.8px;
}
.memberNotesListText{
  padding-left: 1.6em;
  font-size: 16px;
  margin-top: 5px;
  line-height: 1.65;
}

.memberBtn {
  width: 460px;
  margin: 0 auto 54px;
}

/* .pastMember {
padding: 0 20px;
@media only screen and (max-width: $sp) {
padding: 0;
}
} */

.pastMemberHead {
  cursor: pointer;
}

.pastMemberBody {
  overflow: hidden;
}

.memberData {
  margin-top: 100px;
}

.contact {
  margin-top: 100px;
}

.contactBody{
  padding: 25px 0 0;
}

.contactHead {
  padding: 8px 0 9px;
  background: #00579a;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.contactMainData{
  margin-top: 10px;
}
.contactMainData:not(:first-child){
  margin-top: 35px;
}
.contactMainDataHead{
  font-weight: bold;
  font-size: 20px;
  position: relative;
  padding-left: 14px;
  line-height: 1.6;
  letter-spacing: 0.8px;
}

.contactMainDataHead:before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 100%;
  background: #9ed8f6;
  border-radius: 20px;
}

.contactMainDataBody{
  font-size: 18px;
  max-width: 855px;
  margin: 15px auto 0;
}
.contactMainDataBody .telLink{
  display: block;
  margin: 0 auto;
  width: fit-content;
  font-size: 50px;
  color: #333;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 2px;
}
.contactMainDataBody span{
  text-align: center;
  display: block;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.contactMainDataBodyList{
  margin-top: 38px;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
}
.contactMainDataBodyList li:not(:first-child){
  margin-top: 5px;
}
.contactMainDataLink {
  color: #2a80ff !important;
  text-decoration: underline !important;
  font-size: 24px;
  font-weight: bold;
  word-break: break-all;
}

.aboutApp{
  background-color: #fffbbe;
  border-radius: 10px;
  text-align: center;
  padding: 30px;
  margin: 100px auto 0;
  box-sizing: border-box;
}

.aboutAppTitle{
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
}
.aboutAppText{
  font-size: 16px;
  margin-top: 5px;
  margin-top: 20px;
}
.aboutAppDate{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.8px;
  margin-top: 20px;
}
.aboutAppLink{
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 22px 0;
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  margin-top: 20px;
}
/* 会員 */
.ticketMember{
  .aboutAppLink{
    background-color: #0080d9;
    box-shadow: 0px 6px 0px 0px rgba(0, 78, 151);
    color: #fff;
  }
  .aboutAppLinkArrow::after{
    border-color: transparent transparent transparent #0080d9;
  }
}
/* 一般 */
.ticketRegular{
  .aboutAppLink{
    background-color: #e02622;
    box-shadow: 0px 6px 0px 0px rgba(173, 25, 22);
    color: #fff;
  }
  .aboutAppLinkArrow::after{
    border-color: transparent transparent transparent #e02622;
  }
}
.aboutAppLink:hover{
  text-decoration: none;
}
.aboutAppLink.comingSoon{
  position: relative;
  pointer-events: none;
  color: #fff;
}

.aboutAppLink.comingSoon::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  opacity: 0.5;
  border-radius: 10px;
  border-bottom: 6px solid rgba(51,51,51,0.5);
  z-index: 1;
}
.aboutAppLink.comingSoon::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 137px;
  height: 46px;
  content: "";
  background: url(/kodomo/open/english_concert/winter24/assets/images/common/img_coming-soon.png) 0 0 no-repeat;
  background-size: contain;
  z-index: 2;
}
.aboutAppLink:hover{
  box-shadow: none;
  transform: translateY(6px);
  color: #fff;
}
.aboutAppLink:visited{
  color: #fff;
}
.aboutAppLinkArrow{
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.aboutAppLinkArrow::before{
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
}
.aboutAppLinkArrow::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 6px 0 6px 9px;
}

@media only screen and (max-width: 768px){
  .memberData{
    margin-top: 50px;
    padding: 0 15px;
  }
  .memberDataBody {
    margin-top: 10px;
  }
  .ticketLead{
    padding: 20px 15px 15px;
  }
  .aboutAppLink{
    font-size: 19px;
    padding: 13px 0;
    max-width: 282px;
    margin-top: 10px;
  }
  /* 会員 */
  .ticketMember{
    .aboutAppLink{
      box-shadow: 0px 4px 0px 0px rgba(0, 78, 151);
    }
    .aboutAppLinkArrow::after{
      border-color: transparent transparent transparent #0080d9;
    }
  }
  /* 一般 */
  .ticketRegular{
    .aboutAppLink{
      box-shadow: 0px 4px 0px 0px rgba(173, 25, 22);
    }
    .aboutAppLinkArrow::after{
      border-color: transparent transparent transparent #e02622;
    }
  }
  .aboutAppLinkArrow{
    right: 8px;
  }
  .aboutAppLinkArrow::before{
    width: 16px;
    height: 16px;
  }
  .aboutAppLinkArrow::after{
    right: 4px;
    border-width: 4px 0 4px 6px;
  }
  .contactMainDataBody span{
    font-weight: 500;
  }
  .aboutAppDate{
    font-size: 16px;
    margin-top: 10px;
  }
}



/*sp*/
@media only screen and (max-width: 768px) {

  img {
    max-width: 100%;
    height: auto;
  }

  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }

  .head {
    position: relative;
    min-width: 0;
    z-index: 9;
  }

  /*ヘッター入替え作業後追加*/
  .head.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
  }

  .headInner {
    width: auto;
    padding: 0px;
    /*一時的につけてる*/
  }

  .foot {
    min-width: 0;
    background: #fff;
  }

  .footInner {
    width: auto;
  }

  #cautionArea {
    min-width: 0;
  }

  #cautionArea .cautionAreaBox {
    width: 98%;
    margin: 6px auto;
    padding: 3%;
    border-width: 2px;
  }

  #cautionArea .cautionHead {
    font-size: 14px;
  }

  #cautionArea .cautionTxt a {
    background: url(/global/english-concert/summer/images/top/arrow_news.png) 4px 3px no-repeat;
    background-size: 5px 8px;
    font-size: 12px;
    padding-left: 16px;
  }

  #cautionModal {
    width: 90%;
    height: auto;
    margin-top: auto;
    margin-left: -45%;
    padding: 9% 5.5% 8%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  #cautionModalLink {
    width: 80%;
  }

  .cautionModalHead {
    margin-bottom: 15px;
    padding: 8px 0;
    font-size: 16px;
  }

  .cautionModalDataHead {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }

  .cautionModalDataBody {
    font-size: 12px;
  }

  .cautionModalDataBody p:first-child {
    margin-bottom: 20px;
  }

  #cautionModalClose {
    width: 100%;
    max-width: 290px;
  }

  #cautionModalCloseBtn {
    top: 0.5%;
    right: 1.5%;
    width: 31px;
  }

  .container {
    min-width: 100%;
    max-width: 100%;
  }

  .pageHome .container {
    overflow-x: hidden;
  }


  .heroInner {
    width: 100%;
  }

  .heroImg {
    position: relative;
    width: auto;
    background-size: contain;
  }

  .topBnrMovieHead {
    width: 90%;
    margin: 0 auto 0%;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
  }

  .topBnrMovieBody {
    position: relative;
    width: 93%;
    margin: 0 auto;
    z-index: 2;
  }

  .topBnrMovieTxt {
    margin-top: 2.5%;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
  }

  .topSec {
    min-width: 0;
    position: relative;
  }

  .topSecInner {
    width: auto;
    padding: 0 3.5% 12%;
  }

  .topScheduleBtn {
    width: 75%;
    margin: 5% auto 0;
  }

  .pref {
    width: 93%;
    margin: 0 auto 7%;
    padding: 0;
  }

  .prefList01 {
    margin-bottom: 4%;
  }

  .prefData {
    width: auto !important;
  }

  .prefDataItem {
    float: left;
    width: 32%;
    margin-right: 1%;
    margin-bottom: 2%;
  }

  .prefDataItem .mark {
    top: 0%;
    right: 4.5%;
    width: 45%;
    height: 0;
    padding-top: 12%;
  }

  .app {
    border-radius: 10px;
  }

  .appInner {
    display: block;
    padding: 5% 3%;
    width: 100%;
  }

  .appHead {
    display: block;
    width: 100%;
    margin: 0 auto 4%;
    padding-right: 0;
    text-align: center;
    font-size: 18px;
  }

  .appBody {
    display: block;
  }

  .buyListItem {
    padding-bottom: 25px;
  }

  .buyListItemTxt {
    position: relative;
    bottom: auto;
    margin-top: 3px;
    text-align: left;
  }

  .buyListItemTxt a {
    font-size: 12px;
  }

  .buyListItemTxt a:hover {
    text-decoration: underline;
  }

  .buyListItem:before {
    background-size: 68%;
    bottom: 4px;
  }

  .under {
    width: 100%;
    margin: 30px auto 0;
  }

  .underBody {
    padding: 15px 10px;
    border-radius: 20px;
    margin: 0 auto;
    width: 100%;
  }

  .underBodyInner {
    width: auto;
  }
  .ticketBodyInner{
    padding: 0 0 30px;
  }
  .telLink {
    pointer-events: auto;
    cursor: pointer;
  }

  .scheduleImg {
    padding-top: 0;
    margin-bottom: 3.5%;
  }

  .scheduleNote {
    margin-bottom: 20px;
    padding-top: 5px;
  }

  .scheduleNote p {
    display: block;
    font-size: 12px;
    color: #fff;
  }

  .scheduleBtnList {
    position: relative;
    margin-bottom: 25px;
  }

  .scheduleBtnListItem {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 4%;
  }

  .scheduleBtnListItem:nth-child(2n) {
    margin-right: 0;
    margin-bottom: 4%;
  }

  .scheduleBtnListItem:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .stageHead {
    height: auto;
    padding: 15px 10px 15px;
  }

  .stageHead p {
    height: auto;
    font-size: 15px;
    line-height: 1;
  }

  .stageHead p small {
    font-size: 12px;
  }

  .stageHead .mark {
    right: 13%;
    left: auto;
    width: 43px;
    height: 13px;
    margin: -7px 0 0 0;
    background-size: contain;
  }

  .stageHead .mark.status {
    top: 17px;
    margin: 0;
  }

  .stageHead .unsold {
    top: 20px;
    right: 18%;
    left: auto;
    width: 43px;
    height: 17px;
    background-size: contain;
  }

  .stageHead:after {
    right: 9px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background-size: contain;
  }

  .stageHead.open:after {
    background-size: contain;
  }

  .stageBodyLead {
    margin-bottom: 20px;
    padding: 5% 0;
  }

  .stageBodyLeadInner {
    width: auto;
    margin: 0 auto;
    padding: 0 20px;
  }

  .stageBodyLeadEncore {
    width: 220px;
    height: auto;
    margin: 0 auto 8px;
    padding: 10px 0;
    font-size: 13px;
    line-height: 1;
  }

  .stageBodyLeadEncore img {
    width: 150px;
  }

  .stageBodyLeadEncoreTxt {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .stageBodyLeadEncoreTxt img {
    width: 15px;
    height: 15px;
    padding: 0 3px 5px 0;
  }

  .stageBodyLeadEncoreTxt .space {
    display: inline-block;
  }
  .stageBodyTbl .tblHead {
    width: 29%;
    padding: 10px;
    font-size: 13px;
  }

  .stageBodyTbl .tblBody {
    width: 71%;
    padding: 10px;
    font-size: 13px;
  }

  .stageBodyTbl .tblBody .tblMap img.is-pc {
    display: none;
  }

  .stageBodyTbl .tblBody .tblTxt {
    margin-top: 5px;
    font-size: 13px;
  }

  .stageBodyTbl .tbl .timeList li {
    margin-bottom: 2px;
  }

  .stageBodyBtn {
    width: 86%;
  }

  .mainInner {
    padding: 30px 15px 80px;
  }

  .mainInner::before {
    background: url(/kodomo/open/english_concert/winter24/assets/images/common/sp/img_bg.webp) no-repeat center top;
    background-size: cover;
  }

  .underHead {
    background-image: none;
    text-shadow: 2px 2px 0px #353D7F;
    font-size: 28px;
    height: 40px;
    line-height: 40px;
    letter-spacing: 1.12px;
  }

  .ticketMember .container,
  .ticketRegular .container,
  .faq .container {
    background-color: #0162b7;
    background: url(/kodomo/open/english_concert/winter24/assets/images/common/sp/img_mv.webp) no-repeat;
    background-size: contain;
    padding-top: 38.465%;
  }

  .memberNotesListItem:not(:first-of-type) {
      margin-top: 10px;
      line-height: 1.4;
  }
  .memberNotesListTitle{
      font-size: 16px;
      letter-spacing: 0.64px;
  }
  .memberNotesListText{
      font-size: 14px;
      margin-top: 5px;
      padding-left: 1.2em;
  }
  .memberBtn {
    width: 90%;
    margin: 0 auto 9%;
  }

  .contact {
    margin-top: 50px;
    padding: 0 15px;
  }

  .contactBody{
    padding: 13px 0 0;
  }

  .contactHead {
    border-radius: 25px;
    font-size: 14px;
    line-height: 1;
    padding: 13px 0;
  }

  .contactMainDataBody{
    font-size: 14px;
    padding-left: 10px;
    margin-top: 10px;
  }
  .contactMainDataBody .telLink{
    font-size: 36px;
    letter-spacing: 0px;
  }
  .contactMainDataHead{
    font-size: 16px;
    line-height: 1.4;
    padding-left: 10px;
    letter-spacing: 0.64px;
  }

  .contactMainData:not(:first-of-type){
    margin-top: 20px;
  }
  .contactMainDataBodyList{
    margin-top: 15px;
    font-size: 12px;
  }
  .contactMainDataHead:before{
    width: 6px;
    border-radius: 20px;
  }

  .contactMainDataLink {
    font-size: 14px;
    font-weight: normal;
  }
  .memberHeadLabel {
    border-radius: 20px 20px 0 0;
    font-size: 20px;
    padding: 10px 0;
    letter-spacing: 0.8px; 
  }
  .ticketBody{
    padding: 0;
  }

  .introHead {
    padding-top: 3%;
  }

  .introHead:before {
    display: none;
    background: none;
  }

  .introBody {
    padding: 4% 3.5% 6%;
  }

  .introBtn {
    margin-bottom: 10%;
    text-align: center;
  }


  .introBtnItem:nth-child(2n) {
    margin-right: 0;
  }

  .introData {
    margin-bottom: 7%;
  }

  .introDataHead {
    padding-bottom: 6px;
    background-size: auto 6px;
  }


  .introDataBody {
    width: auto;
  }

  .underBtn {
    margin-top: 10%;
    padding: 0;
    background: none;
    border-radius: 0px;
  }

  .underBtnInner {
    width: auto;
  }

  .underBtnListItem {
    float: none;
    width: 84%;
    margin: 0 auto;
  }

  .underBtnListItem:first-child {
    margin-bottom: 5%;
  }

  .underBtnListItem:last-child {
    margin: 0 auto;
  }

  .headMenu.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
  }

  .aboutApp{
    border-radius: 10px;
    width: calc(100% - 30px);
    margin: 50px auto 0;
    padding: 10px 10px 18px;
  }

  .aboutAppTitle{
      font-size: 20px;
      letter-spacing: 0.8px; 
  }

  .aboutAppText{
      font-size: 14px;
      margin-top: 10px;
  }
  .aboutAppLink.comingSoon::before{
    border-radius: 5px;
    border-bottom: 3px solid rgba(51,51,51,0.5);
  }
  .aboutAppLink.comingSoon::after{
      width: 86px;
      height: 28px;
  }
  .aboutAppLink:hover{
      transform: translateY(3px);
  }

}



/*デフォルトのTOPボタン*/
.btPagetop.show {
  display: block !important;
}

.pageTop.is-pc {
  display: none !important;
}

/*パンくず消す*/
.topicBox.clearfix {
  display: none !important;
}

/*テンプレヘッター消す*/
#trackingArea.track {
  display: none !important;
}



/*twitter 埋め込み 201805*/




/*災害用スタイル*/
.hirobaConcertWrapper figure {
  margin: 0;
  padding: 0;
}

.hirobaConcertNews .wrapper {
  padding-right: 0px;
  padding-left: 0px !important;
}

.hirobaConcertNews.show {
  display: block;
}

@media only screen and (max-width: 768px) {
  .hirobaConcertWrapper .hirobaConcertNews.show {
    position: relative;
    top: 35px;
  }
}

.hirobaConcertNews .wrapper {
  max-width: 980px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
  position: relative;
}

.hirobaConcertNews .wrapper .container {
  min-height: 77px;
  position: relative;
}

.hirobaConcertNews .wrapper .container:before {
  content: "";
  display: block;
  width: 100%;
  min-height: 77px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #C10002;
  z-index: 2;
}

.hirobaConcertNews .wrapper .container .inner {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hirobaConcertNews .wrapper .container .inner h2 {
  display: inline-block;
  width: 150px;
  vertical-align: middle;
  height: 100%;
  padding: 1px 0;
  margin: -1px 0;
  min-height: 77px;
  background: url(/kodomo/open/hiroba_concert/resources/images/concert/pc/common/bg-news.svg) right center no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
}

@media all and (-ms-high-contrast: active),
(-ms-high-contrast:none) {
  .hirobaConcertNews .wrapper .container .inner h2 {
    -webkit-background-size: 600% !important;
    background-size: 600% !important;
  }
}

.hirobaConcertNews .wrapper .container .inner h2 span {
  position: absolute;
  top: 50%;
  margin-top: -29px;
}

.hirobaConcertNews .wrapper .container .inner h2 a {
  margin-top: 10px;
  display: block;
  text-align: center;
  background: #fff url(/kodomo/open/hiroba_concert/resources/images/concert/pc/common/arrow_alart.png) 15px center no-repeat;
  width: 112px;
  line-height: 25px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  text-decoration: none;
}

.hirobaConcertNews .wrapper .container .inner h2 a:hover {
  opacity: 0.8;
}

.hirobaConcertNews .wrapper .container .text {
  padding: 10px 0 10px 0;
  display: inline-block;
  width: 70%;
  width: calc(100% - 160px);
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.hirobaConcertNews .wrapper .container .text li {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #6c6c6c;
}

.hirobaConcertNews .wrapper .container .text li:before {
  content: "・";
}

.hirobaConcertNews .wrapper .container .text li a {
  margin-left: 10px;
  color: #e60012;
  text-decoration: none;
  font-weight: bold;
}

.hirobaConcertNews .wrapper .container .text li a:hover {
  text-decoration: underline;
}

.hirobaConcertNews .sp-in {
  display: none;
}

@media only screen and (max-width: 768px) {
  .hirobaConcertNews .sp-in {
    display: block !important;
  }

  .hirobaConcertNews .pc {
    display: none !important;
  }

  .hirobaConcertNews .wrapper .container .inner h2 {
    width: 100px;
  }

  .hirobaConcertNews .wrapper .container .inner h2 a {
    width: 77px;
    padding-left: 5px;
    font-size: 11px;
    background: #fff url(/kodomo/open/hiroba_concert/resources/images/concert/pc/common/arrow_alart.png) 8px center no-repeat;
  }

  .hirobaConcertNews .wrapper .container .text {
    width: 62%;
    width: calc(100% - 105px);
  }

  .hirobaConcertNews .wrapper .container .text li {
    font-size: 13px;
  }
}

/*災害用style*/

/*topページ下部チケットページ導線部分*/
.ticketLink {
  text-align: left;
  padding-bottom: 10px;
}

.ticketLink a {
  font-size: 16px;
  text-decoration: underline;
  color: #00f;
}

.buyListItem {
  position: relative;
  padding-bottom: 60px;
}

.buyListItem--first {
  padding-bottom: 60px;
}

.buyListItem:before {
  bottom: 20px;
}

.buyListItem--last:before {
  display: none;
}


@media only screen and (max-width: 768px) {
  .ticketLink a {
    font-size: 12px;
  }

  .buyListItem {
    padding-bottom: 50px;
  }

  .ticketLink {
    text-align: left;
    padding: 15px 0 10px;
  }

  .ticketLink--02 {
    text-align: left;
    padding: 0px 0 40px;
  }
}


@media only screen and (max-width: 768px) {
  .headMenuInner {
    border-bottom: none;
    z-index: 99;
  }
  .headMenu.fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
  }
}


/* ------------------------------------------ */
/* チケットページ遷移エリア
/* ------------------------------------------ */
.topBnrArea.common{
  max-width: 688px;
  margin: 60px auto 0;
  padding: 0 20px 0 20px;
  border-radius: 20px;
  box-sizing: border-box;
  .topBnrAreaTop{
    position: relative;
  }
  .topBnrAreaStatus{
    position: absolute;
    left: -30px;
  }
  .topBnrAreaTarget {
    margin-left: 70px;
    font-size: 36px;
  }
  .topBnrAreaTargetText{
    margin-left: 40px;
    min-width: 268px;
    span{
      font-size: 30px;
    }
  }
  .topBnrAreaNote{
    font-size: 16px;
    margin-left: 0;
    margin-top: 5px;
  }
  .topBnrAreaModal{
    width: fit-content;
    padding: 2px 0 7px 0;
    font-size: 24px;
  }
  .topBnrAreaModal::after {
    right: 5px;
    border-top: 6px solid transparent;
    border-left: 9px solid #014099;
    border-bottom: 6px solid transparent;
  }
  .topBnrAreaModal::before {
    width: 22px;
    height: 22px;
  }
  .topBnrAreaModalButton{
    font-size: 24px;
  }
  .topBnrAreaModalButton::before{
    width: 22px;
    height: 22px;
  }
  .topBnrAreaModalButton::after {
    border-top: 6px solid transparent;
    border-left: 9px solid #014099;
    border-bottom: 6px solid transparent;
  }
  .topBnrAreaDate {
    text-align: center;
    margin-right: inherit;
    min-width: 100%;
    padding: 0;
  }
  .topBnrAreaDate::before{
    display: none;
  }
  .topBnrAreaBtnInner {
    flex-direction: column;
  }
  .topBnrAreaBtnWrapper {
    padding: 9px 0 15px;
  }
  .topBnrAreaBtns{
    gap: 8px;
    margin-top: 4px;
  }
  .topBnrAreaBtn{
    width: 300px;
  }
  .topBnrAreaPlayguide {
    margin: 20px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .topBnrArea.common{
    width: calc(100% - 40px);
    border-radius: 10px;
    margin: 0 auto;
    padding: 5px 10px 0;
    .topBnrAreaStatus {
      left: -15px;
    }
    .topBnrAreaModal{
      font-size: 12px;
      padding: 0;
    }
    .topBnrAreaTarget {
      margin-left: 60px;
      gap: 3px;
    }
    .topBnrAreaTargetText{
      font-size: 18px;
      margin-left: -2px;
      min-width: 132px;
      span{
        font-size: 15px;
      }
    }
    .topBnrAreaDate {
      margin-right: 0;
    }
    .topBnrAreaTop{
      padding: 0;
      min-height: 40px;
    }
    .topBnrAreaBottom{
      margin-top: 5px;
    }
    .topBnrAreaBtnWrapper{
      padding: 6px 0 9px;
    }
    .topBnrAreaModal::after {
      right: 3px;
      border-top: 3px solid transparent;
      border-left: 5px solid #014099;
      border-bottom: 3px solid transparent
    }
    .topBnrAreaModal::before {
      width: 12px;
      height: 12px;
    }
    .topBnrAreaModalButton{
      font-size: 12px;
    }
    .topBnrAreaBtns {
      width: calc(100% - 20px);
      gap: 5px;
      margin-top: 0;
    }
    .topBnrAreaBtn{
      width: 150px;
    }
    .topBnrAreaNote{
      font-size: 10px;
      margin-top: 0;
    }
    .topBnrAreaPlayguide {
      width: calc(100% - 14px);
      margin: 12px auto 0;
    }
    .topBnrAreaModalButton::before{
      width: 11px;
      height: 11px;
    }
    .topBnrAreaModalButton::after {
      border-top: 3px solid transparent;
      border-left: 4px solid #014099;
      border-bottom: 3px solid transparent;
      right: 3px;
    }
  }
}

/* --------------------------------------- */
/* チケット料金（チケットページ会員一般共通）
/* --------------------------------------- */
.ticketArea{
  background: url(/kodomo/open/english_concert/winter24/assets/images/ticket_member/pc/img_bg-ticket.jpg) no-repeat;
  background-size: cover;
  padding: 20px;
}
.ticketArea > :nth-child(1 of .ticketAreaContent){
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 40px 10px;
  .ticketAreaContentImg{
      margin-top: 40px;
  }
}
.ticketAreaContentImg{
  display: block;
  margin-top: 20px;
}
.ticketAreaContentImg.soldOut{
  position: relative;
}
.ticketAreaContentImg.soldOut::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36%;
  max-width: 408px;
  height: 204px;
  background: url(/kodomo/open/english_concert/winter24/assets/images/top/img_soldout.png) no-repeat;
  background-size: contain;
  background-position: 10%;
  transform: translate(-50%, -50%);
  margin-top: 2%;
}
.ticketAreaContentTitle{
  width: calc(100% - 60px);
  max-width: 608px;
  margin: 0 auto;
}

.ticketAreaContentNotes{
  padding: 0 20px;
  margin-top: 10px;
}

.ticketAreaContentNotes li{
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
  position: relative;
}
.ticketAreaContentNotes li::before{
  content: "※";
}
.ticketAreaContentNotes .txtRed{
  font-size: 16px;
  letter-spacing: 0.64px;
  font-weight: 700;
}

@media only screen and (max-width: 768px){
  .ticketArea{
    background: url(/kodomo/open/english_concert/winter24/assets/images/ticket_member/sp/img_bg-ticket.jpg) no-repeat;
    background-size: cover;
    padding: 10px;
  }
  .ticketArea > :nth-child(1 of .ticketAreaContent) {
      border-radius: 10px;
      padding: 30px 5px;
      .ticketAreaContentImg{
          margin-top: 20px;
      }
  }
  .ticketAreaContentImg{
    margin-top: 10px;
  }
  .ticketAreaContentImg.soldOut::after{
      width: 65%;
  }
  .ticketAreaContentNotes{
      padding: 0 10px;
  }

  .ticketAreaContentNotes li,
  .ticketAreaContentNotes .txtRed{
      font-size: 10px;
  }
}


/* ---------------------------------------- */
/* 会員価格のご案内 */
/* ---------------------------------------- */
.memberPrice {
  border-radius: 10px;
  border: 2px solid #00579a;
  padding: 20px;
  margin-top: 30px;
}

.memberPriceTitle {
  color: #00579a;
  font-size: 20px;
  font-weight: bold;
  text-indent: -0.5em;
}

.memberPriceList{
  font-size: 16px;
  margin-top: 10px;
}

.memberPriceListItem{
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
}

.memberPriceListItem:not(:first-of-type){
  margin-top: 5px;
}
.memberPriceLink{
  display: block;
  width: fit-content;
  margin-left: auto;
  font-size: 14px;
  color: #0066CC !important;
  text-decoration: underline !important;
}
.ticketMember .memberPriceLink{
  display: none;
}
@media only screen and (max-width: 768px) {
  .memberPrice{
      margin: 20px 0 0;
      padding: 10px;
  }
  .memberPriceList{
      font-size: 12px;
      margin-top: 5px;
  }
  .memberPriceListItem{
    font-size: 12px;
  }
  .memberPriceLink{
    margin-top: 5px;
  }
}


/* --------------------------------------- */
/* 対応外ページ
/* --------------------------------------- */
#footer_vueroot{
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .footer__globalFooter .btPagetop{
    right: 10px;
  }
}
@media only screen and (min-width: 768px){
  .footer__globalFooter{
    margin-left: 0;
    margin-right: 0;
  }
}

/* --------------------------------------- */
/* アニメーション
/* --------------------------------------- */
.animated {
  opacity: 0;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes slideInTop {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Pop */

@-webkit-keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  80% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  80% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes shake {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  20% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  40% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  60% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  80% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes shake {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  20% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  40% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  60% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  80% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/* List */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
}

/* subTitle */

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* mainTitle */

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
