/*----------------------------------------------------
基本設定
----------------------------------------------------*/
* {
    box-sizing: border-box;
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
    font-size:62.5%;
}

body {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    background:#ffffff;
    color:#333333;
	line-height: 1.6;
	overflow-x: hidden;
}

ul li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333333;
}

p{
	font-size: 1.3rem;
}

img {
	border-style:none;
	vertical-align: bottom;
}

hr {
	height: 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #000;
	width: 180px;
	margin: 1rem auto 2rem;
}



/*----------------------------------------------------
モーダルウィンドウ
----------------------------------------------------*/




/*----------------------------------------------------
トップボタン
----------------------------------------------------*/
#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 50px;
  opacity: 0.6;
  z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #3f98ef;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #3f98ef;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*----------------------------------------------------
ヘッダー
----------------------------------------------------*/

#header {
	height: 70px;
	width: 100%;
	background: #ffffff;
	position: fixed;
	top: 0;
	z-index: 999;
}

.logo {
	height: 70px;
	display: table-cell;
	vertical-align: middle;
	padding: 0 1rem;
}

.logo img {
	width: 100px;
}

.sp_sns {
	display: table-cell;
	
	vertical-align: middle;
	width: 180px;
}

.sns_icon {
	font-size: 2.5rem;
	padding: .5rem;
}

/*  ナビ  */
.pc_nav,.pc_sns {
	display: none;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 9999;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
   background : #AFAFAF;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
   background : #AFAFAF;
}

nav.sp_nav {
  position: fixed;
  z-index : 999;
  top  : 0;
  right : 0;
  color: #fff;
  background: #fff;
  text-align: center;
  transform: translateX(130%);
  transition: all 0.6s;
  width: 100%;
  font-size: 1.4rem;
}

nav.sp_nav ul {
  background: #000;
  opacity: 0.6;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

nav.sp_nav ul li {
  list-style-type: none;
  vertical-align: middle;
  padding: .5rem 0;
  width: 50%;
  border: .3px solid #fff;
}

nav.sp_nav ul li:last-child {
  padding-bottom: 0;
}

nav.sp_nav ul li:hover{
  background: #454545;
}

nav.sp_nav ul li a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-decoration :none;
  font-weight: lighter;
}

.sp_nav li span {
	font-size: 1.4rem;
	letter-spacing: .1em;
}

/* このクラスを、jQueryで付与・削除する */
nav.sp_nav.active {
  transform: translateX(0%);
}


/*公式LINEボタン*/
.pc_btn-wrap {
	display: none;
}

.sp_btn-wrap {
	position: fixed;
	bottom: 0px;
	z-index: 999;
	height: 70px;
	width: 100%;
	text-align: center;
	
	background: #333333;
	color: #fff;
	padding-top: .3rem;
	
}



.btn-copy {
  font-size: 1.2rem;
  font-weight: bold;

  position: relative;
  margin-bottom: .2em;
}

.btn-copy:before {
  margin-right: 1rem;
  content: '＼';
}

.btn-copy:after {
  margin-left: .5rem;
  content: '／';
}

a.btn--green {
  color: #fff;
  background-color: #094;
}

a.btn--pink {
  color: #fff;
  background-color: #ea465b;
}

a.btn-c {
  font-size: 1.5rem;
  letter-spacing: .15em;
  position: relative;
  top: 10px;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 100vh;
}

a.btn-c i.fa {
  margin-left: 1rem;
}

/*----------------------------------------------------
コンテンツ共通部
----------------------------------------------------*/
.main_wrapper {
	text-align: center;
}

.container {
	padding: 3rem 0;
}

.container p{
	width: 90%;
	margin: 0 auto;
	padding: 2rem 0;
	letter-spacing: .1em;
}

.title_text {
	font-size: 2.2rem;
	padding: 2rem 0 0 0;
	font-weight: normal;
	letter-spacing: .08em;
	text-align: center;
}

.tax_price {
	font-size: 1.4rem;
	line-height: 1.6rem;
}

.contact_btn {
	font-size: 1.6rem;
	line-height: 1.4;
	width: 290px;
	height: auto;
	background-color: #ea465b;
	margin: 1.5rem auto;
}

