/*
  reset
-------------------------------*/
html {
  font-size: 62.5%;
  width: 100%;
}
body {
  text-align: justify;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  width: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
caption, th {
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
small {
  font-size: 100%;
}
q:before, q:after {
  content: '';
}
abbr, acronym {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
input, textarea, select {
  font-size: 100%;
}
legend {
  color: #000;
}
img {
  vertical-align: bottom;
  width: 100%;
}
main {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
/*
  base
-------------------------------*/
body {
  color: #000;
  font-family: "M PLUS 1p", sans-serif, 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  overflow-y: auto;
  font-style: normal;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
.pc {
  display: none !important;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body:has(.nav__toggle.js-toggle.active){
    overflow-y: hidden;
  }  
}
/*
  gnav
-------------------------------*/
/* toggle btn */
.nav__toggle {
  background: url(../images/icon_heart_pink.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  display: block;
  height: 38px;
  margin: .5em 1em 0;
  position: relative;
  right: 0;
  top: 0;
  width: 38px;
  z-index: 1000;
  transition: all 0.4s;
  filter: drop-shadow(0px 0px 5px #F7F7F7);
}
.nav__toggle span {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: #fff;
  border-radius: 4px;
  display: block;
  height: 2px;
  left: 25%;
  position: absolute;
  width: 50%;
}
.nav__toggle span:nth-of-type(1) {
  top: 12px;
}
.nav__toggle span:nth-of-type(2) {
  top: 18px;
}
.nav__toggle span:nth-of-type(3) {
  top: 24px;
}
.nav__toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
.nav__toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.nav__toggle:hover{
  opacity: 0.6;
}
/* nav contents*/
.nav__contents {
  -webkit-transition: opacity .3s linear, background .3s linear, right .3s linear;
  transition: opacity .3s linear, background .3s linear, right .3s linear;
  /* background: rgba(112, 58, 255, 0.85); */
  background-color: rgba(255, 215, 230, 1);
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
}
.nav__contents__wrap {
  height: 100vh;
  overflow-y: scroll;
  overscroll-behavior: contain;
}
.gnav {
  color: #FF4B69;
  padding: 5em 2em;
  height: 100%;
}
.gnav__item__list {
  margin-bottom: 1em;
}
.gnav__item {
  width: 100%;
}
.gnav__item a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: .5em;
  transition: all 0.3s;
  font-weight: 900;
}
.gnav__item a:hover{
  color: #F7F7F7;
}
.gnav__item a::before {
  -webkit-mask-image: url(../images/icon_heart_blue.svg);
  mask-image: url(../images/icon_heart_blue.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  background-color: #FF4B69;
  /* background: url(../images/icon_heart_blue.svg) no-repeat center; */
  background-size: contain;
  content: '';
  display: block;
  height: 1em;
  margin-right: 1em;
  width: 1em;
  transition: all 0.4s;
}
.gnav__item a:hover::before{
  background-color: #F7F7F7;
  /* background: url(../images/icon_heart_pink-2.svg) no-repeat center; */
}

/* toggle active */
.js-toggle.active + .nav__contents {
  opacity: 1;
  right: 0;
  visibility: inherit;
  z-index: 3;
}
.js-toggle-mask.active {
  position: fixed;
}
@media (min-width: 768px) {
  /* toggle btn */
  .nav__toggle {
    height: 70px;
    margin: 0;
    position: fixed;
    right: 20px;
    top: 130px;
    width: 70px;
  }
  .nav__toggle span {
    height: 3px;
  }
  .nav__toggle span:nth-of-type(1) {
    top: 24px;
  }
  .nav__toggle span:nth-of-type(2) {
    top: 32px;
  }
  .nav__toggle span:nth-of-type(3) {
    top: 40px;
  }
  .nav__toggle.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .nav__toggle.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
  /* nav contents*/
  .nav__contents {
    background: none;
    opacity: 0;
    right: 0;
    visibility: hidden;
    width: auto;
    z-index: -1;
  }
  .nav__contents__wrap {
    height: auto;
    overflow: auto;
  }
  .gnav {
    background-color: rgba(255, 215, 230, 0.85);
    margin: 130px 1em 0 0;
    padding: 3.5em 3.5em 1.5em 1em;
    border-radius: 30px;
    height: calc(100vh - 140px);
  }
  .gnav__item__list {
    margin-bottom: 0;
    max-height: 100%;
    overflow-y: auto;
    -ms-overflow-style: none;
  }
  .gnav__item__list::-webkit-scrollbar{
    display: none;
}

}
/*
  header
-------------------------------*/
.header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  background-color: #FF919B;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.hd__contents {
  height: 100%;
  margin: 5px 25px;
}
.hd__contents__row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-end;
}
.hd__contents__ttl {
  margin-top: .3em;
  width: 72px;
  transition: all 0.3s;
}
.hd__contents__ttl-img {
  animation-duration: 2000ms;
  animation-name: bright;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes bright {
  0% {
    filter: brightness(1.1);
  }
  50% {
    filter: brightness(1.5);
  }
  100% {
    filter: brightness(1.1);
  }
}
.hd__contents__ttl:hover{
  opacity: 0.6;
}
.tickets__btn, .notes__btn {
  background-color: #FF4B69;
  border: solid 2px #F7F7F7;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 120%;
  height: 4rem;
  overflow: hidden;
  vertical-align: middle;
}
.tickets__btn a, .notes__btn a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 1.5em;
  z-index: 4;
}
.notes__btn {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: .5em 0 0 1em;
  text-align: center;
  z-index: 4;
}
.sns__contents {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 1em 2em;
}
.sns__contents__list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: bottom;
}
.sns__contents__list li {
  color: #fff;
  height: 38px;
  margin-right: .5em;
  width: 38px;
  z-index: 4;
  transition: all 0.3s;
}
.sns__contents__list li:hover{
  opacity: 0.6;
}
.sns__contents__list a {
  display: block;
  height: 100%;
  width: 100%;
}
.sns__contents__list .instagram {
  background: url(../images/logo_insta.svg) no-repeat center;
  background-size: 60%;
}
.sns__contents__list .twitter {
  background: url(../images/logo_twitter.svg) no-repeat center;
  background-size: 60%;
}
.sns__contents__list .line {
  background: url(../images/logo_line.svg) no-repeat center;
  background-size: 60%;
}
.sns__contents__list li:last-of-type {
  margin-right: 0;
}
.logo__contents__list li img {
  margin: 10px 0;
} 
.logo__contents__list .niconico{
  width: 70%;
}
.place__logo__list li{
  transition: all 0.3s;
}
.place__logo__list li:hover{
  opacity: 0.6;
}
@media (min-width: 768px) {
  .hd__contents__row.logoList {
    align-items: center;
  }
  .hd__contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin: 0 2em;
    padding: 10px 0;
    width: 100%;
  }
  .hd__contents__ttl {
    margin-top: 0;
    width: 145px;
  }
  /* .hd__contents__ttl img{
    height: 60.2px;
  } */
  .sns__contents {
    margin: 0 0 0 1em;
    position: static;
  }
  .sns__contents__list li {
    cursor: pointer;
    height: 40px;
    margin-right: 0;
    width: 40px;
  }
  .sns__contents__list .instagram, .sns__contents__list .twitter, .sns__contents__list .line {
    background-size: 70%;
  }
  .place__logo__list {
    display: flex;
    margin-left: 1em;
    margin-top: .5em;
    align-items: flex-end;
  }
  .place__logo__list li {
    margin-left: 1.5em;
  }  
  .place__logo__list li img {
    width: 130px;
  }
  .place__logo__list li .niconico{
    width: 70px;
  }  
  .notes__btn {
    font-size: 1.4rem;
  }
  .tickets__btn a, .notes__btn a {
    padding: 0 1em;
  }
}
@media (max-width: 1038px) {
  .tab{
    display: block !important;
  }
  .place__logo__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: end;
    margin-top: .3em;
    margin-left: .5em;
    display: none;
  }
  .place__logo__list li {
    margin-left: .4em;
    width: 85px;
  }  
  .logo__contents {
    position: relative;
    margin: 1em 2em;
  }
  .logo__contents__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .logo__contents__list li {
    color: #fff;
    margin-right: .5em;
  }  
  .logo__contents__list li img {
    margin: 10px 0;
    width: 120px;
  }  
  
}
/*
  footer
-------------------------------*/
.footer {
  background-color: #FF4B69;
  color: #fff;
}
.ft__container {
  padding: 2em 0;
}
.policy {
  font-size: 1.2rem;
  padding: 0 1em;
  margin-top: 2em;
  text-align: center;
}
.policy a {
  transition: all 0.4s;
}
.policy a:hover {
  opacity: 0.6;
}
.copyright {
  font-size: 1.2rem;
  padding: .5em 1em 1em;
  text-align: center;
}
@media (min-width: 768px) {
  .ft__container {
    padding: 4em 0 0;
  }
  .policy {
    font-size: 1.4rem;
    margin-right: 2em;
    padding: 0 1em;
  }
  .copyright {
    font-size: 1.4rem;
    margin-right: 2em;
    padding: .5em 1em 1em;
  }
}
/*
  module
-------------------------------*/
.contents {
  padding-bottom: 2em;
}
.contents_404{
  margin-top: 72.48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.container {
  margin: 0 auto;
  width: 92.8%;
}
.container.hero__contents{
  width: 100%;
}
.sec__container {
  padding: 30px 0 0;
}
#sec-news{
  padding-bottom: 35px;
  background-color: #fff;
  background-image: url(../../assets/images/bg_heart_02-sp.png);
  background-size: 100%;
  background-repeat: repeat-y;
  background-position: center;
}
.sec__container-news{
  padding: 30px 10% 0;
  width: 100%;
}
.sec__contents-news{
  margin-top: 15px;
}
.sec__container-artist{
  width: 81.2%;
}
.sec__container-timetable{
  width: 81.2%;
}
.sec__container-ticket{
  width: 81.2%;
  background-color: #FFD7E6;
  border-radius: 21px;
}
.sec__container-goods{
  width: 81.2%;
  padding-top: 40px;
}
.sec__container-movie{
  padding: 0;
}
.sec__contents-movie{
  margin-top: 30px;
}
.sec__contents-artist{
  margin-top: 30px;
}
.contents-artist{
  padding-bottom: 0;
  background-color: #FFD7E6;
}
#sec-about .container .about__desc{
  color: #FF4B69;
  font-weight: 600;
}
.sec__about-contents{
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contents {
    padding: 0;
  }
  .sec__about-contents{
    margin-top: 60px;
  }
  .contents_404{
    margin-top: 108.55px;
  }
  .container {
    margin: 0 auto;
    width: 84.375%;
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
  }
  .container.hero__contents{
    width: 84.375%;
  }
  .container > * {
    box-sizing: border-box;
  }
  .sec__container {
    padding: 115px 0 0;
  }
  #sec-about{
    padding-bottom: 105px;
  }
  #sec-news{
    padding-bottom: 100px;
    background-color: #fff;
    background-image: url(../../assets/images/bg_heart_02.png);
    background-size: 100%;
  }
  .sec__container-news{
    padding: 80px 0 0;
  }
  .sec__contents-news{
    margin-top: 15px;
  }
  .sec__container-ticket{
    border-radius: 40px;
  }
  .sec__contents-movie{
    margin-top: 60px;
  }
  .sec__contents-artist{
    margin-top: 60px;
  }
}
.sec__ttl {
  font-size: 28px;
  margin-bottom: 1em;
  padding: .5em 0 .7em;
  position: relative;
  text-align: center;
  color: #FF4B69;
  font-weight: 900;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.sec__about-ttl-image{
  margin: 0 auto;
  width: 44.68%;
}
.sec__news-ttl-image{
  margin: 0 auto;
  width: 38.29%;
}
.sec__artist-ttl-image{
  margin: 0 auto;
  width: 43.67%;
}
.sec__timetable-ttl-image{
  margin: 0 auto;
  width: 67.35%;
}
.sec__ticket-ttl-image{
  margin: 0 auto;
  width: 44.2%;
}
.sec__goods-ttl-image{
  margin: 0 auto;
  width: 43.38%;
}
.sec__movie-ttl-image{
  margin: 0 auto;
  width: 43.38%;
}
.sec__ttl::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/img_ttl.png) no-repeat center;
  background-size: contain;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  right: 0;
  width: 100%;
  height: 80%;
}
.sec__ttl span {
  position: relative;
  font-style: oblique;
}
.comingSoon{
  margin-top: 45px;
  color: #FF4B69;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}
@media (min-width: 768px) {
  .sec__ttl {
    font-size: 50px;
  }
  .sec__about-ttl-image{
    width: 38.24%;
  }
  .sec__news-ttl-image{
    width: 22.5%;
  }
  .sec__artist-ttl-image{
    width: 30.4%;
  }
  .sec__timetable-ttl-image{
    width: 49.25%;
  }
  .sec__ticket-ttl-image{
    width: 32.59%;
  }
  .sec__goods-ttl-image{
    width: 31.81%;
  }
  .sec__movie-ttl-image{
    width: 31.81%;
  }
  .comingSoon{
    margin-top: 60px;
    font-size: 60px;
    font-weight: 600;
  }
}
.ft-ss {
  font-size: 45%;
}
.ft-s {
  font-size: 60%;
}
.ft-m {
  font-size: 80%;
}
.ft-l {
  font-size: 120%;
}
.txt-more {
  color: #ff74ea;
  font-size: 2.1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .txt-more {
    font-size: 3.2rem;
  }
}
.link__btn {
  background-color: #FF4B69;
  border-radius: 50px;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  border: solid 2px #fff;
}
.link__btn > * {
  display: block;
  padding: .75em;
  font-weight: 900;
}
@media (min-width: 768px) {
  .link__btn {
    font-size: 2.4rem;
  }
  .link__btn > * {
    display: block;
    padding: .75em;
  }
  .btn {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border: 2px solid #fff;
  }
  .btn:hover {
    background-color: #F7F7F7;
    border: solid 2px #FF4B69;
    color: #FF4B69;
  }
  .link__btn:hover {
    background-color: #fff;
    border: solid 2px #FF4B69;
    color: #FF4B69;
  }
}
.mw-200 {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .mw-300 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .mw-400 {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .mw-500 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .mw-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* .line-circle {
  position: relative;
} */
/* .line-circle::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/bg_line_circle.png) repeat-x;
  background-size: contain;
  content: "";
  display: block;
  height: 20px;
  top: -20px;
  width: 100%;
}
.line-circle-bottom::after {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/bg_line_circle.png) repeat-x;
  background-size: contain;
  content: '';
  display: block;
  height: 20px;
  top: 100%;
  transform: rotate(180deg);
  width: 100%;
} */
.dots{
  position: relative;
  /* background: url(../images/bg_border.png) repeat #CB77F9 top left;
  background-size: 40px; */
}
/* .line-lace::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/bg_line_lace.png) repeat-x;
  background-size: contain;
  content: '';
  display: block;
  height: 20px;
  top: -20px;
  width: 100%;
}
.line-lace-bottom::after {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/bg_line_lace.png) repeat-x;
  background-size: contain;
  content: '';
  display: block;
  height: 20px;
  top: 100%;
  transform: rotate(180deg);
  width: 100%;
} */
.bg-cl {
  background-color: #f6caee;
}
.bg-ptn01 {
  /* background-image: linear-gradient(
    0deg,
    hsl(341deg 100% 74%) 0%,
    hsl(349deg 100% 77%) 2%,
    hsl(359deg 100% 80%) 5%,
    hsl(10deg 100% 79%) 8%,
    hsl(19deg 100% 77%) 12%,
    hsl(27deg 100% 76%) 17%,
    hsl(33deg 100% 74%) 21%,
    hsl(39deg 100% 72%) 27%,
    hsl(44deg 100% 70%) 33%,
    hsl(48deg 100% 68%) 39%,
    hsl(52deg 100% 66%) 47%,
    hsl(55deg 100% 63%) 56%,
    hsl(58deg 100% 59%) 68%,
    hsl(60deg 100% 50%) 98%
  ); */
  background-color: #fff;
  background-image: url(../images/bg_heart_01.png);
  background-repeat: repeat;
  background-size: 100%;
}
.bg-ptn02 {
  background: url(../images/bg_heart_02.png) repeat #f7e4fe top left;
  background-size: 40px;
}
.bg-border {
  background: linear-gradient(to bottom, #ffdfff, #ff74ea);
}
.bg-paint{
  background: linear-gradient(to bottom, #ffdfff, #ff74ea);
}
@media (min-width: 768px) {
  .line-circle .date{
    margin: 40px 0 0;
  } 
  .line-circle .info{
    margin-bottom: 40px;
  }
  .line-circle::before {
    height: 30px;
    top: -30px;
  }
  .line-circle-bottom::after {
    height: 30px;
  }
  .line-lace::before {
    height: 30px;
    top: -30px;
  }
  .line-lace-bottom::after {
    height: 30px;
  }
  .bg-ptn01 {
    background-size: 100%;
  }
  .bg-ptn02 {
    background-size: 60px;
  }
  .bg-border {
    background-size: 60px;
  }
}
.lay__col {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.lay__col > * {
  margin-bottom: 1em;
  margin-right: 1em;
  margin-right: 3.5%;

}
.lay__col.col1 > * {
  margin-right: 0;
  width: 100%;
}
.lay__col.col1 > *:last-of-type {
  margin-bottom: 0;
}
.lay__col.col2 > * {
  width: calc((100% - 1em) / 2);
  width: 47.78%;
}
.lay__col.col2 > *:nth-of-type(2n) {
  margin-right: 0;
}
@media (min-width: 768px) {
  .lay__col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lay__col > * {
    margin-bottom: 30px;
    margin-right: 2.2%;
  }
  .lay__col.col1 > * {
    margin-right: 1em;
    margin-right: 2.2%;
  }
  .lay__col.col2 > *:nth-of-type(2n) {
    margin-right: 1em;
    margin-right: 2.2%;
  }
  .lay__col.col2-pc > * {
    width: calc((100% - 1em) / 2);
    width: 48%;
  }
  .lay__col.col2-pc > *:nth-of-type(2n) {
    margin-right: 0;
  }
  .lay__col.col4-pc > * {
    width: calc((100% - 3.1em) / 4);
  }
  .lay__col.col4-pc > *:nth-of-type(4n) {
    margin-right: 0;
  }
  .lay__col.col3-pc > * {
    width: calc(100% / 4);
    margin-right: calc((100% / 4) / 2);
    margin-bottom: 45px;
  }
  .lay__col.col2.col3-pc > *:nth-of-type(2n){
    margin-right: calc((100% / 4) / 2);
  }
  .lay__col.col3-pc > *:nth-of-type(3n) {
    margin-right: 0;
  }
  .lay__col.lay__col-center{
    justify-content: center;
  }
  .lay__col.lay__col-center > li{
    margin: 0;
  }
}
/*
  main
-------------------------------*/
.main {
  background-color: #fff;
  /* min-height: 80vh; */
  /* margin-top: 45px; */
}
/*
  totop
-------------------------------*/
.totop {
  color: #FF4B69;
  padding-top: 30px;
}
.page-note{
  background-color: #fff;
}
.totop a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  height: 38px;
  width: 38px;
  align-items: center;
  border: 4px solid;
  border-radius: 50%;
  margin: 0 1em 0 auto;
}
@media (min-width: 768px) {
  .totop a {
    height: 50px;
    width: 50px;
  }
}
.totop a::before {
  background: url(../images/img_totop.svg) no-repeat center;
  background-size: 50%;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .totop {
    padding-bottom: 4em;
  }
  .totop a {
    margin: 0 2em 0 auto;
  }
}
/*
  audio
-------------------------------*/
.audio__btn {
  height: 38px;
  width: 38px;
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 1em;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  left: 1em;
  position: fixed;
  z-index: 1000;
}
@media (min-width: 768px) {
  .audio__btn {
    height: 50px;
    width: 50px;
  }
}
.audio__btn::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/icon_speaker_off.svg) no-repeat center;
  background-size: 60%;
  content: '';
  height: 100%;
  width: 100%;
}
.audio__btn > div {
  font-size: 0;
}
.audio__btn.play::before {
  position: absolute;
  top: 0px;
  left: 0px;
  background: url(../images/icon_speaker.svg) no-repeat center;
  background-size: 60%;
}
@media (min-width: 768px) {
  .audio__btn {
    bottom: 2em;
    left: 2em;
    margin: 0;
  }
}
/*
  parts
-------------------------------*/
/* hero */
.hero {
  /* background-color: #FF4B69; */
  /* background:linear-gradient(to right,#FF64FE,#FD90FB,#FF64FE); */
  padding: 0;
  /* margin: 7rem 0 0; */
}
.hero__contents {
  margin: 72.49px 0 0;
}
.hero__img{
  position: relative;
  /* background-color: #FF4B69; */
  text-align: center;
}
.hero__img img{
  margin: 21px auto;
  width: 85.733%;
}
.hero__img .ly,.hero__img .ly-2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.hero__date {
  background-color: #FF4B69;
  color: #fff;
  padding: 15px 10px;
  text-align: center;
}
.hero__date .date {
  /* font-size: 2.8rem; */
  font-size: 27px;
  line-height: 1;
  margin-bottom: .25em;
  font-weight: 900;
}
.hero__date .date .ft-ss {
  font-size: 14px;
}
.hero__date .date span {
  line-height: 1;
  padding-bottom: .1em;
  vertical-align: 10%;
}
.hero__date .date span .pre{
  padding: 0;
  font-size: 100%;
}
.hero__date .info span {
  display: block;
}
.hero__date .info a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .hero {
    overflow-x: hidden;
  }
  .hero__contents {
    max-width: none;
    padding: 0;
    margin: 108.541px 0 0;
    /* background: radial-gradient( rgba(255,172,254,1) 30%, rgba(255,130,250,1) 50%);
    background: radial-gradient( rgba(255,172,254,1) 42%, rgba(255,130,250,1) 66%); */
    /* min-width: 937px; */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
  .hero__img {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    width: 100%;
  }
  .hero__img img {
    /* max-width: 920px; */
  }
  .hero__date {
    font-size: 2.4rem;
    padding: 30px 2em;
  }
  .hero__date .date {
    font-size: 8rem;
    margin-bottom: 0;
    line-height: 0.8;
  }
  .hero__date .info span {
    display: inline-block;
    margin-left: 1em;
  }
  .hero__date .date span .pre{
    padding: 0;
    font-size: 2.4rem;
  }
  .hero__date .date .ft-ss {
    font-size: 30px;
  }
}
@media (max-width: 1038px) and (min-width: 768px) {
  .hero__contents {
    margin: 112.61px 0 0;
  }
}
/*
  js
-------------------------------*/
.js-modal-open {
  cursor: pointer;
}

#modal .js-modal-close {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
  height: 100vh;
  margin-bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

#modal .js-modal-close::after {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0px;
  right: 0px;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  content: '×';
  font-size: 3rem;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  line-height: 1;
  right: 1em;
  top: 1em;
  width: 50px;
}

#modal .js-modal-close img {
  display: block;
  max-height: 90%;
  max-width: 90%;
  padding: 2em;
  margin: 6em auto;
}

@media screen and (min-width: 768px) {
  #modal .js-modal-close::after {
    right: 2em;
    top: 2em;
  }
  #modal .js-modal-close img {
  width: 90vh;
  height: 90vh;
  margin: 2em auto;
  }
}
/* about */
.about__desc {
  margin-bottom: 1em;
}
.about__desc:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about__desc {
    font-size: 2rem;
    text-align: center;
  }
}
/* news */
.news__item__list + .btn {
  margin-top: 2em;
}
.news__item {
  border-bottom: 1px solid;
  margin-bottom: 1em;
  color: #FF4B69;
}
.news__item:last-of-type {
  margin-bottom: 0;
}
.news__row__ttl {
  cursor: pointer;
  margin-bottom: 1em;
  font-weight: 600;
}
.news__row__content {
  border-top: 1px dotted rgba(0, 0, 0, 0.3);
  display: none;
  padding: 1em 0;
  font-weight: 400;
}
.news__row__content h2{
  font-size: 15px;
}
.news__row__content h3{
  font-size: 14px;
}
.news__row__content p,.news__row__content ul{
  font-size: 14px;
  margin-top: 15px;
}
.news__row__content p.ft-b,.news__row__content p.ft-b > span{
  font-size: 14px !important;
}
.news__row__content li{
  font-size: 14px;
}
.pagination {
  margin-top: 2em;
  text-align: center;
}
@media (min-width: 768px) {
  .news__row__ttl {
    font-size: 2rem;
  }
  .news__row__content h2{
    font-size: 18px;
  }
  .news__row__content h3{
    font-size: 18px;
  }
  .news__row__content p,.news__row__content ul{
    font-size: 16px;
    margin-top: 20px;
  }
  .news__row__content p.ft-b,.news__row__content p.ft-b > span{
    font-size: 16px !important;
  }
  .news__row__content li{
    font-size: 16px;
  }
}
.place__cat {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5em;
}
.place__cat p {
  align-items: center;
  display: flex;
}
.place__cat p + p {
  margin-left: 1em;
}
.place__cat p span {
  align-items: center;
  background-color: #fff;
  border: 1px solid #ff74ea;
  color: #ff74ea;
  display: flex;
  font-size: 10px;
  height: 16px;
  justify-content: center;
  line-height: 1;
  margin-right: .5em;
  padding: .25em;
  width: 36px;
}
/* artist */
.artist__item {
  /* background-color: #FF4B69; */
  overflow: hidden;
  position: relative;
}
.artist__item.new::before {
  background-color: #FF4B69;
  border-radius: 6px 0 6px 0;
  content: 'NEW';
  color: #fff;
  /* color: #FF4B69; */
  display: block;
  font-size: 10px;
  left: 0;
  line-height: 1;
  padding: 4px 5px;
  position: absolute;
  top: 0;
  z-index: 10;
}
.artist__item.east::after {
  content: 'EAST';
}
.artist__item.nest::after {
  content: 'Nest';
}
.artist__item.east::after, .artist__item.nest::after {
  align-items: center;
  background-color: #fff;
  border: 1px solid #ff64fe;
  color: #ff64fe;
  display: flex;
  font-size: 10px;
  height: 16px;
  justify-content: center;
  line-height: 1;
  padding: .25em;
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  z-index: 10;
}
.artist__item img {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  height: 100%;
}
.artist__name {
  position: absolute;
  position: relative;
  top: 0px;
  left: 0px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  background-color: #FF4B69;
  color: #fff;
  bottom: 0;
  font-size: 1.12rem;
  /* height: 30px; */
  height: auto;
  line-height: 1.2;
  padding: 5px 0;
  text-align: center;
  top: auto;
  width: 100%;
  z-index: 50;
}
.artist__name.ft-s {
  font-size: 100%;
}
.artist__item > a,.artist__item > div{
  display: inline-block;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: auto;
  background-color: #FF4B69;
}
.artist__item p.note{
  /* color: #FF4B69; */
  font-size: 10px;
}
@media (min-width: 768px) {
  .place__cat p span {
    font-size: 1.4rem;
    height: 22px;
    width: 50px;
  }
  .artist__item > a,.artist__item > div{
    border-radius: 10px;
  }
  .artist__item.new::before {
    font-size: 1.4rem;
    padding: 5px 10px;
    border-radius: 10px 0 10px 0;
  }
  .artist__item.east::after, .artist__item.nest::after {
    font-size: 1.4rem;
    height: 22px;
    width: 50px;
  }
  .artist__item a:hover img ,.artist__item a:hover .no-image::after {
    transform: scale(1.2);
  }
  .artist__name {
    font-size: 1.5rem;
    /* font-size: 1.25vw; */
    /* height: 40px; */
    height: auto;
    padding: 10px 0;
    line-height: 1.4;
    top: auto;
    width: 100%;
  }
  .artist__name.ft-s {
    font-size: 70%;
  }
  .artist__item p.note{
    font-size: 12px;
  }  
}
/* timetable */
#sec-timetable {
  padding-top: 48px;
}
#sec-timetable .btn {
  margin-top: 2em;
}
.timetable-image{
  margin-top: 40px;
}
@media (min-width: 768px) {
  #sec-timetable {
    padding-top: 0;
  }
  .sec__container.sec__container-timetable{
    padding: 30px 0 0;
  }
  .timetable-image{
    margin-top: 80px;
  }
}
/* tickets */
#sec-ticket {
  padding-top: 3em;
  padding-bottom: 60px;
  /* background-image: linear-gradient(
    0deg,
    hsl(295deg 96% 78%) 0%,
    hsl(291deg 97% 77%) 8%,
    hsl(287deg 97% 76%) 15%,
    hsl(284deg 98% 75%) 23%,
    hsl(280deg 98% 74%) 31%,
    hsl(276deg 98% 73%) 38%,
    hsl(272deg 98% 72%) 46%,
    hsl(268deg 99% 71%) 54%,
    hsl(264deg 99% 70%) 62%,
    hsl(261deg 99% 69%) 69%,
    hsl(257deg 99% 68%) 77%,
    hsl(253deg 100% 68%) 85%,
    hsl(249deg 100% 67%) 92%,
    hsl(245deg 100% 66%) 100%
  ); */
  color: #fff;
}
#sec-ticket .sec__ttl {
  /* margin-top: -3em; */
  margin-top: -1.5rem;
}
#sec-ticket .link__btn {
  margin-top: 2em;
}
.sec__ttl-tickets{
  margin-bottom: -45px;
}
.tickets__ttl {
  font-size: 2.1rem;
  margin-bottom: 1em;
  text-align: center;
  color: #FF4B69;
  padding-top: 18px;
}
.tickets__ttl span {
  display: block;
  font-size: 1.2rem;
  margin-top: 1em;
}
.tickets__ttl .gray {
  color: rgba(0, 0, 0, 0.5);
}
.tickets__item {
  font-size: 2.1rem;
  margin-bottom: .5em;
  text-align: center;
}
.tickets__item__wrap{
  padding: 0 20px;
}
.tickets__item span {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  background: url(../images/img_ticket_02.png) no-repeat top left;
  background-size: contain;
  color: #fff;
  height: 4em;
  width: 4em;
}
.tickets__item.vip span {
  background: url(../images/img_ticket_01.png) no-repeat top left;
  background-size: contain;
}
.tickets__desc {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
  text-align: center;
}
.tickets__desc.soldout {
  background-color: #ff79ad;
  color: #ffffff;
  display: block;
  font-size: 2.1rem;
  margin: 0 auto;
  max-width: 200px;
  padding: .5em;
}
#sec-ticket #sec-ticket .link__btn{
  margin-bottom: 5px;
}
.tickets__sold{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: .4em;
  text-align: center;
  color: #FF4B69;
}
.tickets__note {
  text-align: center;
  color: #FF4B69;
  padding-bottom: 40px;
}
.tickets__note a {
  text-decoration: underline;
}
.tickets__seats {
  padding-top: 5%;
  position: relative;
  width: 100%;
}
.tickets__seats__main {
  position: relative;
  width: 100%;
  /* padding-bottom: 5%; */
}
@media (min-width: 768px) {
  #sec-ticket {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  #sec-ticket .sec__ttl {
    /* margin-top: -3.75em; */
    margin-top: -1.5rem;
  }
  .sec__ttl-tickets{
    margin-bottom: -70px;
  }
  .tickets__ttl {
    font-size: 3.2rem;
    margin: 0;
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .tickets__ttl span {
    font-size: 1.6rem;
    margin-top: 0;
  }
  .tickets__item {
    font-size: 3.2rem;
  }
  .tickets__item__wrap{
    margin: 0 auto;
    width: 86.1%;
    padding: 0;
  }
  .tickets__item span {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 4em;
    width: 4em;
  }
  .tickets__note {
    padding-top: 3%;
  }
  .tickets__desc {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2em;
  }
  .tickets__seats__main {
  padding-bottom: 0;
  }
  .tickets__seats {
    padding-top: 6.2%;
  }
  .tickets__sold{
    font-size: 20px;
  }
}
/* access */
#sec-access .sec__ttl {
  margin-top: -3em;
}
@media (min-width: 768px) {
  #sec-access .sec__ttl {
    margin-top: -3.75em;
  }
}
/* goods */
.goods__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3em;
  margin-bottom: 3em;
  gap: 3.5%;
}
.goods__list li{
  width: calc(50% - 1.75%);
  margin-top: 3.5%;
  border-radius: 6px;
  overflow: hidden;
}
.goods__list__txt {
  line-height: 1.6;
  font-size: 12px;
}
.goods__list__price{
  font-size: 14px;
  font-weight: 500;
}
.goods__list__price span{
  font-size: 1rem;
}
#sec-ticket .link__btn,
#sec-goods .link__btn
{
  max-width: 85%;
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  .goods__list {
    gap: 2.2%;
    justify-content: flex-start;
  }
  .goods__list li{
    max-width: 23.33%;
    border-radius: 10px;
  }
  #sec-ticket .link__btn,
  #sec-goods .link__btn{
  max-width: 400px;
  margin-bottom: 0;
  }
  .info-list__item{
    margin-top: 1.5em;
  }
  .goods__list::after{
    content: "";
    display: block;
    width: 25%;
  }
  .goods__list__txt {
    font-size: 14px;
  }
}
/* howto */
.howto {
  font-size: 2.1rem;
}
.sec__howto-ttl-image{
  margin: 0 auto 40px;
  width: 67.35%;
}
.howto iframe {
  background-color: #fff;
  border: solid 2px #FF4B69;
  border-radius: 8px;
  max-width: 100%;
}
.howto li {
  margin-bottom: 3em;
}
.howto li:last-of-type {
  margin-bottom: 0;
}
.howto p {
  font-size: 1.4rem;
  margin-bottom: 1em;
  text-align: left;
}
.howto a {
  text-decoration: underline;
}
.howto .btn {
  margin: 0 auto 2em;
}
.howto .btn a {
  font-size: 1.4rem;
  text-decoration: none;
}
.howto .notes {
  border-top: 1px dotted;
  font-size: 1.2rem;
  padding-top: 1em;
  margin-bottom: 0;
  text-indent: -12px;
  padding-left: 12px;
}
.howto .notes.bt-n {
  border-top: none;
}
.howto__ttl {
  line-height: 1.5;
  margin-bottom: .5em;
}
.howto__ttl::before {
  content: url(../images/icon_heart_pink.svg);
  display: inline-block;
  margin-right: .5em;
  vertical-align: middle;
  width: 1em;
}
.icon__ttl {
  background-color: #fff;
  border: 1px solid #FF4B69;
  border-radius: 6px;
  color: #FF4B69;
  margin: 2em 0 1em;
  padding: .25em 0;
  text-align: center !important;
}
.icon__list {
  text-align: center;
}
.icon__list li {
  background-color: #FF4B69;
  border-radius: 8px;
  margin-bottom: 1em;
  padding: 4px;
  overflow: hidden;
}
.icon__list li .gift-icon{
  align-items: center;
  background-color: #fff;
  /* border: solid 2px #FF4B69; */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: center;
}
.icon__list li:last-of-type {
  margin-bottom: 1em;
}
.icon__list span {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  margin: .5em auto calc(.5em - 4px);
  padding: 0;
}
.icon__list img {
  max-width: 100%;
}
.howto {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.goods__wrap {
  align-items: center;
}
.howto .goods__wrap li {
  margin-bottom: 0;
  width: calc(50% - .5em);
}
.goods__wrap li {
  margin: 0 auto;
  min-width: 80%;
  }
@media (min-width: 768px) {
  .goods__wrap li {
  min-width: 30%;
  max-width: 400px;
  }
}
.howto .lay__col{
  align-items: flex-start;
  margin-top: 40px;
  justify-content: space-between;
}
.howto .icon-gift {
  vertical-align: baseline;
  width: 1em;
}
@media (min-width: 768px) {
  #sec-howto{
    padding-bottom: 108px;
  }
  .howto .lay__col > li,.howto .lay__col > li:nth-of-type(2n) {
    margin-right: 0 !important;
    width: 22.5%;
  }
  .sec__howto-ttl-image{
    margin: 0 auto;
    width: 49.35%;
  }

  .howto p {
    font-size: 1.6rem;
  }
  .howto .notes {
    font-size: 14px;
    padding-left: 14px;
    text-indent: -14px;
  }
  .howto .btn a {
    font-size: 2.4rem;
  }
  .howto__ttl {
    line-height: inherit;
  }
  .icon__list {
    margin: 0;
  }
  .icon__list li {
    margin-bottom: 1em;
  }
  .icon__list li:last-of-type {
    margin-bottom: 1em;
  }
}
/* movie */
#sec-movie.contents{
  padding: 30px 0;
}

