@charset "UTF-8";
html {
  font-size:62.5%;
}
body{
  color: #333;
  font-family: 'Crimson Text', serif;
  font-size:1.4rem;
  overflow-wrap: anywhere;
}
a {
  color: #e373ad;
  text-decoration:none;
}
img {
  vertical-align:top;
  width: 100%;
}
ul {
  list-style: none;
}
.button:hover {
  transition: all .3s;
}
.button__akb48groupe:hover {
  transition: all .3s;
}
.button__lawson:hover {
  transition: all .3s;
}
.button__hulu:hover {
  transition: all .3s;
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}
.heading__primary {
  color: #e373ad;
  display: inline-block;
  font-family: "Pinyon Script", cursive;
  font-size: 13rem;
  font-weight: normal;
  max-width: 1200px;
  margin: 70px 0 0;
}
.heading__primary span {
  color: #e373ad;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: 'Crimson Text', serif;
  margin: -18px 0 0;
  padding: 0 0 60px;
}
.shootingTime .heading__primary span {
    margin: 18px 0 0;
}

@media only screen and (max-width: 768px){
  .heading__primary {
    font-size: 8rem;
    margin: 50px 0 0;
  }
  .heading__primary span {
    font-size: 1.8rem;
    margin: -18px 0 40px;
    padding: 0;
  }
  .shootingTime .heading__primary {
    font-size: 6.8rem;
  }
  .shootingTime .heading__primary span {
      margin: 18px 0 40px;
  }
}
/* アニメーション
-------------------------------------*/
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 1000ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
/* 画面外にいる状態 */
.fadein_top {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
 @keyframes fadeUpAnime {
 from {
 opacity: 0;
 transform: translateY(100px);
}
 to {
 opacity: 1;
 transform: translateY(0);
}
}
/* ヘッダー
-------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  background: #e373ad;
}
.logo {
  width: 125px;
  padding: 0 0 0 8px;
}
.header__inner {
  display: flex;
  align-items: center;
  height: 60px;
  width: 1000px;
  margin: 0 auto;
}
.header__inner .nav {
  margin: 0 auto;
}
.nav__list{
  display: flex;
  align-items:center;
  justify-content: space-between;
  width: 700px;
  margin: 0 auto;
}
.nav__item {
  list-style-type: none;
}
.nav__item a{
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}
.nav__item:last-child {
  display: none;
}
.nav__item:last-child {
  display: none;
}
.nav__item:hover {
  transition: all .3s;
  opacity: 0.74;
}
@media screen and (max-width: 1215px) {
.nav__list {
  padding: 17px 15px;
}
}
@media screen and (max-width: 1024px) {
.logo {
  display: block;
  width: 80px;
  margin: 0 0 0 12px;
  padding: 12px 0;
}
.header__inner {
  height: 50px;
}
.hamburger {
  position: absolute;
  right: 60px;
  top: -5px;
  z-index: 10;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 28px;
  height : 2px;
  left: 16px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 20px;
}
.hamburger span:nth-child(2) {
  top: 30px;
}
.hamburger span:nth-child(3) {
  top: 40px;
}
.hamburger.active span:nth-child(1) {
  top : 30px;
  left: 15px;
  background : #fff;
  box-shadow: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform : rotate(-45deg);
  transform : rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 30px;
  background : #fff;
  box-shadow: none;
  -webkit-transform: rotate(45deg);
  -moz-transform : rotate(45deg);
  transform : rotate(45deg);
}
.nav {
  z-index : 5;
  top : 0;
  left : 0;
  background: #e373ad;
  text-align: center;
  display: flex;
  position: fixed;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100vw);
  transition: opacity .6s ease, visibility .6s ease;
}
.nav__list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: block;
}
.nav__item {
  margin: 2px 0 0;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
.nav__item:last-child {
  display: block;
}
.nav__item a {
  font-size: 21px;
  display: block;
  color: #fff;
  padding: 0.3em 0;
  text-decoration : none;
}
.nav__item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px 30px 0;
  width: auto;
}
.nav__item ul li {
  list-style-type: none;
  margin: 0;
  width: 48%;
}
.nav.active {
  transform: translateX(0);
  opacity: 100;
  position: fixed;
}
.nav__item:first-child {
  display: block;
  max-width: 200px;
  width: 90%;
  margin: 0 auto;
}
.nav__item .button {
  background-color: #fff;
  border-radius: 100vh;
  display: inline-block;
  margin: 8px 0 0;
  width: 280px;
}
.nav__item .button a {
  color: #f593b4;
  display: block;
  text-align: center;
  padding: 6px 0;
}
}
/*メインビジュアル
-------------------------------------*/
body {
  background: #fff url(../img/main_bg_pc.jpg) center top 60px / 100% auto no-repeat fixed;
  position: relative;
  min-height: 100vh;
}
.main__visual {
  width: 100%;
  position: relative;
  min-height: 100vh;
}
.main__visual .heading__main {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16rem;
  color: #fff;
  text-align: left;
  justify-content: center;
}
@media only screen and (max-width: 1024px){
  body {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center left 10%;
    background-size: cover;
  }
  .main__visual {
    min-height: 80vh;
  }  
  .main__visual .heading__main {
    font-size: 10rem;
  }
}
@media only screen and (max-width: 640px){
  body {
    background: #fff url(../img/main_bg_sp.jpg);
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: 100% auto;
  }
  .main__visual{
    min-height: 150vw;
  }
  .main__visual .heading__main {
    font-size: 5rem;
    padding: 0 0 0 10px;
  }

}
/*チケット
-------------------------------------*/
.ticket {
  background: #fff;
  background-image: url(../img/20th.png);
  background-position: left -10px top 30px;
  background-repeat: no-repeat;
  background-size: 44vh;
  margin: 2% auto 12%;
  padding: 0 15px 90px;
  text-align: center;
}
.ticket__wrapper {
  position: relative;
}
.ticket .ticket__wrapper p:first-child {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  border: 2px solid #0f3349;
  color: #0f3349;
  display: block;
  font-size: 21px;
  font-weight: bold;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 15px;
  position: relative;
  z-index: 2;
}
.ticket .ticket__wrapper p:nth-child(2) {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  border: 2px solid #e51039;
  color: #e51039;
  display: block;
  font-size: 21px;
  font-weight: bold;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 15px;
  position: relative;
  z-index: 2;
}
.ticket .ticket__wrapper p:nth-child(3) {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  border: 2px solid #e7ae00;
  color: #e7ae00;
  display: block;
  font-size: 21px;
  font-weight: bold;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 30px 15px;
  position: relative;
  z-index: 2;
}
.ticket .ticket__wrapper p:after{
  background-image: url(../img/sold-out.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 310px;
  transform: rotate(-18deg);
  content:"";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 768px){
.ticket {
  background-position: left 0 top 10px;
  background-size: 16vh;
  margin: 0 auto 30%;
  padding: 0 15px 70px;
}
.ticket .ticket__wrapper p:first-child {
  border-radius: 20px;
  font-size: 14px;
  text-align: left;
  margin: 15px 0 0;
  padding: 15px 36px 15px 15px;
}
.ticket .ticket__wrapper p:nth-child(2) {
  border-radius: 20px;
  font-size: 14px;
  text-align: left;
  margin: 15px 0 0;
  padding: 15px;
}
.ticket .ticket__wrapper p:nth-child(3) {
  border-radius: 20px;
  font-size: 14px;
  text-align: left;
  margin: 15px 0 0;
  padding: 15px 36px 15px 15px;
}
.ticket .ticket__wrapper p:after{
  background-size: 210px;
  transform: rotate(-14deg);
}
}
/*配信
-------------------------------------*/
.streaming {
  background: #fff;
  background-image: url(../img/apple_02.png);
  background-position: right -30px bottom 30px;
  background-repeat: no-repeat;
  background-size: 44vh;
  margin: 10% auto 12%;
  padding: 0 15px 90px;
  text-align: center;
}
.streaming p {
  color: #373737;
  font-size: 32px;
  font-weight: 600;
}
.streaming .button__hulu {
  align-items: center;
  background-color: #fff;
  border: 2px solid #208F37;
  border-radius: 100vh;
  cursor: pointer;
  display: flex;
  font-size: 21px;
  font-weight: bold;
  height: 80px;
  margin: 30px auto 0;
  max-width: 400px;
  justify-content: center;
  width: 30vw;
}
.streaming .button__hulu a {
  align-items: center;
  color: #208F37;
  display: flex;
  justify-content: center;
  line-height: 26px;
  width: 100%;
  height: 100%;
}
.streaming .button__hulu:hover {
  background: #208F37;
}
.streaming .button__hulu a:hover {
  color: #fff;
}
@media only screen and (max-width: 768px){
.streaming {
  background-image: url(../img/apple_03.png);
  background-position: right -20px top 10px;
  background-size: 16vh;
  margin: 0 auto 30%;
  padding: 0 15px 70px;
}
.streaming p {
  font-size: 26px;
}
.streaming .button__hulu {
  font-size: 16px;
  max-width: 350px;
  width: 100%;
  height: 60px;
  margin: 20px auto 0;
}
.streaming .button__hulu a {
  line-height: 20px;
}
}

/*背景設定
-------------------------------------*/
.first--contents__wrapper {
  padding: 0 15px;
  background-color: #fff;
  background-image: url(../img/sakura_01.png), url(../img/bg.png);
  background-position: right -10px top 30px, top;
  background-repeat: no-repeat, space;
  background-size: 44vh, 100% auto;
}
@media only screen and (max-width: 1024px){
  .first--contents__wrapper {
    background-position: right 0 top 10px, center top;
    background-size: 16vh, 100% auto;
  }
}
.second--contents__wrapper {
  padding: 0 15px;
  background-color: #fdedef;
  background-image: url(../img/sakura_02.png), url(../img/bg.png);
  background-position: left -30px top 0, top;
  background-repeat: no-repeat, space;
  background-size: 44vh, 100% auto;
}
@media only screen and (max-width: 1024px){
  .second--contents__wrapper {
    background-position: left -10px top 10px, center top;
    background-size: 16vh, 100% auto;
  }
}
.third--contents__wrapper {
  padding: 0 15px;
  background-color: #fff;
  background-image: url(../img/sakura_01.png), url(../img/bg.png);
  background-position: right -10px top 30px, top;
  background-repeat: no-repeat, space;
  background-size: 44vh, 100% auto;
}
@media only screen and (max-width: 1024px){
  .third--contents__wrapper {
    background-position: right 0 top 10px, center top;
    background-size: 16vh, 100% auto;
  }
}
.member {
  text-align: center;
  padding: 100px 15px 100px;
  background-color: #fff;
  background-image: url(../img/bg.png);
  background-repeat: space;
  background-position: center top;
  background-size: 100% auto;
  margin: 10% auto 12%;
}

@media only screen and (max-width: 768px){
  .member {
    padding: 50px 15px 50px;
    background-size: 100% auto;
  }
}

.shootingTime {
  text-align: center;
  padding: 100px 15px 100px;
  background-color: #fff;
  background-image: url(../img/bg.png);
  background-repeat: space;
  background-position: center top;
  background-size: 100% auto;
  margin: 10% auto 12%;
}

@media only screen and (max-width: 768px){
  .shootingTime {
    padding: 50px 15px 50px;
    background-size: 100% auto;
  }
}

/*ファーストコンテンツ
-------------------------------------*/
.first--contents {
  background: #fff;
  margin: 10% auto 12%;
  text-align: center;
}
.first--contents__text {
  font-size: 2.4rem;
  line-height: 36px;
  padding: 0 0 26px;
}
.first--contents__inner {
  padding: 0 0 90px;
}
.first--contents table {
  border-collapse: collapse;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.first--contents th {
  border-bottom: 1px solid #dedede;
  color: #e373ad;
  font-size: 1.8rem;
  padding: 20px 20px 20px 0px;
  text-align: left;
  width: 35%;
}
.first--contents tr:first-child th {
  border-top: 1px solid #dedede;
}
.first--contents td {
  border-bottom: 1px solid #dedede;
  font-size: 1.6rem;
  padding: 20px 0;
  text-align: left;
}
.first--contents tr:first-child td {
  border-top: 1px solid #dedede;
}
.first--contents td a:hover {
  transition: all .3s;
  opacity: 0.8;
}
.first--contents .note {
  color: #e60033;
}
.first--contents .small {
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px){
  .first--contents {
    margin: 0 auto 30%;
  }
  .first--contents__inner {
    padding: 0 0 60px;
  }
  .first--contents__text {
    font-size: 1.8rem;
    line-height: 30px;
    padding: 0 0 30px;
  }
  .first--contents table {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .first--contents tr {
    display: block;
    width: 100%;
  }
  .first--contents th {
    border-bottom: none;
    display: block;
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    padding: 15px 0 0;
  }
  .first--contents td {
    font-size: 1.4rem;
    display: block;
    padding: 5px 0 15px;
    text-align: center;
    width: 100%;
  }
  .first--contents tr:first-child td {
    border-top: none;
  }
}

/*セカンドコンテンツ
-------------------------------------*/
.second--contents {
  background: #fce8ea;
  margin: 90px auto 30px;
  text-align: center;
}
.second--contents__text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 36px;
}
.second--contents__text span {
  display: block;
  font-size: 2rem;
  padding: 10px 0 0;
}
.map {
  height: 0;
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 35% 0 0 0;
  position: relative;
  width: 100%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.second--contents__inner {
  padding: 30px 0 90px;
}
.contents__banner {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 768px){
  .second--contents {
    margin: 0 auto 30%;
  }
  .second--contents__inner {
    padding: 0 0 60px;
  }
  .second--contents__text {
    font-size: 1.8rem;
    line-height: 30px;
  }
  .second--contents__text span {
    font-size: 1.6rem;
  }
  .map {
    margin: 20px auto 0;
    padding: 60% 0 0 0;
  }
}

/*サードトコンテンツ
-------------------------------------*/
.third--contents {
  background: #fff;
  margin: 10% auto 12%;
  text-align: center;
}
.third--contents__title {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 0 15px;
}
.third--contents__text {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 0 25px;
}
.third--contents__inner {
  padding: 0 0 90px;
}
.third--contents table {
  border-collapse: collapse;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.third--contents th {
  border-bottom: 1px solid #dedede;
  color: #e373ad;
  font-size: 1.8rem;
  padding: 20px 20px 20px 0px;
  text-align: left;
}
.third--contents tr:first-child th {
  border-top: 1px solid #dedede;
}
.third--contents td {
  border-bottom: 1px solid #dedede;
  font-size: 1.6rem;
  padding: 20px 0;
  text-align: left;
}
.third--contents tr:first-child td {
  border-top: 1px solid #dedede;
}
.third--contents td a:hover {
  transition: all .3s;
  opacity: 0.8;
}
.third--contents .note {
  color: #e60033;
}
.third--contents .small {
  font-size: 1.3rem;
}
.third--contents .buttonList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.third--contents .buttonList .buttonList__item {
  margin: 0 10px 25px 0;
}
.third--contents .buttonList .buttonList__item a {
  border: 2px solid #e373ad;
  border-radius: 100vh;
  color: #e373ad;
  display: block;
  font-weight: bold;
  padding: 15px 10px;
  text-align: center;
  width: 320px;
}
.third--contents .third--contents__contact {
  background: #fdf3f9;
  border-radius: 6px;
  padding: 10px;
}
.third--contents .buttonList .buttonList__item a:hover {
  background: #e373ad;
  color: #fff;
  transition: all .3s;
}
@media only screen and (max-width: 768px){
  .third--contents {
    margin: 0 auto 30%;
  }
  .third--contents__inner {
    padding: 0 0 70px;
  }
  .third--contents__title {
    font-size: 1.4rem;
    padding: 0 0 15px;
  }
  .third--contents__text {
    font-size: 1.6rem;
    padding: 0 0 20px;
    text-align: center;
  }
  .third--contents table {
    background-color: rgba(255, 255, 255, 0.7);
  }
  .third--contents tr {
    display: block;
    text-align: center;
    width: 100%;
  }
  .third--contents th {
    border-bottom: none;
    display: block;
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    padding: 15px 0 0;
  }
  .third--contents td {
    font-size: 1.4rem;
    display: block;
    padding: 5px 0 15px;
    text-align: center;
    width: 100%;
  }
  .third--contents tr:first-child td {
    border-top: none;
  }
  .third--contents .buttonList {
    justify-content: center;
  }
  .third--contents .buttonList .buttonList__item a {
      padding: 15px 10px;
  }
  .third--contents .third--contents__contact {
    border-radius: 12px;
    text-align: center;
  }
  .third--contents table span {
    display: block;
    text-align: left;
  }
}
@media only screen and (max-width: 767px){
    .third--contents .buttonList .buttonList__item {
    margin: 0 0 15px;
  }
}
/*メンバー
-------------------------------------*/
.member__wrapper {
  border: solid 2px #e373ad;
  border-radius: 30px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 36px 40px;
  background: rgba(255, 255, 255, 0.9);
}
.member__text {
  color: #e373ad;
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 auto 40px;
  text-align: center;
}
.member__note {
  color: #353535;
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: left;
  margin: 20px 0 0;
}
.member__wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.member__wrapper li {
  list-style: none;
  width: 18%;
  margin: 0 1% 4%;
}
.member__wrapper li a:hover {
  transition: all .3s;
  opacity: 0.8;
}
.member__name {
  color: #353535;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 0 0 0;
}
@media only screen and (max-width: 768px){
  .member {
    padding: 50px 15px 50px;
  }
  .member__wrapper {
    border: solid 1px #e373ad;
    margin: 0;
    padding: 40px 15px;
  }
  .member__text {
    text-align: center;
    font-size: 2.2rem;
  }
  .member__wrapper ul {
    margin: 0 0 20px;
  }
  .member__wrapper li {
    width: 29.3%;
    margin: 0 2% 4%;
  }
  .member__name {
    font-size: 1.4rem;
  }
  .member__note {
    font-size: 1.3rem;
    margin: 0;
  }
  .member span.heading {
    font-size: 1.4rem;
    margin: 30px auto 20px;
    width: 150px;
  }
}
/*撮影タイム
-------------------------------------*/
.shootingTime__wrapper {
  border: solid 2px #e373ad;
  border-radius: 30px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 36px 40px;
  background: rgba(255, 255, 255, 0.9);
}
.shootingTime__title {
  color:#e373ad;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media only screen and (max-width: 768px){
  .shootingTime__wrapper {
      border: solid 1px #e373ad;
      margin: 0;
      padding: 40px 15px;
  }
  .shootingTime__title {
    font-size: 2.2rem;
  }
}
/*グッズ
-------------------------------------*/
.goods {
  background: #fff;
  background-image: url(../img/apple_03.png);
  background-position: right -30px top 30px;
  background-repeat: no-repeat;
  background-size: 44vh;
  margin: 10% auto 12%;
  padding: 0 15px 90px;
  text-align: center;
}
.goods h2 {
  color: #e373ad;
  display: inline-block;
  font-family: "Pinyon Script", cursive;
  font-size: 130px;
  font-weight: normal;
  max-width: 1200px;
  margin: 70px 0 0;
}
.goods h3 {
  color: #e373ad;
  font-size: 24px;
  margin: -18px 0 0;
  padding: 0 0 60px;
}
.goods__wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.goods__container {
  background: rgba( 255, 255, 255, 0.8 );
  border: 2px solid #e373ad;
  border-radius: 30px;
  padding: 40px;
  width: 48.5%;
}
.goods__container:nth-child(2n) {
  margin-left: 3%;
}
.goods__container:nth-child(n+3) {
  margin-top: 3%;
}
.goods__banner {
  width: 100%;
}
.goods__banner:hover {
  transition: all .3s;
  opacity: 0.74;
}
.goods__detail {
  margin: 20px auto 0;
}
.goods__text {
  color: #e373ad;
  font-size: 21px;
  text-align: center;
}
.goods .button {
  background-color: #fff;
  border: 2px solid #e373ad;
  border-radius: 100vh;
  font-size: 21px;
  font-weight: bold;
  margin: 20px auto 0;
  max-width: 400px;
  width: 90%;
}
.goods .button a {
  color: #e373ad;
  display: block;
  padding: 16px 0;
  text-align: center;
}
.goods .button:hover {
  background: #e373ad;
}
.goods .button a:hover {
  color: #fff;
}
.coming--soon {
  color: #e373ad;
  font-size: 42px;
}
@media only screen and (max-width: 768px){
.goods {
  background-position: right -20px top 10px;
  background-size: 16vh;
  margin: 0 auto 30%;
  padding: 0 15px 70px;
}
.goods h2 {
  font-size: 80px;
  margin: 50px 0 0;
}
.goods h3 {
  font-size: 18px;
  margin: -18px 0 40px;
  padding: 0;
}
.goods__container {
  border-radius: 20px;
  padding: 26px;
  width: 100%;
}
.goods__container:nth-child(2n) {
  margin-left: 0;
}
.goods__container:nth-child(n+2) {
  margin-top: 15px;
}
.goods__text {
  font-size: 16px;
}
.goods .button {
  font-size: 16px;
  max-width: 350px;
  margin: 20px auto 0;
  height: 60px;
  width: 100%;
}
.coming--soon {
  font-size: 30px;
}
}
/*トピックス
-------------------------------------*/
.topics {
  background: #fff;
  background-image: url(../img/apple_01.png);
  background-position: left -30px top 30px;
  background-repeat: no-repeat;
  background-size: 44vh;
  margin: 10% auto 12%;
  padding: 0 15px 90px;
  text-align: center;
}
.topics h2 {
  color: #e373ad;
  display: inline-block;
  font-family: "Pinyon Script", cursive;
  font-size: 130px;
  font-weight: normal;
  max-width: 1200px;
  margin: 70px 0 0;
}
.topics h3 {
  color: #e373ad;
  font-size: 24px;
  margin: 0;
  padding: 0 0 48px;
}
.topics ul {
  max-width: 1200px;
  margin: 0 auto;
}
.topics ul li {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #e373ad;
  border-radius: 100vh;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  margin: 12px 0 0;
  text-align: left;
}
.topics ul li a {
  color: #e373ad;
  display: block;
  padding: 20px 0px 20px 30px;
  width: 100%;
}
.topics ul li a span {
  font-weight: bold;
  padding: 0 20px 0 0;
}
.topics ul li:hover {
  background: #e373ad;
  transition: all .3s;
}
.topics ul li a:hover {
  color: #fff;
}
@media only screen and (max-width: 768px){
.topics {
  background-position: left -10px top 10px;
  background-size: 16vh;
  margin: 0 auto 30%;
  padding: 0 15px 70px;
}
.topics h2 {
  font-size: 80px;
  margin: 50px 0 0;
}
.topics h3 {
  font-size: 18px;
  margin: 0px 0 40px;
  padding: 0;
}
.topics ul li {
  border-radius: 20px;
  font-size: 14px;
}
.topics ul li a {
  line-height: 20px;
  padding: 15px;
}
}
/*フッター
-------------------------------------*/
footer {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 25px;
  text-align: center;
  position: relative;
  z-index: auto;
}
.copyright {
  color: #e373ad;
  font-size: 17px;
  font-weight: bold;
  padding: 80px 0 0;
}
footer ul {
  display: flex;
  justify-content: space-between;
  max-width: 1015px;
  margin: 0 auto;
  padding: 0 15px;
}
footer ul li {
  list-style-type: none;
  width: 32%;
}
footer ul li img:hover {
  transition: all .3s;
  opacity: 0.74;
}
@media only screen and (max-width: 768px){
footer {
  margin: 0 auto;
  padding: 50px 0 15px;
}
footer ul {
  flex-wrap: wrap;
  margin: 0 15px;
}
footer ul li {
  width: 48%;
  margin: 0 0 4%;
}
.copyright {
  font-size: 14px;
  padding: 50px 0 0;
}
}
/*TOPへ戻る
-------------------------------------*/
.header-box {
    display: none;
}
.pagetop {
  bottom: 30px;
  position: fixed;
  right: 20px;
  z-index: 3;
}
.pagetop a {
  background: #e373ad;
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 55px;
  height: 55px;
  border-radius: 60px;
}
.pagetop a::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 10px;
  margin: auto;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 10px;
}
.pagetop:hover {
  transition: all .3s;
  opacity: 0.8;
}
@media screen and (max-width: 768px){
  .pagetop {
    bottom: 5%;
    right: 3%;
  }
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}
/*チケット購入ボタン
-------------------------------------*/
.box {
  width: 75vw;
  background: rgba(255, 255, 255, .90);
  border-radius: 10px;
  position: fixed;
  bottom: 20px;
  right: 1vw;
  border: 4px solid #FFF4F6;
  padding: 1em 1em;
  max-width: 400px;
  z-index: 3;
}
.box .button__akb48groupe {
  background-color: #fff;
  border: 2px solid #FF69B3;
  border-radius: 100vh;
  font-size: 21px;
  font-weight: bold;
  width: 90%;
  margin: 20px auto;
}
.box .button__akb48groupe a {
  color: #FF69B3;
  display: block;
  font-size: 14px;
  padding: 16px 0;
  text-align: center;
}
.box .button__lawson {
  background-color: #fff;
  border: 2px solid #0074be;
  border-radius: 100vh;
  font-size: 21px;
  font-weight: bold;
  width: 90%;
  margin: 20px auto;
}
.box .button__lawson a {
  color: #0074be;
  display: block;
  font-size: 14px;
  padding: 16px 0;
  text-align: center;
}
.box .button__hulu {
  background-color: #fff;
  border: 2px solid #208F37;
  border-radius: 100vh;
  font-size: 21px;
  font-weight: bold;
  width: 90%;
  margin: 20px auto;
}
.box .button__hulu a {
  color: #208F37;
  display: block;
  font-size: 14px;
  padding: 16px 0;
  text-align: center;
}
.batsu {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}
.batsu::before, .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 24px;
  background: #e373ad;
}
.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.batsu:hover {
  cursor: pointer;
  transition: all .3s;
  opacity: 0.8;
}
.batsu:active {
  background: rgb(127, 194, 239);
}
.action__close {
  position: relative;
}
.action__close .batsu {
  position: absolute;
  right: 10px;
  top: 8px;
}
.add__control .checkbox {
  display: none;
}
.add__control .action__close #close:checked ~ .batsu {
  display: none;
}
.add__control .action__close #close:checked ~ .box {
  display: none;
}
@media screen and (max-width: 640px){
.box {
  width: 70vw;
  bottom: 16px;
  right: 8px;
  padding: 1em 1em;
  max-width: 300px;
}
.box .button__akb48groupe {
  font-size: 21px;
  width: 94%;
  margin: 14px auto;
}
.box .button__akb48groupe a {
  font-size: 10px;
  padding: 12px 0;
}
.box .button__lawson {
  font-size: 21px;
  width: 94%;
  margin: 14px auto;
}
.box .button__lawson a {
  font-size: 10px;
  padding: 12px 0;
}
.box .button__hulu {
  font-size: 21px;
  width: 94%;
  margin: 14px auto;
}
.box .button__hulu a {
  font-size: 10px;
  padding: 12px 0;
}
.action__close .batsu {
  right: 2px;
  top: 2px;
}
.batsu::before, .batsu::after {
  height: 18px;
}
}
/*モーダル
-------------------------------------*/
body.modal__open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body.modal__open .modal {
  opacity: 1;
  visibility: visible;
}
.modal__block {
  border-radius: 6px;
  position: absolute;
  padding: 75px 50px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 84%;
  min-width: 500px;
  max-width: 1000px;
  background-color: #fff;
}
.modal__close {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  cursor: pointer;
}
.modal__close::before,
.modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #e373ad;
  content: "";
}
.modal__close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.modal__close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.modal__close:hover {
  cursor: pointer;
  transition: all .3s;
  opacity: 0.8;
}
.modal__text {
  text-align: left;
  font-size: min(2vw, 18px);
  max-width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px){
.modal__close {
  width: 18px;
  top: 20px;
  right: 10px;
}
.modal__block {
  min-width: 100px;
  width: 88%;
  padding: 34px 28px 28px;
}
.modal__text {
  text-align: left;
  font-size: min(2.8vw, 14px);
}
}