.contact_btn a {
	display: block;
	color: #ffffff;
	line-height: 1.4;
	width: 290px;
	height: auto;
	padding: 1.5rem 0;
	text-align: center;
}

/*----------------------------------------------------
各コンテンツ
----------------------------------------------------*/
/*　メインビジュアル　*/
.main_visual {
	height: 80vh;
	width: 100%;
	margin-top: 7rem;
	background: url("../images/topVisual_.jpg") no-repeat;
	background-position: 25% 50%;
	background-size: cover;
	position: relative;
}

.text_container {
	width:100%;
	position: absolute;
	top: 5%;
	right:0%;
}

.main_visual .title_text {
	text-align: right;
	padding: 2rem 0 0 0;
	letter-spacing: .05em;
}

.main_visual .title_text strong{
	font-size: 2.8rem;
	padding: 2px;
	margin-left: 3px;
	border-bottom: solid 1px #000;
	background: rgba(255,255,255,0.9);
}

.main_visual .title_text span {
	font-size: 2.5rem;
	font-weight: bold;
	color: #000;
	border-bottom: solid 1px #000;
	background: rgba(255,255,255,0.85);
	padding: 2px;
	
}

.main_visual .small{
	text-align: right;
	font-size: 1rem;
	color:rgba(39,39,39,1.00);
	font-weight: 300;
	line-height: 2rem;
}

.main_visual .bottom_container{
	width: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	bottom: 3%;
}

.main_visual .bottom_container img{
	width: 80%;
	margin: 5px 0;
}

.main_visual .contact_btn {
	display: none;
}



/*　メインビジュアル　*/
/*
.main_visual {
	height: 80vh;
	width: 100%;
	margin-top: 7rem;
	background: url("../images/topVisual_01.jpg") no-repeat center top;
	background-size: cover;
	background-color: rgba(255,255,255,0.5);
	background-blend-mode:overlay;
	display: table;
}

.main_visual .title_text {
	font-size: 3rem;
	line-height: 3.5rem;
	font-weight: normal;
}
.main_visual .title_text .title_toptxt {
	font-size: 2rem;
	line-height: 3rem;
}


.text_container {
	display: table-cell;
	vertical-align: middle;
}

.main_visual p {
	font-size: 2.6rem;
}
*/


/*　　キャンペーンバナー　　　*/
#campaign_container img{
	width: 90%;
	margin: .5rem;
	box-shadow: 0 0 3px 0 rgba(0,0,0, .5);
}

.youtube {
	position: relative;
	width: 90%;
	padding-top: 56.25%;
	margin: 0 auto;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% ;
	height: 100% ;
}



/* 　コンセプト欄　*/
#concept_container {
	text-align: left;
	background: rgba(0,0,0,0.05);
}
#concept_container p span{
	border-bottom: 1px solid #000;
	text-align: center;
}





/*  トレーニングメニュー欄　*/
#menu_container{
	width: 90%;
	padding: 2rem 0;
	margin: 0 auto;
	
}

#menu_container h3{
	font-size: 1.4rem;
	font-weight: 100;
	text-align: left;
	line-height: 1.2;
	margin: 0 auto;

}

#menu_container h3 span{
	color: rgba(255,171,42,0.73);
	font-size: 3rem;
	font-weight: bold;
}

#menu_container .flex_container{
	margin: 1rem 0;
}

#menu_container .flex_container .menu{
	border-bottom: 1px rgba(58,58,58,1.00) solid;
	padding: 1rem 0 2rem;
	margin-bottom: 2rem;
}

#menu_container .flex_container .menu:last-child{
	border: none;
	padding: 0;
	margin: 0;
}

#menu_container .flex_container .menu img{
	width: 100%;
}

#menu_container .flex_container .menu .text{
	font-size: 1.2rem;
	font-weight: 300;
	text-align: left;
	letter-spacing: normal;
	padding: 1rem 0 0 0;
	margin: 0;
	width: 100%;
}


/* 　初回体験の流れ　*/
#trialstep_container {
	background: rgba(0,0,0,0.05);
}

