@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;
  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%;
	}
}

img {
  width: 100%;
  height: auto;
}

a img{
  text-decoration: none;
}


p {
  margin-bottom: 0;
  margin-top: 3px;
}

ol,ul,li {
  list-style: none;
}

.inner {
  padding: 0 4.2vw;
}

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

/*--▼注釈--*/
.comment_wrap {
  padding:0 3vw;
}

@media (min-width:751px){
.comment_wrap {
  padding:0 16px;
}
}

.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;
}

.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;
}
}

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%;
  }
}
header {
    display: none;
}
/*
===============================================================================
■ MV
===============================================================================
*/

.fv_mv_img {
  z-index: -2;
}

.fv_mv {
  position: relative;
  top: 3vw;
}

@media (min-width:751px){
.fv_mv  {
  top: 18px;
  }
}


.fv_mv_btn {
  position: absolute;
  bottom: 10px;
  right: 5px;
  width: 35%;
}

@media (min-width:751px){
.fv_mv_btn {
  bottom: 40px;
  }
}

.fv_cp {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

@media (min-width:751px){
.fv_cp {
  top: 0px;
  }
}

/*ボタンアニメーション*/

.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: #7595cd;
/*  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 )
}

.blue_area {
    padding-top: 2em;
}

.cp_area {
  padding-bottom: 20px;
}

@media (min-width:751px){
.cp_area {
  padding-bottom: 40px;
}
}

.cp_menu ul {
  display: flex;
  padding: 20px 0 0;
}

@media (min-width:751px){
.cp_menu ul {
  padding: 30px 0;
  }
}

.cp_menu ul li:not(:nth-child(3)) {
  padding-right: 10px;
}

/*
===============================================================================
■ CPエリア
===============================================================================
*/

.cp_area {
  color: #4c4948;
}

.cp_kengaku {
  margin-top: 10px;
}

.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 p.left,
.kengakukai_area p.left{
  text-align: left;
}

.cp_kengaku_detail_ttl p {
  font-size: 1.6rem;
}

.cp_tokuten_shisei {
    padding-top: 24px;
}

.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_ttl img {
  margin-bottom: 15px;
}


/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/*タブのスタイル*/
.tab_item, .tab_item_02 {
  width: 48%;
  height: 18vw;
  padding-bottom: 10px;
  background-color: #f08c00;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 8px 8px 0 0;
  box-shadow: 5px 0px 0px rgb(0 0 0 / 20%);
  font-size: 1.4rem;
}


.tab_right {
  position: relative;
}

.tab_item, .tab_item_02 span {
  font-size: 4.2vw;
}

@media (min-width:751px){
.tab_item, .tab_item_02 span {
  height: 110px;
  font-size: 2.2rem;
}
}

@media (min-width:751px){
.tab_item_02, .tab_item_02 span {
  height: 110px;
  font-size: 2.2rem;
}
}

.tab_yohaku {
  margin-left: 4%;
  position: relative;
}

.tab_comment p {
  display: block;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

input[name="tab_item_02"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 16px;
  clear: both;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 5px 5px 0px rgb(0 0 0 / 20%);
}

/*選択されているタブのコンテンツのみを表示*/
#tab_01:checked ~ #pilates_content,
#tab_02:checked ~ #pilates_yoga_content {
  display: block;
}

/*選択されているタブのコンテンツのみを表示*/
#tab_03:checked ~ #pilates_content_02,
#tab_04:checked ~ #pilates_yoga_content_02 {
  display: block;
}

/*1つめのタブが選択されていない状態のスタイル*/
.tabs > input:first-child + label {
	background: #366dc1;
  color: #fff;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + label {
  background-color: #fff;
  color: #7595cd;
}

/*マシピラ＋ヨガプランが選択されているとき文字をオレンジにする*/
.tabs input:checked + .plan_02 {
  color: #f08c00;
}