#sec-movie .sec__ttl {
  margin-top: -3em;
}
.yt {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.yt.yt__main {
  margin-bottom: 1em;
}
.yt iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  #sec-movie.contents{
    padding: 0em 2em 2em;
  }  
  #sec-movie .sec__ttl {
    margin-top: -3.75em;
  }
}
/* fin */
.img__fin {
  display: block;
  margin: 3em auto 2em;
  max-width: 900px;
}
/* artist-name */
.artist-name-long{
  font-size: 1.1rem !important;
}
@media (min-width: 768px) {
  .artist-name-long{
    font-size: 1.5rem !important;
  }
  }
@media (max-width: 1017px) {
  .artist-name-long{
    font-size: 1rem !important;
  }
}
/* checklist_pdf */
.checklist_pdf-sec{
  text-align: center;
  margin-top: 100px;
}
.checklist_pdf-con a:hover{
  opacity: .6;
}
/* 2023年度追加 */
.coming-soon{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #FF4B69;
}
@media (min-width: 768px) {
  .coming-soon{
    font-size: 40px;
  }  
}
.artist__img--block{
  position: relative;
  aspect-ratio: 3/2;
}
.artist__img--block img{
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .lay__col.col4-pc > *{
    width: calc((100% - 3.1em) / 4);
    width: 23.33%;
  }
  .lay__col.col4-pc > *:nth-of-type(4n) {
    margin-right: 0;
  }  
}
.artist_bg-top,.artist_bg-bottom{
  width: 100%;
  background-image: url(../images/bg_heart_01.png);
  background-size: 100%;
  background-position: left bottom;
}
/* 2023 シートマップ */
.tickets__seats-list-item{
  margin-bottom: 0;
}
/* 2023 グッズ */
.bg-goods{
  background-image: url(../../assets/images/bg_heart_02-sp.png);
  background-size: 100%;
  padding-bottom: 50px;
}
.goods__list__txt-2023{
  background-color: #FF4B69;
  color: #fff;
  padding: 0 8px 10px;
}
.goods__list__txt-Title-2023{
  font-weight: 600;
}
@media (min-width: 768px) {
  .goods__list__txt-Title-2023{
    font-size: 16px;
    font-weight: 600;
  }
  .bg-goods{
    background-image: url(../../assets/images/bg_heart_02.png);
    padding-bottom: 100px;
  }
}
.js-modal-open{
  transition: all 0.3s;
}
.js-modal-open:hover{
  filter: opacity(0.8);
}
#modal .goods__list__txt.goods__list__txt-2023{
  display: none;
}
.goods__list__img.js-modal-open{
  height: 100%;
  background-color: #FF4B69;
}
.bg-timetable{
  /* background-image: linear-gradient(
  0deg,
  hsl(316deg 100% 50%) 0%,
  hsl(314deg 100% 53%) 11%,
  hsl(313deg 100% 56%) 22%,
  hsl(311deg 100% 58%) 33%,
  hsl(310deg 100% 61%) 44%,
  hsl(308deg 100% 64%) 56%,
  hsl(307deg 100% 67%) 67%,
  hsl(305deg 100% 70%) 78%,
  hsl(303deg 100% 72%) 89%,
  hsl(302deg 100% 75%) 100%
  ); */
  background: linear-gradient( 180deg, rgba(234,75,148,1) 15%,rgba(217,200,225,1) 90%);
}
.credit__contents__list a{
  transition: all 0.3s;
}
.credit__contents__list a:hover{
  opacity: 0.6;
}
/* 2023 楽しみ方 */
.gift-icon{
  aspect-ratio: 1/1;
  width: 100%;
}
.gift-icon img{
  object-fit: contain;
  height: 90%;
  width: 90%;
}

#canvas{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.note__textContents ul li{
  margin-top: 2px;
  padding-left: 14px;
  text-indent: -14px;
}
.no-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.no-image::after{
  content: 'coming soon';
  display: inline-block;
  width: 100%;
  font-size: 14px;
  text-align: center;
  color: #F7F7F7;
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .note__textContents ul li{
    padding-left: 15px;
    text-indent: -15px;
  }
  .lay__col.lay__col-center.sec__contents-movie-list{
    justify-content: space-between;
  }
}