#trialstep_container .flex_container{
	background: #fff;
	padding:1rem;
	margin: 1rem auto;
	width: 90%;
	
}
#trialstep_container .flex_container img{
	width: 90%;
}

#trialstep_container .flex_container h3{
	font-size: 1.4rem;
	font-weight: 200;
}
#trialstep_container .flex_container h3 span{
	color: rgba(255,171,42,0.73);
	font-size: 3rem;
	font-weight: bold;
	padding-right: .5rem;
}
#trialstep_container .flex_container .text{
	font-size: 1.2rem;
	text-align: left;
	padding:0;
	width: 100%;
}
#trialstep_container .flex_container .text a{
	color: #ea465b;
	text-decoration: underline; 
}
#trialstep_container .flex_container .text a:hover{
	color:rgba(255,127,129,1.00)
}

#trialstep_container .things_container{
	padding-top: 2rem;
	margin: 0 auto;
	width: 90%;
	
}
#trialstep_container .things_container h3{
	font-size: 2.2rem;
	font-weight: normal;
}
#trialstep_container .things_container .flex{
	display: flex;
	justify-content: center;
}
#trialstep_container .things_container .flex .item{
	font-size: 1rem;
	width: 23%;
}

#trialstep_container .things_container .icon{
	width: 90%;
	padding: 1rem;
	margin: 0 auto;
}
#trialstep_container .things_container .text{
	font-size: 1rem;
}



/*　料金欄　*/
/*
#price_container {
	background: url("../images/bgimgSP_IMG3546.jpg") no-repeat center top;
	background-size: cover;
	background-color: rgba(255,255,255,0.6);
	background-blend-mode:overlay;
}
*/

#price_container hr {
	margin-bottom: 1rem;
}

.price_list,.option_list {
	width: 90%;
	margin: 1rem auto;
	padding: 1rem 0;
	border: .8px solid #333333;
}

#price_list_monthly,#price_list_visitor,#price_list_pilates{
	width: 90%;
	border: none;
	margin: 0 auto;
}


#price_container .item_title{
	font-size: 2.2rem;
	font-weight: 100;
	letter-spacing: normal;
	padding-top: 1rem; 
	margin: 0 0 1rem 0;
	line-height: 1.1;
	text-align: center;
}
.freeplan_title{
	font-size: 2.2rem;
	font-weight: 100;
	letter-spacing: normal;
	padding-top: 1rem; 
	margin: 0 0 1rem 0;
	line-height: 1.1;
	text-align: left;
}

#price_container h3 span{
	font-size: 2rem;
}

#price_container .price {
	font-size: 2.2rem;
	padding: 0;
	margin: 0;
	line-height: 2.2rem;
}

#price_container .price span {
	font-size: 1.3rem;
}

#price_container .tax_price {
	font-size: 1.2rem;
	padding: 0 0 1rem 0;
	margin: 0;
	color: rgba(117,117,117,1.00);
}



#price_container p {
/*	font-size: 1.2rem;*/
	width: 100%;
	padding: .5rem 0;
}



/*吹き出し*/
.balloon1-top {
  position: relative;
  display: inline-block;
  margin: 1em 0;
  padding: 10px 12px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 20px;
  background: #ea465b;
  font-weight: 600;
}

.balloon1-top:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #ea465b;
}

.balloon1-top p {
  margin: 0;
  padding: 0;
}

#price_container #price_lead p{
	font-size: 1.7rem;
	color: rgba(255,171,42,1);
	line-height: 2rem;
}

#price_container #price_lead .del{
	text-decoration: line-through;
}


/*マンスリー欄*/


.plan_lead table{
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
}

#visitor_title table{
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
}

.plan_lead table th,#visitor_title table th{
	font-size: 2rem;
	font-weight:lighter;
	padding: 10px 30px;
/*	border: solid 1px black;*/
	background: rgba(255,171,42,0.3);
}

.plan_lead table td,#visitor_title table td{
	font-size: 1.2rem;
	padding: 10px;
/*  	border: solid 1px black;*/
	text-align: left;
}