.tab_comment {
  width: 42%;
  position: relative;
  top: 4vw;
  right: -56%;
  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: 0 0 16px;
  position: relative;
  margin-top: 50px;
  box-shadow: 5px 5px 0px rgb(0 0 0 / 20%);
}

@media (min-width:751px){
.cp_norikae {
  padding-top: 0px;
}
}

/*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_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;
/*  background-color: #efefef;*/
}

.point_main_ttl {
  background-color: #efefef;
}

/*point_01*/

.point_01 {
  background-color: #efefef;
}

.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_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 2vw;
  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: 80%;
}

@media (min-width:751px){
.point_02_ttl img {
  padding: 4vw 0;
  width: 67%;
}
}



.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 img {
  width: 67%;
}

@media (min-width:751px){
.point_03_ttl img {
  padding: 4vw 0;
  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;
}
}


.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: #2b5caa;
  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;
}

.point_03_subttl_02  {
  width: 70%;
  padding: 40px 0 25px 0;
}

@media (min-width:751px) {
.point_03_subttl_02  {
  padding: 80px 0 50px 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;
  width: 70%;
}
}


/*point_05*/

.point_05 {
  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;
}

}

/*見学会エリア*/

.kengakukai_area {
  background-color: #7595cd;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@media (min-width:751px){
.kengakukai_area {
  padding-top: 40px;
  padding-bottom: 40px;
}
}


.kengakukai_area_ttl {
  padding: 0 4vw 10px 4vw;
}


/*
===============================================================================
■ 今話題のエクササイズ
===============================================================================
*/

.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: 10px;
}

.ml16 {
  margin-left: 16px;
}

.flow_ttl {
  text-align: center;
}

.flow_ttl img {
  width: 50%;
  padding: 0 0 25px 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: #7595cd;*/
  color: #4c4948;
  padding-bottom: 30px;
  padding: 0 4.2vw;
}

.cp_comment_ttl {
  font-size: 1.4rem;
  text-align: left;
  font-weight: bold;
  margin-bottom: 0;
  padding: 20px 0 0;
  margin-top: 0;
}

@media (min-width:751px){
.cp_comment_ttl {
  font-size: 1.6rem;
}
}

.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;
  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 h1 {
    margin-bottom: 10px;
}

.store_detail_ttl h1:after {
    content: none;
}

.store_detail_ttl h1 img {
  width: 300px;
}

.store_detail_ttl h2 {
  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: #4c4948;
}

.store_detail_ttl h2 span {
  font-size: 2.8rem;
  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;
}

.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 h2 {
        line-height: 2.8rem;
    }
  
    .store_detail_ttl h2 span {
        font-size: 3.5rem;
      line-height: 1.5;
    }
}
/*
===============================================================================
■ 料金表
===============================================================================
*/

/*タイトル下の横線*/
.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 #7595cd;
}

.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;
  color: #4c4948;
}
@media (min-width:751px){
.price_modal_ttl {
font-size: 3.5rem;
}
}
.price_wrap {
position: relative;
color: #4c4948;
}
.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_ttl {
background-color: #2b5caa;
padding: 16px 0;
text-align: center;
}
.price_mainttl {
color: #fff;
font-size: 1.8rem;
}
.price_subttl {
background-color: #fff;
display: inline-block;
padding: 5px 10px;
margin-bottom: 5px;
}
.price_subttl p {
margin-top: 0;
font-size: 1.4rem;
color: #2b5caa;
display: inline-block;
}
.osusume_icon {
position: absolute;
top: -22px;
width: 81px;
left: -21px;
}
@media screen and (min-width:751px) {
.osusume_icon {
width: 100px;
left: -21px;
}
}

