/*Mv
=======================================================*/
.mv{
  width: 650px;
  margin: 0 auto;
  position: relative;
}
.mv-inner{
  position: relative;
  padding-top: 60px;
  height: 87vh;
}
.mv-inner::before{
  content: "";
  display: block;
  position: fixed;
  top: 60px;
  z-index: -1;
  width: 650px;
  height: 100vh;
  animation: animationZoom1 5s ease-in-out forwards;
  background: url(../img/mv-bg.jpg) no-repeat;
  background-size: 100% auto;
  background-position: top;
}
.mv-catch{
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.mv-catch-txt{
  color: #fff;
  font-size: 25px;
  letter-spacing: 11px;
  text-shadow: 2px 2px 10px #FF5A79,
  -2px 2px 10px #FF5A79,
  2px -2px 10px #FF5A79,
  -2px -2px 10px #FF5A79;
  width: fit-content;
  margin: 0 auto;
}
.mv-catch-menu{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 90%;
}
.mv-catch-menu-num{
	font-family: "Futura B";
  color: #fff;
  text-shadow: 2px 2px 10px #FF5A79,
  -2px 2px 10px #FF5A79,
  2px -2px 10px #FF5A79,
  -2px -2px 10px #FF5A79;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  position: relative;
}
.mv-catch-menu-num .mv-img1{
  position: absolute;
  width: 170px;
  left: -4%;
  bottom: 66%;
}
.mv-catch-menu-num .time{
  font-size: 85px;
  margin-bottom: -12px;
  margin-right: 5px;
}
.mv-catch-menu-num .time-unit{
  font-size: 47px;
  margin-right: -15px;
}
.mv-catch-menu-num .price{
  font-size: 115px;
  margin-bottom: -19px;
}
.mv-catch-menu-num .price-unit{
  font-size: 50px;
  margin-left: -5px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.mv-catch-menu-num .price-tax{
  font-size: 16px;
  font-family: "ヒラギノ角ゴシック W4";
  margin-bottom: 5px;
}
ul.mv-catch-menu-list{
  display: flex;
  justify-content: space-between;
  margin: 20px auto 30px;
}
ul.mv-catch-menu-list li{
  border: 1px solid #fff;
  position: relative;
  color: #fff;
  width: calc(100% / 5 - 10px);
  text-align: center;
  font-size: 19px;
  font-family: "ヒラギノ角ゴシック W6";
  padding: 5px 0;
}
ul.mv-catch-menu-list li::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FF5A79;
  filter: blur(4px);
  z-index: -1;
}

@media screen and (max-width: 650px){
  .mv{
    width: 100%;
  }
  .mv-inner::before{
    width: 100%;
  }
  .mv-catch-txt{
    font-size: 5vw;
    letter-spacing: 7px;
  }
  .mv-catch-menu{
    width: 95%;
  }
  .mv-catch-menu-num .mv-img1{
    width: 25vw;
    left: -2%;
  }
  .mv-catch-menu-num .time{
    font-size: 12vw;
    margin-bottom: -7px;
  }
  .mv-catch-menu-num .time-unit{
    font-size: 7vw;
    margin-right: -5px;
  }
  .mv-catch-menu-num .price{
    font-size: 18vw;
    margin-bottom: -10px;
  }
  .mv-catch-menu-num .price-unit{
    font-size: 7vw;
  }
  .mv-catch-menu-num .price-tax{
    font-size: 3vw;
  }
  ul.mv-catch-menu-list{
    margin: 20px auto;
  }
  ul.mv-catch-menu-list li{
    font-size: 3vw;
    width: calc(100% / 5 - 5px);
  }
}
@media screen and (max-width: 520px){
  .mv-inner{
    height: 80vh;
  }
}

/*年齢認証
=======================================================*/
.certify .common{
  padding-top: 50px;
}
.certify-wrap{
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}
a.certify-btn{
  width: 50%;
  text-align: center;
  font-size: 25px;
  border-radius: 30px;
  padding: 5px 0;
  letter-spacing: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.certify-no{
  border: 1px solid #000;
	font-family: "Futura M";
}
a.certify-no:hover{
  background: #000;
  color:#fff;
  opacity: 1;
}
a.certify-yes{
  border: 3px solid #34CBFF;
  background: linear-gradient(180deg, rgba(255,255,255) 0%, rgba(52,203,255,1) 51%, rgba(52,203,255,1) 100%);
  position: relative;
}
a.certify-yes span{
  color:#fff;
  font-family: "Futura B";
  position: relative;
  z-index: 2;
}
a.certify-yes::after{
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-duration: .3s;
  opacity: 0;
  background: linear-gradient(180deg, rgba(52,203,255,1) 0%, rgba(52,203,255,1) 51%, rgba(255,255,255) 100%);
  border-radius: 20px;
}
a.certify-yes:hover{
  opacity: 1;
}
a.certify-yes:hover::after{
  opacity: 1;
}
.certify-recruit{
  margin-top: 30px;
}
.certify-recruit-btn{
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFA9C8;
  border-radius: 30px;
  color: #fff;
  margin: 0 auto;
  outline: 1px solid #FFFFFF;
  outline-offset: -4px;
  padding: 10px 20px;
  font-size: 18px;
}
.certify-recruit-btn span{
  background: #998875;
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 14px;
}
a.certify-recruit-btn:hover{
  background:#FE7688 ;
  opacity: 1;
}

@media screen and (max-width: 650px){
  .certify-wrap{
    gap:20px;
  }
  a.certify-btn{
    font-size: 19px;
  }
  .certify-recruit-btn{
    font-size: 15px;
  }
  .certify-recruit-btn span{
    font-size: 12px;
  }
}

/*イベント
=======================================================*/
.event-wrap{
  overflow: hidden;
}
.event-swiper{
  margin: 0 auto 30px;
  width: 95%;
}
.swiper-pagination{
  bottom:-30px!important;
}
.swiper-pagination-bullet{
  background: #929190 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active{
  background: #FE7688!important;
}

@media screen and (max-width: 650px){
}

/*リンク
=======================================================*/
.link-wrap{
  width: 80%;
  margin: 0 auto;
}
.link-wrap img{
  width: 100%;
  display: block;
}
.link-wrap a{
  margin-bottom: 10px;
  display: block;
}
.link-wrap a:last-child{
  margin-bottom: 0;
}

@media screen and (max-width: 650px){
}

/*グループ
=======================================================*/
.group{
  padding-top: 20px;
}
.group-img{
  width: 95%;
  margin: 0 auto 30px;
  display: block;
}
.group-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 90%;
  justify-content: space-between;
  margin: 0 auto;
}
.group-box{
  display: block;
  width: calc(100% / 4 - 10px);
  text-align: center;
}
.group-img1{
  display: block;
  object-fit: contain;
}
.group-ttl{
  color:#FE7688;
  font-size: 9.7px;
  margin-top: 5px;
}
.group-txt{
  font-size: 9px;
  margin-top: 3px;
}

@media screen and (max-width: 650px){
  .group-img{
    width: 100%;
  }
  .group-box{
    width: calc(100% / 2 - 10px);
  }
  .group-ttl{
    font-size: 2.6vw;
  }
}

/*ブログ
=======================================================*/
.blog-wrap{
  width: 95%;
  margin: 0 auto;
}
.blog-box{
  margin-bottom: 30px;
  box-shadow: 0px 0px 15px #606060;
}
.blog-box:last-child{
  margin-bottom: 0;
}
img.blog-thumbnail{
  width: 100%;
  display: block;
}
.blog-cate{
  padding: 10px 20px;
  background: #FF5A79;
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
}
.blog-txt{
  padding:10px 20px 20px 20px;
}
.blog-time{
  color: #606060;
  font-size: 13px;
}
.blog-ttl{
  text-align: center;
  font-family: "ヒラギノ角ゴシック W6";
  color: #606060;
  padding: 20px 0;
  border-bottom: 1px solid;
  margin-bottom: 20px;
}
a.blog-btn{
  border: 3px solid #CC0000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(204, 0, 0) 51%, rgba(204, 0, 0) 100%);
  border-radius: 6px;
  margin: 0 auto;
  padding: 6px 15px;
  display: block;
  width: fit-content;
  position: relative;
}
a.blog-btn span{
  font-size: 13px;
  color: #fff;
  position: relative;
  z-index: 2;
}
a.blog-btn:after{
  content: "";
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-duration: .3s;
  opacity: 0;
  background: linear-gradient(180deg, rgba(204, 0, 0) 0%, rgba(204, 0, 0) 51%, rgba(255, 255, 255) 100%);
  border-radius: 2px;
}
a.blog-btn:hover,
a.blog-btn:hover::after{
  opacity: 1;
}
a.blog-all-btn{
  border: 3px solid #BE9A39;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(190, 154, 57) 51%, rgba(190, 154, 57) 100%);
  border-radius: 30px;
  width: fit-content;
  margin: 30px auto 0;
  padding: 10px 20px;
  display: block;
  position: relative;
}
a.blog-all-btn span{
  color: #fff;
  font-family: "ヒラギノ角ゴシック W6";
  letter-spacing: 3px;
  position: relative;
  z-index: 2;
}
a.blog-all-btn::after{
  content: "";
  background: linear-gradient(180deg, rgba(190, 154, 57) 0%, rgba(190, 154, 57) 51%, rgba(255, 255, 255) 100%);
  opacity: 0;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-duration: .3s;
  border-radius: 20px;
}
a.blog-all-btn:hover,
a.blog-all-btn:hover::after{
  opacity: 1;
}

@media screen and (max-width: 650px){
  .blog-ttl{
    padding: 10px 0;
  }
  .blog-cate{
    font-size: 11px;
  }
  .blog-time{
    font-size: 11px;
  }
}

/*グループリンク
=======================================================*/
.group-link-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  width: 95%;
}
a.group-link-txt{
  display: block;
  width: calc(100% / 4);
  color: #FE7688;
  text-align: center;
  font-size: 11px;
}
a.group-link-txt span{
  display: block;
  font-size: 8px;
  color: #000;
}

@media screen and (max-width: 650px){
  .group-link-wrap{
    gap:10px;
  }
  a.group-link-txt{
    width: calc(100% / 2 - 10px);
  }
}