.plan_lead li,#visitor_title li{
    position: relative;
    padding-left: 4.5em;
  }
 
.plan_lead li:before,#visitor_title li:before{
    content: "";
    position: absolute;
    top: .1em;
    left: 3em;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 5px;
    height: 10px;
    border-right: 3px solid #8b6b4e;
    border-bottom: 3px solid #8b6b4e;
  }


/*
.monthly_lead table td {
  padding: 3px 10px;
}
*/


.plan_item {
	border: solid .8px;
	width: 90%;
	padding: 1rem;
	margin: .5rem auto;
}

.plan_item .freeplan_flex{
	display: flex;
	justify-content: center;
}


.plan_item .balloon3-right {
  position: relative;
    display: inline-block;
    margin: .5em 15px .5em 0;
    padding: 13px 5px;
    width: 50px;
    height: 50px;
    line-height: 1;
    text-align: center;
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    background: #ff8e9d;
    border-radius: 50%;
    box-sizing: border-box;
}

.plan_item .balloon3-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #ff8e9d;
  z-index: 0;
}


/*     長期プラン　　　　*/


/*下矢印*/
.dli-caret-down {
  display: inline-block;
  vertical-align: middle;
  color:  rgba(255,171,42,0.73);;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 2.34952em 1.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 1rem;
}
/**/


.plan_item_longplan .longplan_lead span{
	color: #ea465b;
	font-size: 1.8rem;
}

.longplan_flex .plan_item h4{
	font-size: 2rem;
	font-weight: 100;
	letter-spacing: normal;
	padding-top: 1rem; 
	margin: 0 0 1rem 0;
	margin: 0;
}

.longplan_flex .plan_item h4 span{
	border-bottom: solid .8px;
}


.longplan_flex .plan_item .longpran_price{
	font-size: 2.2rem;
	font-weight: normal;
	padding:0;
}
.longplan_flex .plan_item .longpran_price .taxin{
	font-size:1.3rem;
}

.plan_item .monthlyprice span,.onceper span{
	background: linear-gradient(transparent 75%, #ffadad 75%);
	font-size: 2rem;
	font-weight: bold; 
}



.longplan_flex .plan_item .longpran_price{
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.longplan_flex .plan_item .circle {
	font-size: .9rem;
	line-height: 1.1;
	font-weight: 400;
	letter-spacing: 0.1em;
    display: inline-grid;
    color: #fff;
    background-color: #f00;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
}


/*　　　デイプラン　　　*/
.dayplan_container{
	width: 100%;
}



/*　注釈*/
#price_container .notes{
	font-size: 1rem;
	text-align: left;
	width: 90%;
}


.price_flex .under {
	font-size: 1.2rem;
	background: linear-gradient(transparent 70%, #a8eaff 50%);
}
.price_flex .info {
	font-size: 1rem;
	text-align: center;
	width: 95%;
	padding-top: 2rem;
}


/* 　プラン表ボタン　*/

.price_flex .btn {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  background: #ff701e;
  border: 2px solid #ff701e;
  border-radius: 60px;
  color: #fff;
  display: block;
  font-weight: 400;
  max-width: 200px;
  text-align: center;
  margin: .5rem auto;
}
  
.price_flex .btn a {
	display: block;
	color: #ffffff;
	font-size: 1.4rem;
	padding: .5rem 0;
	text-align: center;
}

.price_flex .btn:hover{
	background: #fff;
  	
}
.price_flex .btn a:hover{
	color: #ff701e;
}


/*オプション欄*/
.option_flex {
	padding-top: 3rem;
}


/*　比較表　*/

#comparison_container table {
	  border-collapse: collapse;
	  margin: 0 auto;
	  padding: 0;
	  width: 98%;
	  table-layout: fixed;
}

#comparison_container table tr {
	  background-color: #fff;
	  padding: .35em;
	  border: 2px solid #eee;
}

#comparison_container table th{
	  padding: .5rem 0;
	  border-right: 2px solid #fff;
	  vertical-align: middle;
}

#comparison_container table td {
	  padding: 1em .5em;
	  border-right: 2px solid #eee;
	  text-align: center;
}