.pricedown_icon {
background-color: #fff100;
color: #e63462;
}
.pricedown_icon p {
font-size: 1.5rem;
line-height: 18px;
padding: 8px;
}
.pricedown_icon p span {
font-size: 2.5rem;
font-weight: bold;
font-family: 'Barlow Condensed', sans-serif;
}
.basic_price {
font-size: 1.4rem;
}
.basic_price p span {
font-size: 2.5rem;
font-family: 'Barlow Condensed', sans-serif;
}
.naname{
position: relative;
}
.naname::before {
position: absolute;
content: "";
display: block;
transform: rotate(-10deg);
background-color: #2b5caa;
width: 100%;
height: 1px;
top: 50%;
left: 0;
}

.price_01 {
color: #E63463;
font-size: 6rem;
font-weight: 500;
}
.pricelist_getsugaku {
width: 24px;
height: 100%;
margin-right:8px;
}
.pricelist_yen {
width: 31px;
height: 100%;
margin-left: 8px;
}
.price_02 {
color: #585757;
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_03 {
color: #E63463;
font-size: 3rem;
font-weight: bold;
font-family: 'Noto Sans JP', sans-serif;
margin-top: -34px;
}
.price_03 p span {
font-size: 10rem;
font-family: 'Barlow Condensed', sans-serif;
padding: 0 5px;
font-weight: normal;
}
.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 #2b5caa;
padding: 16px;
text-align: center;
margin-bottom: 24px;
}
.price_basic {
width: 165px;
margin-top: 8px;
}
.price_comment {
margin-top: 24px;
text-align: left;
}
.fulltime {
    width: 5rem;
	margin-right: 8px;
}
/*
===============================================================================
■ 予約システムの使い方
===============================================================================
*/

.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: #2b5caa;
  border-bottom: solid 1px #2b5caa;
}


#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 {
  position: fixed;
  bottom: 0;
  z-index: 500;
  width: 100%;
}

.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: 303px;
  display: block;
  margin: 0 auto 20px;
  padding-left: 0;
  text-align: center;
  font-size: 1.4rem;
}

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: #4c4948;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -1px;
}
footer ul li:nth-child(2) a:after,
footer ul li:last-child a:after {
    content: none;
}
footer small {
  color: #FFF;
  background: #2b5caa;
  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: "";
    }
}
/*===================================
    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;
  }
}

.fv_area {
    margin-top: -3vw;
}

@media (min-width: 751px) {
.fv_area {
    margin-top: -18px;
	}}

.tab_item, .tab_item_02 span {
    font-size: 3.5vw;
}
.tab_item_02, .tab_item_02 span {
	font-size: 3.5vw;
}

@media (min-width: 751px){
.tab_item, .tab_item_02 span {
    font-size: 1.7rem;
	}}
@media (min-width: 751px){
.tab_item_02, .tab_item_02 span {
    font-size: 1.7rem;
}}

.tab_content_description {
    background: white;
    padding: 2rem;
}
.tab_comment {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
span.red_border {
    color: #f20808;
    border-bottom: solid 1px;
}

video {
    width: 100%;
}


/*アコーディオン 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: 0px auto 24px auto;
    display: inline-block;
    box-shadow: 9px 11px 17px -12px #bababa;
}

/*--櫻井編集_240614--*/
p.store_note {
    margin-top: 1.5rem;
}
p.map_shop {
    font-size: clamp(18px, 4vw, 30px);
    margin-bottom: 0.5em;
}
.map02 {
    margin-top: 2em;
}
#tenjin_fvbtn {
    bottom: 20%;
    right: 3px;
    width: 28%;
}
#nishijin_fvbtn {
    bottom: 0;
    right: 3px;
    width: 28%;
}
/*追従ボタン*/
.fixed_bnr_sp {
  position: fixed;
  bottom: 0;
  z-index: 500;
  width: 100%;
}

.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;
  }
}

.floating_btn {
  display: flex;
  padding: 0 8px;
  margin-bottom: 16px;
}

@media screen and (min-width:600px){
.floating_btn {
  width: 600px;
  }
}

.norikae_present_wrap {
    width: 90%;
    margin: 1em auto;
}