@charset "UTF-8";
/*共通CSS
====================*/
html {
  font-size: 62.5%; /*1rem=10px*/
  scroll-behavior: smooth;
}
@media (max-width:374px) {
  .hidden_sp5 {
    display: none !important;
  }
}
@media (min-width:375px) and (max-width:767px) {
  .hidden_sp {
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .hidden_tab {
    display: none !important;
  }
}
@media (min-width:768px) {
  .hidden_pc {
    display: none !important;
  }
}
body {
  width: 100%;
  margin: 0 auto;
  point_03_ma letter-spacing: 1.5px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width:751px) {
  body {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
}
#back {
  background-color: #fff;
  /*  background:linear-gradient(40deg, #9ff3ff, #9ff3ff, #f0faff, #f0faff, #80efff);*/
  background: linear-gradient(40deg, #7595cd, #f3f8ff, #f3f8ff, #7595cd); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}
.all {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.shadow {
  box-shadow: 30px 0px 90px -10px rgba(225, 225, 225, 1), -30px 0px 90px -10px rgba(225, 225, 225, 1);
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
video {
  width: 100%;
}
img {
  width: 100%;
}
a img {
  text-decoration: none;
}
p {
  margin-bottom: 0;
  margin-top: 3px;
}
ol, ul, li {
  list-style: none;
}
.inner {
  padding: 0 4.2vw;
}
.left {
  text-align: left !important;
}
.center {
  text-align: center;
}
@media (min-width:751px) {
  .inner {
    padding: 0 3vw;
  }
}
/*--▼注釈--*/
.comment_wrap {
  margin-top: 10px;
  padding-left: 3vw;
}
@media (min-width:751px) {
  .comment_wrap {
    padding-left: 10px;
  }
}
.comment_wrap p {
  text-align: left;
}
.cp_comment_wrap {
  margin-top: 10px;
}
@media (min-width:751px) {
  .cp_comment_wrap {
    padding-left: 10px;
  }
}
.comment {
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (min-width:751px) {
  .comment {
    font-size: 1.5rem;
    padding: 0;
  }
}
.comment a {
  border-bottom: solid 1px #4c4948;
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.mt15 {
  margin-top: 15px;
}
.mb10 {
  margin-bottom: 10px;
}
.red {
  color: #c41d29;
}
.blue_03 {
  color: #7595cd;
}
.fz10 {
  font-size: 1rem;
}
@media (min-width:751px) {
  .fz10 {
    font-size: 1.2rem;
  }
}
.fz12 {
  font-size: 1.2rem;
}
@media (min-width:751px) {
  .fz12 {
    font-size: 1.4rem;
  }
}
.pink {
  color: #e63462;
}
.pl16 {
  padding-left: 16px;
}
.din {
  font-family: 'DIN Alternate', sans-serif;
}
@media (min-width:751px) {
  .din {
    font-size: 1.7rem;
  }
}
.fz20 {
  font-size: 2rem;
}
@media (min-width:751px) {
  .fz20 {
    font-size: 2.4rem;
  }
}
.mt20 {
  margin-top: 20px;
}
header {
  position: absolute;
  padding: 0 16px;
  height: 60px;
  display: flex;
  align-items: center;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 4px 14px -12px #777777;
}
@media (min-width:601px) {
  header {
    height: 80px;
    width: 600px;
    max-width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
  }
}
.header_logo img {
  width: 60%;
  display: flex;
  align-items: center;
}
@media (min-width:751px) {
  .header_logo img {
    width: 50%;
  }
}
/*
===============================================================================
■ MV
===============================================================================
*/
.fv_mv_img {
  z-index: -2;
}
.fv_mv {
  position: relative;
}
.fv_mv_btn {
  position: absolute;
  bottom: 8px;
}
.fv_mv_btn img {
  width: 94%;
  padding-left: 6%;
}
.fv_cp {
  z-index: 3;
  pointer-events: none;
  background: #f6f7fb;
}
/*ボタンアニメーション*/
.updown {
  animation-name: updown1; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/*
===============================================================================
■ MENU
===============================================================================
*/
.blue_area {
  background-color: #5f90cc;
  /*  background-image: repeating-linear-gradient(-60deg, transparent, transparent 9px, rgba(83, 129, 194, 0.64) 9px, rgba(83, 129, 194, 0.64) 17px )*/
  background-image: repeating-linear-gradient(-60deg, transparent, transparent 5px, rgba(83, 129, 194, 0.64) 5px, rgba(83, 129, 194, 0.64) 14px)
}
.cp_area {
  padding-bottom: 20px;
}
@media (min-width:751px) {
  .cp_area {
    padding-bottom: 40px;
  }
}
.cp_menu ul {
  display: flex;
  padding: 20px 0 0;
  width: 100%;
}
@media (min-width:751px) {
  .cp_menu ul {
    padding: 30px 0;
  }
}
.cp_menu ul li:not(:nth-child(3)) {
  padding-right: 10px;
}
.cp_menu ul li img {
  width: 100%;
}
/*
===============================================================================
■ CPエリア
===============================================================================
*/
.btn {
  padding-top: 2em;
}
.cp_area {
  color: #4c4948;
}
.cp_kengaku_ttl {
  padding: 20px 4vw 15px 4vw;
  text-align: center;
}
.cp_kengaku_ttl img {
  width: 96%;
}
@media (min-width:751px) {
  .cp_kengaku_ttl {
    padding: 20px 2vw 15px 2vw;
  }
}
.cp_kengaku_detail {
  background-color: #fff;
  padding: 5% 3vw;
  margin-bottom: 20px;
}
.cp_kengaku_detail_ttl {
  text-align: center;
  margin-bottom: 10px;
}
.cp_kengaku_detail_ttl img {
  width: 90%;
}
/*
.cp_kengaku_detail p {
  text-align: center;
}
*/
.cp_kengaku_detail_ttl p {
  font-size: 1.6rem;
}
.schedule {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 10px;
}
@media (min-width:500px) {
  .schedule {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
}
.cp_kengaku {
  text-align: center;
}
.cp_kengaku img {
  margin: 0 auto;
}
/*.btn img {
  padding-top: 20px;
}*/
.cp_plan_detail {
  background-color: #fff;
  padding: 16px 0 16px;
}
@media (min-width:751px) {
  .cp_plan_detail {
    padding: 16px 4.2vw 16px;
  }
}
.tab_content_description {
  background: white;
  padding: 2rem;
}
.tab_comment p {
  display: block;
}
.tab_comment {
  width: 65%;
  position: relative;
  top: 7vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 1;
}
@media (min-width:751px) {
  .tab_comment {
    top: 30px;
    right: -56%;
    z-index: 1;
  }
}
.cp_norikae_fukidashi {
  position: relative;
}
.cp_norikae_fukidashi img {
  position: absolute;
  top: 20px;
  z-index: 1;
  padding: 0 17%;
}
.cp_norikae {
  background-color: #fff;
  padding: 16px;
  position: relative;
  margin-top: 41px;
  padding-top: 11vw;
  box-shadow: 5px 5px 0px rgb(0 0 0 / 20%);
}
@media (min-width:751px) {
  .cp_norikae {
    padding-top: 62px;
  }
}
/*voiceエリア*/
.voice_area {
  background-color: #efefef;
  padding: 10vw 0 25px 0;
  color: #4c4948;
}
@media (min-width:751px) {
  .voice_area {
    padding: 100px 0 50px 0;
  }
}
.voice_area .comment_wrap {
  padding-top: 0px;
}

@media (min-width:751px) {
  .voice_area .comment_wrap {
    padding-top: 3px;
  }
  .voice_area .comment {
    padding-left: 16px;
  }
}

.voice_ttl {
  text-align: center;
  padding-bottom: 6vw;
  background-color: #efefef;
}
@media (min-width:751px) {
  .voice_ttl {
    padding-bottom: 70px;
  }
}
.voice_ttl img {
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
}
.voice_area img {
  padding: 0 10px;
}
/*Slickのためのcss*/
.slick-arrow_prev, .slick-arrow_next {
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}
.slick-arrow_prev {
  left: 6px;
}
.slick-arrow_next {
  right: 6px;
}
@media screen and (max-width: 750px) {
  .slick-arrow_prev, .slick-arrow_next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 200;
  }
}
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  /*    width:94%;*/
  margin: 0 auto;
}
.slider img {
  height: auto;
}
.slider .slick-slide {
  transform: scale(0.9); /*左右の画像のサイズを80%に*/
  transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}
.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}
/*
===============================================================================
■ Rintosull美ボディメイクのための5つのポイント
===============================================================================
*/
.point_area {
  color: #4c4948;
}
.point_main_ttl {
  background-color: #efefef;
}
/*point_01*/
/*.point_01 {
  background-color: #efefef;
  margin-bottom: 12em;

}*/
.point_01 {
  padding-bottom: 32vw;
  background: #efefef;
  margin-bottom: 0;
}
.point_ttl, .point_subttl {
  text-align: center;
}
.point_01_ttl img {
  padding: 6vw 0;
  width: 67%;
}
@media (min-width:751px) {
  .point_01_ttl img {
    padding: 3vw 0;
    width: 55%;
  }
  /*.point_01 {
  background-color: #efefef;
  margin-bottom: 20em;

}*/
  .point_01 {
    padding-bottom: 200px;
    background-color: #efefef;
    margin-bottom: 0em;
  }
}
.point_subttl img {
  width: 80%;
  padding: 40px 0 25px 0;
}
@media (min-width:751px) {
  .point_subttl img {
    padding: 50px 0;
  }
}
.point_event_lesson {
  padding: 0 8.4vw;
  margin-bottom: 32vw
}
@media (min-width:751px) {
  .point_event_lesson {
    padding: 0 6vw;
    margin-bottom: 250px;
  }
}
/*point_02*/
.point_02 {
  text-align: left;
  background-color: #fff;
}
.point_02 {
  position: relative;
  z-index: 0;
}
.point_02::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  background: #fff;
  transform: skewY(-10deg);
  transform-origin: top left;
}
.point_02_wrap {
  position: relative;
  top: -17vw;
  padding-bottom: 40px;
}
@media (min-width:375px) and (max-width:767px) {
  .point_02_wrap {
    top: -17vw;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .point_02_wrap {
    top: -151px;
  }
}
@media (min-width:1024px) {
  .point_02_wrap {
    top: -170px;
  }
}
.point_02_ttl img {
  width: 100%;
}
@media (min-width:751px) {
  .point_02_ttl img {
    padding: 1vw 0 0;
    width: 80%;
  }
}
.point_02_yoga_img {
  margin-top: 30px;
}
.point_02_weffect_img {
  padding: 50px 35px 20px 35px;
}
@media (min-width:751px) {
  .point_02_weffect_img {
    padding: 80px 35px 40px 35px;
  }
}
.point_02_subttl {
  padding: 0 2vw 35px 2vw;
  text-align: center;
}
.point_02_subttl img {
  width: 70%;
}
@media (min-width:751px) {
  .point_02_subttl {
    padding: 0 0 50px 0;
  }
}
/*point_03*/
.point_03 {
  background-color: #efefef;
  position: relative;
  z-index: 0;
  padding-bottom: 24px;
}
.point_03::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  background: #efefef;
  transform: skewY(10deg);
  transform-origin: top right;
}
.point_03_wrap {
  position: relative;
  top: -17vw;
  padding-bottom: 40px;
}
@media (min-width:375px) and (max-width:767px) {
  .point_03_wrap {
    top: -17vw;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .point_03_wrap {
    top: -151px;
  }
}
@media (min-width:1024px) {
  .point_03_wrap {
    top: -170px;
  }
}
.point_03_ttl {
  margin-bottom: 20px;
}
.point_03_ttl img {
  width: 67%;
}
@media (min-width:751px) {
  .point_03_ttl img {
    padding: 4vw 0 1vw;
    width: 54%;
  }
}
.point_03_subttl {
  text-align: center;
}
.point_03_subttl img {
  width: 70%;
  padding: 20px 0 25px 0;
}
@media (min-width:751px) {
  .point_03_subttl img {
    padding: 40px 0 40px 0;
  }
}
.point_03_map {
  border: 1px solid #4c4948;
  padding: 0;
  margin: 0;
  width: 90%;
}
.lesson_schedule {
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width:751px) {
  .lesson_schedule {
    font-size: 2.5rem;
  }
}
.lesson_schedule span {
  color: #fff;
  background-color: #4c4948;
  padding: 0 5px;
  margin-right: 10px;
}
.lesson_schedule img {
  padding-top: 10px;
}
.point_03_comment {
  text-align: left;
}
.point_03_lessontime {
  display: flex;
  text-align: center;
  align-items: center;
  margin-top: 20px;
}
.lessontime_ttl {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  background-color: #5381c2;
  color: #fff;
}
@media (min-width:751px) {
  .lessontime_ttl {
    height: 90px;
  }
}
.lessontime_ttl p {
  margin-top: 0;
  font-size: 1.4rem;
}
@media (min-width:751px) {
  .lessontime_ttl p {
    margin-top: 0;
    font-size: 2rem;
  }
}
.lessontime_txt {
  height: 70px;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media (min-width:751px) {
  .lessontime_txt {
    height: 90px;
  }
}
.lessontime_txt p {
  margin-top: 0;
  font-size: 2rem;
}
@media (min-width:751px) {
  .lessontime_txt p {
    font-size: 2.5rem;
  }
}
.lessontime_txt span {
  font-size: 1.5rem;
}
.point_03_ekichika {
  text-align: center;
  margin: 0;
}
.point_03_subttl_02 {
  width: 80%;
  padding: 40px 0 25px 0;
}
@media (min-width:751px) {
  .point_03_subttl_02 {
    padding: 80px 0 0 0;
  }
}
.add_comment {
  width: 70%;
  margin: 0 auto;
  max-width: 100%;
  padding: 20px 0;
}
/*point_04*/
.point_04 {
  position: relative;
  z-index: 0;
  padding-bottom: 40px;
}
.point_04::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  background: #fff;
  transform: skewY(-10deg);
  transform-origin: top left;
}
.point_04_wrap {
  position: relative;
  top: -17vw;
  padding-bottom: 40px;
}
@media (min-width:375px) and (max-width:767px) {
  .point_04_wrap {
    top: -17vw;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .point_04_wrap {
    top: -151px;
  }
}
@media (min-width:1024px) {
  .point_04_wrap {
    top: -170px;
  }
}
.point_04_ttl {
  margin-bottom: 20px;
}
.point_04_ttl img {
  width: 85%;
}
@media (min-width:751px) {
  .point_04_ttl img {
    padding: 4vw 0 0;
    width: 70%;
  }
}
/*point_05*/
.point_05 {
  background-color: #efefef;
  padding-bottom: 10px;
  position: relative;
  z-index: 0;
}
.point_05::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 60%;
  background: #efefef;
  transform: skewY(10deg);
  transform-origin: top right;
}
.point_05_wrap {
  position: relative;
  top: -17vw;
  margin-bottom: -70px;
}
@media (min-width:375px) and (max-width:767px) {
  .point_05_wrap {
    top: -17vw;
    margin-bottom: -18vw;
  }
}
@media (min-width:768px) and (max-width:1023px) {
  .point_05_wrap {
    top: -151px;
    margin-bottom: -160px;
  }
}
@media (min-width:1024px) {
  .point_05_wrap {
    top: -170px;
    margin-bottom: -180px;
  }
}
.point_05_ttl img {
  width: 85%;
}
@media (min-width:751px) {
  .point_05_ttl img {
    padding: 4vw 0 0;
    width: 70%;
  }
}
.slider_studio {
  padding: 10px 0 0px 0;
}
.slider_studio img {
  padding: 0 5px;
}
@media (min-width:751px) {
  .slider_studio img {
    padding: 0 10px;
  }
}
/*見学会エリア*/
p.cta_text {
  font-size: clamp(20px, 5vw, 30px);
  position: relative;
  text-align: center;
}
p.cta_text:before {
  content: "";
  position: absolute;
  left: 10%;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: white;
  transform: rotate(60deg);
}
p.cta_text:after {
  content: "";
  position: absolute;
  right: 10%;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: white;
  transform: rotate(-60deg);
}
.kengakukai_area {
  background-color: #7595cd;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: left;
}
@media (min-width:751px) {
  .kengakukai_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.kengakukai_area_ttl {
  padding-bottom: 10px;
}
/*
===============================================================================
■ 今話題のエクササイズ
===============================================================================
*/
.feature_area {
  background-color: #efefef;
}
.feature_01_contents {
  background-color: #fff;
  padding: 70px 0 0;
}
.feature_02_contents_01 {
  background-color: #fff;
  padding: 70px 0 0;
}
.feature_02_contents_02 {
  background-color: #fff;
  padding: 40px 0 0;
}
.feature_03_contents {
  padding-top: 50px;
}
.feature_contents_ttl {
  position: relative;
  text-align: center;
  top: 50px;
  margin-top: -25px;
}
.feature_contents_ttl img {
  width: 70%;
}
/*
===============================================================================
■ 見学会の流れ
===============================================================================
*/
.flow_area {
  color: #4c4948;
}
.flow_contents img {
  padding-top: 20px;
}
.flow_contents p {
  margin-top: 5px;
}
.ml16 {
  margin-left: 16px;
}
.flow_ttl {
  text-align: center;
}
.flow_ttl img {
  width: 70%;
  padding: 25px 0 0px 0;
}
/*ご入会・ご登録手続きに必要なもの*/
.list_area {
  padding-bottom: 30px;
  color: #4c4948;
}
table {
  font-size: 1.3rem;
  margin: 0 auto;
  letter-spacing: 1px;
  width: 100%;
}
@media (min-width:751px) {
  table {
    font-size: 1.4rem;
  }
}
td {
  border: solid 1px #d2d2d2;
  vertical-align: middle;
  padding: 15px 5px;
}
@media (min-width:751px) {
  td {
    padding: 10px 10px;
  }
}
.td_ttl {
  font-size: 1.2rem;
}
@media (min-width:751px) {
  .td_ttl {
    font-size: 1.6rem;
  }
}
.td_txt {
  text-align: center;
}
.td_price_01 {
  font-size: 1.5rem;
}
@media (min-width:751px) {
  .td_price_01 {
    font-size: 1.8rem;
  }
}
.td_price_02 {
  font-size: 2.3rem;
}
.list_ttl {
  font-size: 2rem;
  text-align: center;
  background-color: #7595cd;
  color: #fff;
  padding: 10px 0;
  margin-top: 40px;
}
@media (min-width:751px) {
  .list_ttl {
    padding: 20px 0;
  }
}
.list_pink {
  padding: 5px 8px;
  color: #fff;
  background-color: #e63462;
  font-size: 1rem;
  border-radius: 5px;
  display: inline-block;
}
@media (min-width:751px) {
  .list_pink {
    font-size: 1.1rem;
  }
}
.uchikeshi {
  position: relative;
}
.uchikeshi::before {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(-20deg);
  background-color: #e63462;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.list_comment p {
  color: #6A96D2;
  font-size: 1.3rem;
  padding: 20px 0 5px 0;
  font-weight: bold;
  margin-top: 0;
}
@media (min-width:751px) {
  .list_comment p {
    font-size: 1.8rem;
  }
}
.cp_comment {
  /*  background-color: #5f90cc;*/
  color: #4c4948;
}
.cp_comment_ttl {
  font-size: 1.4rem;
  text-align: left;
  font-weight: bold;
  margin-bottom: 0;
  padding: 20px 0;
  margin-top: 0;
}
@media (min-width:751px) {
  .cp_comment_ttl {
    font-size: 1.6rem;
  }
}
.cp_comment ul {
  padding-top: 16px;
}
.cp_comment ul li {
  display: inline-block;
  text-align: left;
  padding-left: 13px;
  text-indent: -13px;
}
/*
===============================================================================
■ 店舗情報
===============================================================================
*/
.store_detail_area {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 40px 4.2vw 0px 4.2vw;
  text-align: left;
  color: #4c4948;
}
@media (min-width:751px) {
  .store_detail_area {
    padding: 40px 3vw;
  }
}
.store_detail_ttl {
  text-align: center;
  font-family: 'Times New Roman', 'A-OTF A1明朝 Std Bold', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.store_detail_ttl :after {
  content: none;
}
.store_detail_ttl  img {
  width: 300px;
}
.store_detail_ttl h1 {
  font-family: 'Times New Roman', 'A-OTF A1明朝 Std Bold', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
  line-height: 3.5rem;
  font-size: 2.2rem;
  color: #595757;
}
.store_detail_ttl h1 span {
  font-size: 2.1rem;
  color: #40649D;
  background: rgb(95, 141, 201);
  background: -webkit-linear-gradient(0deg, rgba(95, 141, 201, 1) 8%, rgba(64, 100, 157, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 1.3rem;
  color: #40649D;
  background: rgb(95, 141, 201);
  background: -webkit-linear-gradient(0deg, rgba(95, 141, 201, 1) 8%, rgba(64, 100, 157, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
@media (min-width:751px) {
  h2 {
    font-size: 1.7rem;
  }
}
.store_detail_ttl .icon {
  text-align: center;
}
.store_detail_ttl .icon p {
  font-family: 'Times New Roman', 'A-OTF A1明朝 Std Bold', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #FFF;
  display: inline-block;
  background: -webkit-linear-gradient(0deg, rgba(128, 147, 196, 1) 0%, rgba(64, 100, 157, 1) 100%);
  margin-bottom: 0;
  padding: 5px 20px;
  font-size: 1.6rem;
}
.line {
  width: 100%;
  height: 2px;
  background: rgb(128, 147, 196);
  background: -webkit-linear-gradient(90deg, rgba(128, 147, 196, 1) 0%, rgba(64, 100, 157, 1) 100%);
  margin-top: 30px;
}
.store_detail_area dl {
  margin-top: 30px;
}
.store_detail_area dl dt {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media (min-width:751px) {
  .store_detail_area dl dt {
    font-size: 2rem;
  }
}
.dd_ttl {
  font-size: 1.4rem;
}
@media (min-width:751px) {
  .dd_ttl {
    font-size: 1.8rem;
  }
}
.dd_price {
  font-size: 1.7rem;
  padding: 8px 0 5px 16px;
}
.store_detail_area dl dd {
  font-weight: 200;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
/*
@media (min-width:751px) {
  .store_detail_area dl dd {
    font-size: 1.6rem;
}
}
*/
.address, .access, .holiday dd {
  font-size: 1.4rem;
}
@media (min-width:751px) {
  .address, .access, .holiday dd {
    font-size: 1.8rem;
  }
}
.store_detail_area iframe {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding-top: 40px;
}
@media (min-width:751px) {
  .store_detail_ttl h1 {
    line-height: 2.8rem;
  }
  .store_detail_ttl h1 span {
    font-size: 3rem;
    line-height: 1.5;
  }
}
.store_detail_02 {
  margin-top: 8px;
  margin-bottom: 24px;
}
.store_detail_02 p {
  font-size: 1.4rem;
}
.store_detail_02 p span {
  font-weight: bold;
}
/*
===============================================================================
■ 予約システムの使い方
===============================================================================
*/
.reserve_system_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.reserve_system_ttl img {
  width: 80%;
  padding: 25px 0 0;
}
@media (min-width:751px) {
  .reserve_system_ttl img {
    padding: 70px 0 0;
  }
}
.reserve_system_qa_ttl {
  text-align: center;
  margin-bottom: 40px;
}
.reserve_system_qa_ttl img {
  width: 65%;
  padding: 50px 0 0;
}
@media (min-width:751px) {
  .reserve_system_qa_ttl img {
    padding: 80px 0 0;
  }
}
.reserve_system_qa_content {
  max-width: 960px;
  padding: 0 20px;
  margin: 20px auto 40px auto;
  color: #4c4948;
}
#ac-menu .detail dd a {
  color: #5381c2;
  border-bottom: solid 1px #5381c2;
}
#ac-menu li {
  border-top: solid 1px #4c4948;
}
#ac-menu li:last-child {
  border-bottom: solid 1px #4c4948;
}
#ac-menu .label {
  cursor: pointer;
  font-size: 1.4rem;
  padding: 30px 30px;
  position: relative;
  transition: .5s;
}
@media (min-width:751px) {
  #ac-menu .label {
    font-size: 1.6rem;
    padding: 30px 60px 30px 30px;
  }
}
/*
ラベル右側のアイコン「＋」を設定
beforeが横棒
afterが縦棒
*/
#ac-menu .label::before, #ac-menu .label::after {
  content: '';
  width: 13px;
  height: 1px;
  background: #4c4948;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
#ac-menu .label::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/*
アコーディオンメニューが開いている場合
*/
#ac-menu .label.open {
  /* ラベルの背景色を変更 */
  background-color: #7595cd;
  color: #fff;
}
#ac-menu .label.open::before {
  /* ラベルアイコンの横棒を非表示 */
  opacity: 0;
}
#ac-menu .label.open::after {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(180deg);
}
/*
アコーディオンメニューのコンテンツ部分は、「display: none;」で非表示にしておく。
ラベルクリック時にjQueryの「  $(this).next().slideToggle();」で表示に切り替わる
*/
#ac-menu .detail {
  border-top: solid 1px #ccc;
  padding: 20px 0 30px 0;
  display: none;
}
#ac-menu .detail dl {
  display: flex;
  flex-wrap: wrap;
}
#ac-menu .detail dt {
  width: 20%;
  font-weight: bold;
  margin-bottom: 40px;
}
#ac-menu .detail dd {
  width: 80%;
  font-size: 1.3rem;
  padding-top: 10px;
}
@media (min-width:751px) {
  #ac-menu .detail dd {
    font-size: 1.6rem;
  }
}
/*---SP---*/
@media screen and (max-width: 600px) {
  #ac-menu .label {
    padding: 20px 35px 20px 10px
  }
  #ac-menu .detail dl {
    flex-direction: column;
  }
  #ac-menu .detail dt {
    width: 100%;
    margin-bottom: 10px;
  }
  #ac-menu .detail dd {
    width: 100%;
    padding-left: 10px;
  }
  .hidden_sp {
    display: none !important;
  }
}
/*追従ボタン*/
.fixed_bnr_sp {
  pointer-events: none;
}
.floating__inner {
  pointer-events: none;
}
.floating__inner > a {
  display: contents;
  pointer-events: auto;
}
.floating__inner img {
  display: block;
  margin-left: auto;
  width: 37%;
}
@media screen and (min-width:601px) and (max-width:900px) {
  .floating__inner img {
    display: block;
    width: 200px;
    margin-left: 59%;
  }
}
@media screen and (min-width:901px) {
  .floating__inner img {
    display: block;
    width: 200px;
    margin-left: 630px;
  }
}
/*
===============================================================================
■ footer
===============================================================================
*/
footer {
  color: #4c4948;
}
footer p {
  text-align: center;
  font-family: 'Times New Roman', 'A-OTF A1明朝 Std Bold', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin-top: 40px;
  font-size: 1.6rem;
}
@media (min-width:751px) {
  footer p {
    font-size: 2rem;
  }
}
footer img {
  max-width: 350px;
  width: 80%;
  display: block;
  margin: 0 auto 20px;
}
footer ul.clearfix {
  width: 330px;
  display: block;
  margin: 0 auto 20px;
  padding-left: 0;
  text-align: center;
  font-size: 1.4rem;
}
/*

@media (min-width:751px){
footer ul.clearfix {
  width: 500px;
}
}
*/
footer ul li {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
}
footer ul li a {
  font-size: 1.2rem;
  display: block;
  padding: 0 15px;
  position: relative;
}
@media (min-width:751px) {
  footer ul li a {
    font-size: 1.3rem;
  }
}
footer ul li a:after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background: #595757;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -1px;
}
footer ul li:nth-child(1) a:after, footer ul li:nth-child(2) a:after, footer ul li:last-child a:after {
  content: none;
}
footer small {
  color: #FFF;
  background: #7595cd;
  text-align: center;
  letter-spacing: 0.2rem;
  display: block;
  padding: 20px 0;
  font-size: 1.2rem;
}
/*
@media (min-width:768px) {
    footer ul.clearfix {
        width: 100%;
    }
*/
/*
    footer ul li:nth-child(2) a:after {
        content: "";
    }
}
*/
/*料金表アコーディオン*/
.price_wrap img {
  height: auto;
}
.price_ac_ttl {
  font-size: 3rem;
  font-family: 'Times New Roman', 'A-OTF A1明朝 Std Bold', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
  padding: 24px 0 40px 0;
  color: #4c4948;
}
@media (min-width:751px) {
  .price_ac_ttl {
    font-size: 3.5rem;
  }
}
/*タイトル下の横線*/
.ttl_bar {
  position: relative;
  width: 80px;
  max-width: 100%;
  margin: 5px auto 0;
}
@media screen and (min-width:751px) {
  .ttl_bar {
    margin: 15px auto 48px auto;
  }
}
.ttl_bar:before {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  border-bottom: 5px solid #efefef;
}
.ttl_bar:after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  border-bottom: 4px solid #7595cd;
}
.plan_icon {
  width: 17%;
  margin-right: 8px;
}
.plan_icon_02 {
  width: 13%;
  height: 13%;
  margin-right: 8px;
}
.price_wrap {
  position: relative;
}
.price {
  display: flex;
  justify-content: center;
  /*  font-family: 'Oswald', sans-serif;*/
  font-family: 'Barlow Condensed', sans-serif;
  align-items: baseline;
  line-height: 0.8;
}
.price_01 {
  color: #E63463;
  font-size: 7rem;
  font-weight: 500;
}
.pricelist_getsugaku {
  width: 24px;
  height: 100%;
  margin-right: 8px;
}
.pricelist_yen {
  width: 31px;
  height: 100%;
  margin-left: 8px;
}
.price_02 {
  color: #4c4948;
  font-size: 3.5rem;
  flex-weight: 200;
  padding-top: 8px;
  display: flex;
  align-items: flex-start;
}
.price_02 span {
  font-size: 1.8rem;
  align-items: center;
}
.price_item span {
  font-size: 2.5rem;
  padding: 8px 0;
}
.price_item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricelist_getsugaku_02 {
  width: 18px;
  height: 100%;
  margin-right: 8px;
}
.pricelist_yen_02 {
  width: 28px;
  height: 100%;
}
.price_detail {
  border: solid 2px #5381C2;
  padding: 16px;
  text-align: center;
  margin-bottom: 24px;
}
.price_basic {
  width: 165px;
  margin-top: 8px;
}
.price_comment {
  margin-top: 24px;
  text-align: left;
}
.border {
  border: solid 2px #2b5caa;
}
.price_detail_item {
  display: flex;
  align-items: center;
  justify-content: left;
  margin: 10px 16px;
}
.price_detail_item p {
  font-size: 3rem;
  font-family: 'Barlow Condensed', sans-serif;
}
.detail_price {
  display: flex;
  align-items: center;
}
.price_detail_item p span {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.detail_rules {
  border-top: solid 1.5px #efefef;
  /* background-color: #efefef; */
  padding: 16px 16px 0 16px;
  margin: 10px 0;
}
.detail_rules_m4 {
  text-align: left;
  /* background-color: #efefef; */
  padding: 16px 16px 0 16px;
  margin: 10px 0;
}
.detail_rules_txt {
  text-align: left;
  margin-bottom: 8px;
  margin-left: 10px;
}
.detail_rules_txt p {
  /*  color: red;*/
  font-size: 1.3rem;
}
@media (min-width:751px) {
  .detail_rules_txt p {
    font-size: 1.6rem;
  }
}
.detail_rules_txt p span {
  color: #4c4948;
}
.date_text {
  font-size: 3.0rem;
  color: #fff;
  font-weight: 700;
}
.date_text span.date_b {
  font-size: 4.0rem;
}
.date_text span.date_s {
  font-size: 2.0rem;
}
.marker-bold {
  background: linear-gradient(transparent 50%, #ff6789 30%);
}
.countdown::before, .countdown::after {
  content: "";
  width: clamp(30px, 7vw, 40px);
  height: 1px;
  background-color: #5F90CC;
  margin: 0px 4px 4px;
  position: absolute;
}
.countdown {
  position: relative;
  font-size: clamp(16px, 6vw, 20px);
  width: 100%;
  margin: auto;
  color: #5F90CC;
  font-weight: 700;
  padding-top: 0.5em;
}
.countdown::after {
  transform: rotate(-60deg);
  bottom: 25%;
  right: 0%;
}
.countdown::before {
  transform: rotate(60deg);
  bottom: 25%;
  left: 0%;
}
.countdown p {
  font-size: clamp(10px, 3vw, 15px);
}
.white::before, .white::after {
  background-color: white;
}
.white {
  color: white;
  width: 90%;
  font-size: clamp(16px, 5vw, 30px);
  padding-top: 0.5em;
}
.white p {
  font-size: clamp(10px, 3vw, 18px);
}
/*楽天エリア*/
#rakuten_area {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0.6rem 0.4rem -0.25rem;
}
.rakuten_btn_wrap {
  position: absolute;
  bottom: 2.9rem;
  left: calc(50% - 15.1rem);
  text-align: center;
}
#rakuten_area a.rakuten_modal_btn {
  display: inline-block;
  margin-bottom: 1.4rem;
  font-weight: bold;
  color: #725237;
  position: relative;
}
#rakuten_area a.rakuten_modal_btn::after {
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.8rem;
  border-color: transparent transparent transparent #725237;
  top: calc(50% - 0.45rem);
  right: -1.5rem;
}
.modal_rakuten {
  background: unset !important;
  max-width: 500px !important;
  padding: 1rem !important;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.5));
}
.modal_rakuten .remodal-close {
  top: 1.9rem;
  right: 1.9rem;
  left: inherit;
  width: 3.2rem;
  height: 3.2rem;
  background: #fff;
  border-radius: 50%;
  color: #666;
}
.modal_rakuten .remodal-close::before {
  font-size: 3.2rem;
  line-height: 3.2rem;
  width: 3.2rem;
}
@media (min-width: 500px) {
  .rakuten_btn_wrap {
    bottom: 36px;
    left: calc(50% - 203px);
  }
  .wrapper a.rakuten_modal_btn {
    margin-bottom: 20px;
    font-size: 1.9rem;
  }
  .wrapper a.rakuten_modal_btn::after {
    border-width: 8px 0 8px 12px;
    top: calc(50% - 7px);
    right: -20px;
  }
  .modal_rakuten {
    padding: 35px !important;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  }
  .modal_rakuten .remodal-close {
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
  }
  .modal_rakuten .remodal-close::before {
    font-size: 40px;
    line-height: 40px;
    width: 40px;
  }
}
/*try*/
#try .try_inner {
  background: url(../img/2401/try_bg_01.png) no-repeat top center/cover;
}
#try .try_bg {
  background: url(../img/2401/try_bg_02.png) no-repeat 0 0/34.5rem 100%;
}
#try .reserve_btn {
  top: 14.5rem;
}
@media (min-width: 500px) {
  #try .try_bg {
    background: url(../img/2401/try_bg_02.png) no-repeat 0 0/460px 100%;
  }
  #try .reserve_btn {
    top: 190px;
  }
}
/*chance*/
.chance_special {
  padding: 0 2rem 1rem;
}
@media (min-width: 500px) {
  .chance_special {
    padding: 0 30px 10px;
  }
}
/*ポップアップバナー*/
#popup_banner {
  z-index: 10001;
  position: inherit;
}
.bg_rakuten_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.open_popup .bg_rakuten_popup {
  opacity: 1;
  visibility: visible;
}
.rakuten_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 500px;
  background-color: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  border-radius: 5px;
  z-index: 20000;
}
.rakuten_popup_title_close {
  position: absolute;
  top: 1.8rem;
  right: 0.3rem;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
  z-index: 2;
}
.rakuten_popup_title_close::before, .rakuten_popup_title_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 70%;
  height: 2px;
  background-color: #666;
  content: "";
}
.rakuten_popup_title_close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.rakuten_popup_title_close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.rakuten_popup_content {
  text-align: center;
  max-width: 500px;
}
.rakuten_popup_img_a {
  max-width: 500px;
  position: relative;
}
.countdown_popup_wrap {
  position: absolute;
  bottom: 10.5rem;
  left: 0;
}
@media (min-width: 500px) {
  .bg_rakuten_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .open_popup .bg_rakuten_popup {
    opacity: 1;
    visibility: visible;
  }
  .rakuten_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    max-width: 500px;
    background-color: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    border-radius: 5px;
  }
  .rakuten_popup_title_close {
    position: absolute;
    top: 27px;
    right: 7px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    z-index: 2;
  }
  .rakuten_popup_title_close::before, .rakuten_popup_title_close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 70%;
    height: 3px;
    background-color: #666;
    content: "";
  }
  .rakuten_popup_title_close::before {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .rakuten_popup_title_close::after {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .rakuten_popup_content {
    text-align: center;
    max-width: 500px;
  }
  .rakuten_popup_img_a {
    max-width: 500px;
    position: relative;
  }
  .countdown_popup_wrap {
    position: absolute;
    bottom: 144px;
    left: 0;
  }
}
@media (min-width: 768px) and (max-height: 768px) {
  .rakuten_popup {
    max-width: 400px;
  }
  #popup_banner .limited_text {
    max-width: 400px;
  }
  #popup_banner .countdown {
    max-width: 400px;
  }
}
/*カウントダウンタイマー*/
#popup_banner .limited_wrap {
  position: relative;
}
#popup_banner .limited_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33.81rem;
}
#popup_banner .countdown {
  position: absolute;
  left: 7.7rem;
  bottom: -0.3rem;
  width: 25.9rem;
}
#popup_banner .cdt_tx, #popup_banner .cdt_num {
  background: unset;
  color: #fff;
  box-shadow: unset;
  padding: 0 0.2rem;
  margin-right: 0;
}
#popup_banner .cdt_tx {
  font-size: 1.5rem;
}
#popup_banner .cdt_num {
  font-size: 1.9rem;
}
#popup_banner .countdown_popup_wrap .reserve_btn {
  position: absolute;
  bottom: -7.7rem;
  left: 1.8rem;
}
@media (min-width: 500px) {
  #popup_banner .limited_wrap {
    position: relative;
  }
  #popup_banner .limited_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
  }
  #popup_banner .countdown {
    position: absolute;
    left: 54px;
    bottom: -5px;
    width: 500px;
  }
  #popup_banner .cdt_tx {
    font-size: 2.3rem;
    padding: 0 3px;
  }
  #popup_banner .cdt_num {
    font-size: 3.4rem;
    padding: 0 3px;
  }
  #popup_banner .countdown_popup_wrap .reserve_btn {
    position: absolute;
    bottom: -104px;
    left: 47px;
  }
}
@media (min-width: 768px) and (max-height: 768px) {
  .countdown_popup_wrap {
    bottom: 117px;
  }
  #popup_banner .countdown {
    left: 40px;
  }
  #popup_banner .cdt_tx {
    font-size: 1.7rem;
    padding: 0 2px;
  }
  #popup_banner .cdt_num {
    font-size: 2.4rem;
    padding: 0 2px;
  }
  #popup_banner .countdown_popup_wrap .reserve_btn {
    width: 330px;
    left: 38px;
    bottom: -82px;
  }
}
/*追従CTAボタン*/
#cta_follow .cta_follow_wrap {
  display: flex;
  height: 7.2rem;
  padding: 0 0.5rem;
}
#cta_follow .cta_follow_wrap {
  display: flex;
  height: 7.2rem;
  justify-content: center;
  padding: 0 0.5rem;
}
@media (min-width: 500px) {
  #cta_follow .cta_follow_wrap {
    height: 97px;
    padding: 4px 8px;
  }
  #cta_follow .cta_follow_wrap {
    height: 97px;
    padding: 4px 8px;
  }
}
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center
}
.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}
.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 96%;
  max-width: 600px;
  padding: 30px 10px 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle;
}
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left
}
.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}
.modal_text {
  position: absolute;
  bottom: 15px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  font-size: 2.0rem;
  font-weight: bold;
  color: #725237;
  text-decoration: underline;
}
/*===================================
    multi_contents
===================================*/
#multi_contents {
  background-color: #fff;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  margin-top: 5em;
  border: 4px solid #EF8C01;
}
.atten {
  margin: 1.5rem 2.8rem;
  font-size: 1.7rem;
  text-align: center;
}
.contents_detail {
  margin: 2.5rem auto 0;
}
.contents_detail > dd {
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  padding: 1.5rem 1.8rem;
  border: 1px solid #000;
  background-color: #fff;
}
.detail_inner {
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 100px;
}
.detail_inner::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 50px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}
.detail_inner .inner_tx {
  font-size: 1.4rem;
  margin-top: 1rem;
  line-height: 1.8;
}
.detail_inner .small_tx {
  margin-top: 0.6rem;
  line-height: 1.7;
}
.detail_inner .small_tx li {
  font-size: 1rem;
}
/* もっと見るボタン */
.readmore-label {
  display: table;
  bottom: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0.2rem 3rem 0.3rem 1.6rem;
  border: 1px solid;
  background-color: #fff;
  border-radius: 2rem;
  font-size: 1.5rem;
  cursor: pointer;
}
.readmore-label:before {
  content: 'もっと見る';
}
.readmore-label:after {
  content: '';
  display: block;
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}
.readmore-check {
  display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label {
  position: static;
  transform: translateX(0);
  /* 「もっと見る」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */
  margin-top: 1.5rem;
}
.readmore-check:checked ~ .readmore-label:before {
  content: '閉じる';
}
.readmore-check:checked ~ .readmore-label:after {
  transform: rotate(-45deg);
  bottom: 0.7rem;
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .detail_inner {
  height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .detail_inner::before {
  display: none;
}
@media (min-width: 500px) {
  #multi_contents {
    padding-bottom: 40px;
    margin-bottom: 28px;
  }
  .contents_detail {
    width: 446px;
    margin: 32px auto 0;
  }
  .contents_detail > dd {
    padding: 20px 24px;
  }
  .detail_inner {
    height: 166px;
  }
  .detail_inner::before {
    height: 75px;
  }
  .detail_inner .inner_tx {
    font-size: 1.9rem;
    margin-top: 12px;
  }
  .detail_inner .small_tx {
    margin-top: 8px;
  }
  .detail_inner .small_tx li {
    font-size: 1.2rem;
  }
  /* もっと見るボタン */
  .readmore-label {
    bottom: 20px;
    padding: 4px 40px 4px 20px;
    border-radius: 28px;
    font-size: 2rem;
  }
  .readmore-label:after {
    right: 16px;
    bottom: 16px;
    width: 12px;
    height: 12px;
  }
  /*チェック時にボタンを非表示*/
  .readmore-check:checked ~ .readmore-label {
    margin-top: 20px;
  }
  .readmore-check:checked ~ .readmore-label:after {
    bottom: 8px;
  }
}
/* contents_evolv */
.ems_tx {
  font-weight: bold;
  color: #cc9966;
}
/*個店・複合店*/
.multi_reserve_btn {
  width: 30.45rem;
  margin: 2rem auto 0;
}
#top_shop {
  margin-top: 2rem;
}
@media (min-width: 500px) {
  .multi_reserve_btn {
    width: 406px;
    margin: 30px auto 0;
  }
  #top_shop {
    margin-top: 28px;
  }
}
/*複合店　もっと見る*/
.show_more {
  position: absolute;
  DISPLAY: FLEX;
  ALIGN-ITEMS: CENTER;
  JUSTIFY-CONTENT: CENTER;
  width: 11.7REM;
  bottom: 1.5rem;
  left: CALC(50% - 5.85REM);
  height: auto;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: bottom 0.2s;
  padding: 0 2.5rem 0.25rem 1.0rem;
  border: 1px solid;
  border-radius: 2rem;
  font-size: 1.2rem;
}
.show_more:after {
  content: '';
  display: block;
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}
.show_more.active:after {
  transform: rotate(-45deg);
  bottom: 0.5rem;
}
.show_more.active {
  background: none;
}
.detail_inner.open::before {
  display: none;
}
.detail_inner.open {
  padding-bottom: 3.75rem;
}
@media (min-width: 500px) {
  .show_more {
    width: 156PX;
    left: CALC(50% - 78PX);
    bottom: 20px;
    padding: 0 33px 3px 13PX;
    border-radius: 28px;
    font-size: 2rem;
  }
  .show_more:after {
    right: 16px;
    bottom: 14px;
    width: 12px;
    height: 12px;
  }
  .show_more.active:after {
    bottom: 8px;
  }
  .detail_inner.open {
    padding-bottom: 50px;
  }
}
.cp_comment_wrap.norikae_comment_margin {
  width: 90%;
  margin: 1rem auto 1.5em;
}
.norikae_present_wrap {
  width: 90%;
  margin: 1em auto;
}
.cp_norikae {
  background-color: #fff;
  padding: 0 0 16px;
  position: relative;
  margin-top: 41px;
  box-shadow: 5px 5px 0px rgb(0 0 0 / 20%);
}
.cp_norikae_fukidashi img {
  top: 10px;
}
.price_modal_ttl {
  font-size: 3rem;
  font-family: 'Times New Roman', 'A-OTF A1明朝 Std Bold', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
  padding: 24px 0 40px 0;
}
@media (min-width:751px) {
  .price_modal_ttl {
    font-size: 3.5rem;
  }
}
.price_wrap {
  position: relative;
}
.price {
  display: flex;
  justify-content: center;
  /*  font-family: 'Oswald', sans-serif;*/
  font-family: 'Barlow Condensed', sans-serif;
  align-items: baseline;
  line-height: 0.8;
}
.osusume_icon {
  position: absolute;
  top: -22px;
  width: 81px;
  left: -23px;
}
@media screen and (min-width:751px) {
  .osusume_icon {
    width: 100px;
    left: -21px;
  }
}
/*タイトル下の横線*/
.ttl_bar {
  position: relative;
  width: 80px;
  max-width: 100%;
  margin: 5px auto 0;
}
@media screen and (min-width:751px) {
  .ttl_bar {
    margin: 15px auto 48px auto;
  }
}
.ttl_bar:before {
  content: "";
  position: absolute;
  right: 0;
  width: 50%;
  border-bottom: 3px solid #CDCCCC;
}
.ttl_bar:after {
  content: "";
  position: absolute;
  left: 0;
  width: 50%;
  border-bottom: 3px solid #2b5caa;
}
.price_01 {
  color: #E63463;
  font-size: 7rem;
  font-weight: 500;
}
.pricelist_getsugaku {
  width: 24px;
  height: 100%;
  margin-right: 8px;
}
.pricelist_yen {
  width: 31px;
  height: 100%;
  margin-left: 8px;
}
.price_02 {
  color: #4c4948;
  font-size: 3rem;
  flex-weight: 200;
  padding-top: 8px;
  display: flex;
  align-items: center;
}
@media screen and (min-width:751px) {
  .price_02 {
    font-size: 5.5rem;
  }
}
.price_02 span {
  font-size: 1.8rem;
  align-items: center;
}
.price_item span {
  font-size: 2.5rem;
  padding: 8px 0;
}
.price_item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricelist_getsugaku_02 {
  width: 18px;
  height: 100%;
  margin-right: 8px;
}
@media screen and (min-width:751px) {
  .pricelist_getsugaku_02 {
    width: 26px;
    height: 100%;
    margin-right: 8px;
  }
}
.pricelist_yen_02 {
  width: 28px;
  height: 100%;
}
@media screen and (min-width:751px) {
  .pricelist_yen_02 {
    width: 41px;
    height: 100%;
  }
}
.price_detail {
  border: solid 2px #2b5caa;
  padding: 16px;
  text-align: center;
  margin-bottom: 24px;
}
.price_basic {
  width: 165px;
  margin-top: 8px;
}
.price_comment {
  margin-top: 24px;
  text-align: left;
}
/*--▼注釈--*/
.comment_wrap {
  margin-top: 10px;
  padding-left: 3vw;
}
@media (min-width:751px) {
  .comment_wrap {
    padding-left: 25px;
  }
}
.cp_comment_wrap {
  margin-top: 10px;
}
@media (min-width:751px) {
  .cp_comment_wrap {
    padding-left: 10px;
  }
}
.comment {
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.3;
  letter-spacing: 1px;
  /*  text-align: left;*/
}
@media (min-width:751px) {
  .comment {
    font-size: 1.5rem;
    padding: 0;
  }
}
/*アコーディオン PRICE LIST*/
.ac_menu_wrap_price {
  text-align: center;
}
.label_price {
  margin-top: 0;
}
#ac-menu_price .label_price {
  cursor: pointer;
  font-size: 1.4rem;
  padding: 30px 30px;
  position: relative;
  transition: .5s;
}
@media (min-width:751px) {
  #ac-menu_price .label_price {
    width: 24vw;
    max-width: 370px;
    font-size: 1.8rem;
    padding: 20px 60px 20px 30px
  }
}
/*
ラベル右側のアイコン「＋」を設定
beforeが横棒
afterが縦棒
*/
#ac-menu_price .label_price::before, #ac-menu_price .label_price::after {
  content: '';
  width: 13px;
  height: 1px;
  background: #2b5caa;
  position: absolute;
  top: 50%;
  right: 23%;
  transform: translateY(-50%);
}
#ac-menu_price .label_price::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/*
アコーディオンメニューが開いている場合
*/
#ac-menu_price .label_price.open::before {
  /* ラベルアイコンの横棒を非表示 */
  opacity: 0;
}
#ac-menu_price .label_price.open::after {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(180deg);
}
/*
アコーディオンメニューのコンテンツ部分は、「display: none;」で非表示にしておく。
ラベルクリック時にjQueryの「  $(this).next().slideToggle();」で表示に切り替わる
*/
#ac-menu_price .detail_price {
  padding: 20px 0 30px 0;
  display: none;
}
/*---SP---*/
@media screen and (max-width: 600px) {
  #ac-menu_price .label_price {
    text-align: center;
    width: 70vw;
    padding: 10px 35px 10px 10px;
  }
}
.detail_btn {
  color: #2b5caa;
  border-radius: 50px;
  border: solid 1.5px #2b5caa;
  background-color: #fff;
  margin: 24px auto 0 auto;
  display: inline-block;
  box-shadow: 9px 11px 17px -12px #bababa;
}
/*==========================241225_櫻井編集==========================*/
.cp_comment ul {
  padding-top: 0;
}
/*
==========================
動画上の日程
==========================
*/
.schedule_box {
  background: #2c5caa;
  padding: 1rem;
}
small.schedule_note {
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: bold;
}
.cp_kengaku_detail_ttl img {
  width: 80%;
}
p.scheduledate {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #f0faff;
  margin: 0;
}
/*==========================250227_櫻井編集==========================*/
.price_detail_item {
  flex-wrap: wrap;
}
.price_detail_item.lightfull small {
  text-align: start;
  margin: 0.3rem 16px;
  font-size: 1.1rem;
}
@media (min-width: 751px) {
  .price_detail_item.lightfull small {
    font-size: 1.5rem;
    margin: 1rem 16px;
  }
}


.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.ac_menu_wrap_price {
    padding: 40px 4.2vw 0px 4.2vw;
}

@media (min-width: 751px){
.ac_menu_wrap_price {
    padding: 40px 3vw;
}
}