#comparison_container table th {
 	 font-size: .8rem;
}


#comparison_container table thead th{
	  background-color: #50535d;
	  color:#fff;
}

#comparison_container table tbody th {
 	  border-right: 2px solid #eee;
}
#comparison_container th.non {
  	  border-right: none;
}

#comparison_container .price{
	  color: #000;
	  font-weight: bold;
	  font-size: 1.3em;
}
#comparison_container .price span {
	font-size: .6em;
}
#comparison_container .red_bk{
	background:#e81010;
}
#comparison_container .red-txt{
	color:#e81010;
}

#comparison_container .red-txt .del{
	font-size: 1em;
	text-decoration: line-through;
}

#comparison_container .red-txt .balloon1-top{
	position: relative;
    display: inline-block;
    margin: 1em 0;
    padding: 10px 2px;
    min-width: 60px;
    max-width: 100%;
    color: #fff;
    font-size: 8px;
    background: #ea465b;
    font-weight: 600;
}

#comparison_container p {
	font-size: .6em;
	text-align: left;
}



/*　メディア掲載実績　*/

#media_container .media_wrap img{
	width: 70%;
	box-shadow: 0 0 3px 0 rgba(0,0,0, .5);
}

/*beforeafter*/

#beforeafter_container .slider ul{
	display: flex;
	overflow-x: scroll;
	margin: 0;	
	padding: 0;
}

#beforeafter_container .slider li{
	min-width: 70%;
	margin: 10px;	
	padding: 0;
	list-style: none;
}

#top_page #beforeafter_container img{
	width: 100%;
}


/*お客様の声*/

#review_container .slider ul{
	display: flex;
	overflow-x: scroll;
	margin: 0;	
	padding: 0;
}

#review_container .slider li{
	min-width: 70%;
	margin: 10px;	
	padding: 0;
	list-style: none;
}

#top_page #review_container img{
	width: 100%;
}

/*

#top_page #review_container .flex_container{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

#top_page #review_container img{
	width: 45%;
	box-shadow: 0 0 3px 0 rgba(0,0,0, .5);
	margin: 1rem 0.3rem;	
	align-self: flex-start;
}


#online_personal_page #review_container img{
	width: 80%;
	box-shadow: 0 0 3px 0 rgba(0,0,0, .5);
	margin: 1rem 0;	
}
*/

/*　トレーナー欄　*/
#trainer_container {
	text-align: center;
}
#trainer_container img {
	padding-top: 2rem;
	width: 70%;
}
#trainer_container p {
	width: 95%;
	font-size: 1.3rem;
}

#trainer_container p span{
	font-size: 1.2rem;
}


/*  スライダー  */

.bxslider_thumbnail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    list-style: none;
}

.bxslider_thumbnail > li {
    width: calc(100% / 5);
}

.bxslider_thumbnail > li > a {
    display: block;
    position: relative;
    padding-top: 75%;
}

.bxslider_thumbnail > li > a > img {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
}

.bx-wrapper {
    background-color: transparent;
    margin: 0px auto;
    border: none;
    box-shadow: none;
	width:700px;
}
.bx-wrapper img {
    display: block;
    width: 100%;
}

/*  FAQ欄　*/

#FAQ_container{
	background: rgba(0,0,0,0.05);
	
}
.qa-006 {
    max-width: 500px;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
	text-align: left;
}

.qa-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
	
}

.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.0em;
}

.qa-006 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-006[open] summary::after {
    transform: rotate(225deg);
}

.qa-006 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 1em 1.5em 3em;
    color: #333;
    transition: transform .5s, opacity .5s;
	font-size: 1.2em;
}

.qa-006 p a{
	color: #ea465b;
	text-decoration: underline; 
}

.qa-006[open] p {
    transform: none;
    opacity: 1;
}

.qa-006 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

.qa-006 .openinghours{
	width: 100%;
}




/*  店舗情報  */
.shop_access h3 {
	font-size: 2rem;
	font-weight: normal;
	text-align: left;
	padding: 0 1rem;
}

#shoplist_container .shop_access {
	padding-bottom: 3rem;
	margin: 3rem auto;
	width: 90%;
	border-bottom: 1px #333 solid;
}

#shoplist_container .shop_access:last-child{
	border: none;
}

.shop_access .address,.business_hours {
	font-size: 12px;
	text-align: left;
	padding: 0;
	margin: 0 1rem;
} 


#shoplist_container .shop_photo {
	width: 100%;
	margin: 1rem 0;
}


.google_map {
	width: 100%;
	height: 400px;
}

#openinghours .openinghours{
	width: 90%;	
}


/*  お問い合わせ  */

#contact_container p{
	font-size: 1.2rem;
	width: 100%;
}
#contact_container p a{
	color: #ea465b;
	text-decoration: underline; 
}
/*----------------------------------------------------
フッター
----------------------------------------------------*/
footer {
	background: #333333;
	color: #ffffff;
	height: 400px;
	padding-bottom: 80px;
	position: relative;
}

.copyright {
	font-size: 1rem;
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	padding: 1rem;
}


/* ---------------- バナー　------------------ */
footer .banner_wrap {
	width: 90%;
	padding-top: 1rem;
	margin: 0 auto;
}

footer .banner_wrap a {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
}

footer .banner_wrap a img{
	margin-top:2rem;
	width: 100%;
}
footer .banner_wrap a img:hover{
	
}

footer .banner_wrap .company{
	margin-top:3rem; 
}



/*----------------------------------------------------
オンラインページ
----------------------------------------------------*/
#online_personal_page {
	overflow-x: hidden;
}


#online_personal_page .main_visual {
	height: 25vh;
	width: 100%;
	margin-top: 7rem;
	background: url("../images/online_top.jpg") no-repeat 200% ;
	background-size: 90%;
	background-color: rgba(255,255,255,0.5);
	background-blend-mode:overlay;
	display: table;
	color:#333;
}

#online_personal_page .main_visual hr {
	margin: 0;
	border-color: #000;
}

#online_personal_page .main_visual .text_container {
	display: table-cell;
	vertical-align: bottom;
	padding-bottom: 0;
	padding-left: 2rem;
}

#online_personal_page .main_visual .title_text {
	font-size: 1.6rem;
	text-align: left;
	padding-top: 0;
}
#online_personal_page .main_visual .title_text span{
	background: none;
	border: none;
}
#online_personal_page .title_toptxt {
	font-size: 3rem;
}

#online_personal_page .main_visual p {
	font-size: 1.4rem;
	text-align: left;
	padding-top: 1rem;
}


#online_personal_page .main_visual .contact_btn {
	display: none;
}


.youtube {
	position: relative;
	max-width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}



/* ----------------オンライン＿コンセプト------------------ */

#online_personal_page #concept_container .flex_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: hidden;
}

#online_personal_page #concept_container .flex_container .icon {
	padding: .5rem;
}

#online_personal_page #concept_container .flex_container .item {
	width: 40%;
	text-align: center;
	border: 1px solid #333;
	border-radius: 10px;
	padding: .5rem;
	margin: .5rem;
}

#online_personal_page #concept_container p {
	font-size: 1.2rem;
	text-align: center;
	line-height: 2;
}

/* ----------------オンライン＿スライダー------------------ */

.wrap {
  display: flex;
  align-items: center;
　height: 340px;
　overflow: hidden;
}
.slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
.content img{
  width: 200px;
  height: auto;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slide-paused:hover .slideshow {
  animation-play-state: paused;
}

/* ----------------オンライン＿フォト------------------ */

#onlinephoto_container p {
	padding-top: 0;
	margin: 0;
	width: 100%;
}
/* ----------------オンライン＿料金------------------ */

#online_personal_page #price_container {
	background: none;
	padding-bottom: 1rem;
}

#online_personal_page #price_container .monthly_item{
	border: 1px solid #333;
	margin: 1rem;
	width:90%;
	
}

#online_personal_page #price_container .monthly_item .price{
	display: flex;
    justify-content: center;
    align-items: flex-end;
}

#online_personal_page #price_container .monthly_item .circle {
	font-size: .8rem;
	line-height: 1.1;
	font-weight: 400;
	letter-spacing: 0.1em;
    display: inline-grid;
    color: #fff;
    background-color: #f00;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
}

#online_personal_page #price_container .price_info{
	text-align: left;
	font-size: 1rem;
	padding :1rem;
}

/* ----------------オンライン＿口コミ------------------ */
#online_personal_page #review_container img {
	width: 80%;
	box-shadow: 0 0 3px 0 rgba(0,0,0, .5);
	margin: .5rem;
}


/*----------------------------------------------------
キックボクシングページ
----------------------------------------------------*/

#kickboxing_page {
	overflow-x: hidden;
}


#kickboxing_page .main_visual {
	height: 25vh;
	width: 100%;
	margin-top: 7rem;
	background: url("../images/kickboxing_top.png") no-repeat 200% ;
	background-size: 90%;
	background-color: rgba(255,255,255,0.5);
	background-blend-mode:overlay;
	display: table;
	color:#333;
}

#kickboxing_page .main_visual hr {
	margin: 0;
	border-color: #000;
}

#kickboxing_page .main_visual .text_container {
	display: table-cell;
	vertical-align: bottom;
	padding-bottom: 0;
	padding-left: 2rem;
}

#kickboxing_page .main_visual .title_text {
	font-size: 1.6rem;
	text-align: left;
	padding-top: 0;
}
#kickboxing_page .main_visual .title_text span{
	background: none;
	border: none;
}
#kickboxing_page .title_toptxt {
	font-size: 3rem;
}

#kickboxing_page .main_visual p {
	font-size: 1.4rem;
	text-align: left;
	padding-top: 1rem;
}


#kickboxing_page .main_visual .contact_btn {
	display: none;
}



/* ----------------キックボクシング＿コンセプト------------------ */

#kickboxing_page #concept_container .flex_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: hidden;
}

#kickboxing_page #concept_container .flex_container .icon {
	padding: .5rem;
}

#kickboxing_page #concept_container .flex_container .item {
	width: 40%;
	text-align: center;
	border: 1px solid #333;
	border-radius: 10px;
	padding: .5rem;
	margin: .5rem;
}

#kickboxing_page #concept_container p {
	font-size: 1.4rem;
	text-align: center;
	line-height: 2;
}

/* ----------------キックボクシング＿料金------------------ */

#kickboxing_page #price_container {
	background: none;
	padding-bottom: 1rem;
}

#kickboxing_page #price_container .price_info{
	text-align: left;
	font-size: 1rem;
	padding :1rem;
}

#kickboxing_page #price_container #price_lead .small_txt{
	font-size: 1.2rem;
}
#kickboxing_page #price_container #price_lead .balloon1-top{
	font-size: 1.6rem;
}
/*----------------------------------------------------
採用情報ページ
----------------------------------------------------*/


#recruit_page .main_visual,#franchise_page .main_visual{
    height:100px;
  	line-height:100px;
    width: 100%;
    margin-top: 7rem;
    background: url("../images/recruit_top.jpg") no-repeat center top;
    background-size: cover;
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: overlay;
    display: table;
}

#recruit_page .main_visual .title_text,#franchise_page .main_visual .title_text{
	color: #fff;
	padding: 0;
	text-align: center;
	font-weight: 700;
}

#recruit_page #recruit_container h3{
	font-size: 1.5rem;
	font-weight: normal;
}

#recruit_page #recruit_container p{
	font-size: 1.4rem;
	font-weight: 300;
	text-align: left;
}
#recruit_page #recruit_container a{
	color: #ea465b;
	text-decoration: underline; 
}

#recruit_page #recruit_container .requirements,.recruitment_process{
	width: 90%;
	padding: 2.5rem 0;
	margin: 0 auto;
	border-bottom: solid rgba(0,0,0,1.00) .5px ;
}

#recruit_page #recruit_container h4{
	font-size: 2rem;
	font-weight: 500;
}


#recruit_page table {
	width: 95%;
	margin: 0 auto;
}


#recruit_page table tr {
	background: #fff;
}

#recruit_page table tr:nth-child(odd){
	background: #eee;
}


#recruit_page th {
  	padding: 10px;
	width: 25%;
}

#recruit_page td {
  	padding: 10px;
	width: 75%;
	text-align: left;
}


/*----------------------------------------------------
フランチャイズページ
----------------------------------------------------*/

#franchise_page .main_visual{
    height: 20vh;
    width: 100%;
    margin-top: 7rem;
    background: url("../images/recruit_top.jpg") no-repeat center top;
    background-size: cover;
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: overlay;
    display: table;
}

#franchise_page .main_visual .title_text{
	font-size: 1.6rem;
}

#franchise_page .container{
	padding: 1rem 0;
}

#franchise_page h3{
	font-size: 2rem;
	font-weight: normal;
}

#franchise_page #concept_container {
	text-align: center;
}

#franchise_page #concept_container .title_text{
	font-size: 1.2rem;
	text-align: center;
	line-height: 1.5;
}

#franchise_page #FCpoint_container p{
	text-align: left;
	line-height: 2;
}

#franchise_page #FCpoint_container p span{
	font-size: 1.8rem;
	font-weight: 500;
	color: #ea465b;
	padding-left:1.4rem;
}

#franchise_page #FCpoint_container p span:last-child{
	padding-left: 0;
}


#franchise_page #FCdetail_container p{
	text-align: left;
}



#franchise_page .FCdetail{
	width: 95%;
	margin: 0 auto;
}

#franchise_page .FCdetail h3{
	font-size:1.6rem;
}

#franchise_page .FCdetail h4{
	font-size: 1.4rem;
	padding:.5rem;
}


#franchise_page .cost{
	width: 80%;
	margin: 2rem auto;
}

#franchise_page table {
	width: 100%;
	paddig: 1rem 0;
	border: .5px solid #333;
}

#franchise_page table tr {
	background: #fff;
}

#franchise_page table tr:nth-child(odd){
	background: #eee;
}


#franchise_page th {
  	padding: 10px 5px;
	width: 70%;
	vertical-align: middle;
}

#franchise_page td {
  	padding: 10px 5px;
	width: 30%;
	text-align: center;
	vertical-align: middle;
}

/*----------------------------------------------------
メディア掲載情報ページ
----------------------------------------------------*/
#media_page .main_visual{
    height: 20vh;
    width: 100%;
    margin-top: 7rem;
    background: none;
    background-size: cover;
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: overlay;
    display: table;
}

#media_page .main_visual h2 {
	font-size: 2.4rem;
}

#media_page .h3_container {
	padding-bottom: 6rem;
}

#media_page .h3_container h3 {
	font-size: 2rem;
	font-weight: 400;
}

#media_page .h4_container {
	width: 90%;
	margin: 0 auto;
	text-align: left;

}
#media_page .h4_container h4 {
	font-size: 1.6rem;
	font-weight: normal;
	padding: 0.5em;/*文字周りの余白*/
  	color: #494949;/*文字色*/
  	background: #fffaf4;/*背景色*/
  	border-left: solid 5px #ffaf58;/*左線（実線 太さ 色）*/
}


/*----------------------------------------------------
　会社概要
----------------------------------------------------*/

#company_page .main_visual{
    height:100px;
  	line-height:100px;
    width: 100%;
    margin-top: 7rem;
    background: url("../images/company_top.jpg") no-repeat center top;
    background-size: cover;
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: overlay;
    display: table;
}

#company_page .main_visual .title_text{
	color: #fff;
	padding: 0;
	text-align: center;
	font-weight: 700;
}



#company_page #company_container h3{
	font-size: 1.5rem;
	font-weight: normal;
}

#company_page #company_container p{
	font-size: 1.4rem;
	font-weight: 300;
	text-align: left;
}

#company_page #company_container h4{
	font-size: 2rem;
	font-weight: 500;
}


#company_page table {
	width: 95%;
	margin: 0 auto;
}


#company_page table tr {
	background: #fff;
}

#company_page table tr:nth-child(odd){
	background: #eee;
}


#company_page th {
  	padding: 10px;
	width: 25%;
}

#company_page td {
  	padding: 10px;
	width: 75%;
	text-align: left;
}

