@charset "UTF-8";
/* 2022.04.06 Kishimoto */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400&display=swap');
/* --------------------------------------------------------------------------
      index.htmlの　PC用ここから min-width 1024px
---------------------------------------------------------------------------- */
/* 基本設定　ここから */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 62.5%;
	max-width: 100%;
}
body {
	margin: 0 auto;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	max-width: 100%;
	height: auto;
	overflow-x: hidden!important;
}
p {
	font-size: 16px;
	font-size: 1.6em;
	color: #3E3A39; /*濃いグレイ */
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}
h2 {
	font-size: 36px;
	font-size: 3.6rem;
	font-weight: bold;
}
h3 {
}
li {
	list-style: none;
}
dt {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
}
dd {
	font-size: 16px;
	font-size: 1.4rem;
	line-height: 1.6em;/* padding-top: 0.6em; 
	padding-bottom: 1.3em; */
}
img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
/* clearfix　ここから */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* clearfix　ここまで */

/* Google Map レスポンシブ　ここから */

.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.ggmap iframe, .ggmap object, .ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
}
* {
	margin: 0;
	padding: 0;
}
/* Google Map レスポンシブ　ここまで */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
.mint_green_color {
	color: #72C6D0; /*キーカラーミントグリーン*/
}
.wellco_body {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	background-color: #fff;
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
.clearfix:after {  /* clearfix　ここから */
	　　　　content: ".";
	　　　　display: block;
	　　　　height: 0;
	　　clear: both;
	　　visibility: hidden;
}/* clearfix　ここまで */
h2 {
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: bold;
}
p {
	font-size: 14px;
	font-size: 1.4em;
	color: #3E3A39; /*濃いグレイ */
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}
}
/* ---------------------基本設定　ここまで ---------------------- */


/* ===================================================
       header
  ===================================================*/
.wellco_header {
	background-color: #fff;
	display: flex;
	padding: 2% 5% 2% 5%;
	position: fixed;
	justify-content: space-between;
	width: 100%;
	align-items: flex-end;
	z-index: 1;
	flex-wrap: wrap;
	border-bottom: 1px solid #999;
}
.site-logo {
}
.site-logo img {
	height: 40px;
	width: auto;
}
.gnav__menu {
	display: flex;
	margin: 2% auto 0 auto;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.gnav__menu__item {
	margin-left: 25px;
}
.gnav__menu__item a {
	color: #3E3A39; /*濃いグレイ */
	text-decoration: none;
	margin: 0;
	padding: 0 0 5% 0;
	font-size: 1.5rem;
	vertical-align: bottom;
	background: transparent;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.gnav__menu__item a:hover {
	border-bottom: 2px solid #72C6D0; /*キーカラーミントグリーン*/
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.wellco_header {
	background-color: #fff;
	display: flex;
	padding: 5%;
	position: fixed;
	justify-content: center;
	width: 100%;
	align-items: flex-end;
}
.site-logo img {
	height: 30px;
	width: auto;
}
/*　ハンバーガーボタン　*/
.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	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;
	background : #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform : rotate(-45deg);
	transform : rotate(-45deg);
}
.hamburger.active span:nth-child(2),  .hamburger.active span:nth-child(3) {
	top: 16px;
	background : #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform : rotate(45deg);
	transform : rotate(45deg);
}
/* ナビが開いた状態 */
nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top : 0;
	left : -100vw;
	color: #fff;
	background: rgba(0,0,0,0.7);
	text-align: center;
	width: 100%;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;/* visibility: hidden; */
}
nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
	font-size: 1.4em;
	border-bottom: 1px solid #696969;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
	background : #ddd;
}
nav.globalMenuSp ul li a {
	display: block;
	color: #fff;
	padding: 1em 0;
	text-decoration : none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	opacity: 1;
	　visibility: visible;
	left : 0;
}
}
/* ===================================================
       main
  ===================================================*/
.main_contents {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
}
/*--- TOPのイメージ画像 ----*/
.top_img_box {
	width: 100%;
	margin: 0;
	padding: 0;
	max-width: 100%;
}
/*---- TOPへ戻る　ボタン　--------------------------------*/
#page-top {
	position: fixed;
	bottom: 8%;
	right: 2%;
}
#page-top a {
	background: #999;
	text-decoration: none;
	color: #fff;
	width: 80px;
	padding: 30px 0;
	text-align: center;
	display: block;
	border-radius: 0;
	font-size: 12px;
}
#page-top a:hover {
	text-decoration: none;
	background: #666;
}
/*------ 丸い　レッスン予約ボタン ------------------------*/
.lesson_round_btn_box {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-color: #fff;
}
.lesson_round_btn_div {
	width: 70%;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	position: relative;
}
.lesson_round_btn_div img {
	width: 250px;
	position: absolute;
	right: -60px;
	bottom: -120px;
	-webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	-moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	-ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
.lesson_round_btn_div img:hover {
	animation: poyo .6s;
}
@keyframes poyo {
 from, to {
transform: none;
}
 10% {
transform: scale(1.2);
}
 40% {
transform: scale(.9);
}
 60% {
transform: scale(1.04);
}
 80% {
transform: scale(.98);
}
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
　　/*---- TOPへ戻る　ボタン　--------------------------------*/
 #page-top {
	position: fixed;
	right: 1%;
}
#page-top a {
	background: #999;
	text-decoration: none;
	color: #fff;
	width: 40px;
	padding: 5% 0;
	text-align: center;
	display: block;
	border-radius: 0;
	font-size: 12px;
}
#page-top a:hover {
	text-decoration: none;
	background: #666;
}
/*-------- 丸い　レッスン予約ボタン ----------------------*/
.lesson_round_btn_box {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-color: #fff;
}
.lesson_round_btn_div {
	width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	position: relative;
}
.lesson_round_btn_div img {
	width: 100px;
	position: absolute;
	left: 0;
	top: -50px;
	-webkit-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	-moz-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	-ms-filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
	filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
}
/*---- wellco fitnessとは --------------------*/
.contents_section {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	background-color: #fff;
}
.tittle_box {
	text-align: center;
	margin: 0 auto;
}
.tittle_h2 {
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #3E3A39; /*濃いグレイ */
	display: inline-block;
	position: relative;
	margin: 8% auto 0 auto;
	line-height: 0.8em;
}
.top_margin_in {
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #3E3A39; /*濃いグレイ */
	display: inline-block;
	position: relative;
	margin: 10% 0 0 0;
	line-height: 0.8em;
}
.top_margin_in:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -30px; /*下線の上下位置調整*/
	display: inline-block;
	width: 150px; /*下線の幅*/
	height: 1px; /*下線の太さ*/
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%); /*位置調整*/
	background-color: #666666; /*下線の色*/
}
.top_margin_in img {
	width: 300px;
	margin: 0;
	padding: 0;
}
.tittle_h2:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -30px; /*下線の上下位置調整*/
	display: inline-block;
	width: 150px; /*下線の幅*/
	height: 1px; /*下線の太さ*/
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%); /*位置調整*/
	background-color: #666666; /*下線の色*/
}
.ul_box {
	width: 70%;
	max-width: 70%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin: 6% auto 2% auto;
	justify-content: flex-start;
	padding: 2% 0;
}
.ul_box_li_img {
	flex-basis: 45%;
}
.ul_box_li_p {
	flex-basis: 55%;
	padding: 0 1% 0 5%;
}
.mincyou_p {
	line-height: 3.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.6rem;
	color: #3E3A39; /*濃いグレイ */
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.tittle_box {
	text-align: center;
	margin: 8% auto;
	padding: 3%;
}
.tittle_h2 {
	line-height: 0.7em;
}
.top_margin_in {
	margin: 5% 0 0 0;
	line-height: 0.6em;
}
.top_margin_in::before {
	width: 100px;
	bottom: -20px;
}
.top_margin_in img {
	width: 220px;
	margin: 0 0 2% 0;
	padding: 0;
}
.tittle_h2::before {
	width: 100px;
	bottom: -20px;
}
.ul_box {
	width: 90%;
	max-width: 90%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	margin: 3% auto;
	justify-content: flex-start;
	padding: 0;
}
.ul_box_li_img {
	flex-basis: 100%;
	margin: 15% auto 5% auto;
}
.ul_box_li_p {
	flex-basis: 100%;
	padding: 3% 0;
}
.mincyou_p {
	line-height: 2.5rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.4rem;
	color: #3E3A39;
}
}
/*-------- 施設案内　--------------------------------*/
.main_img_box {
	width: 80%;
	max-width: 80%;
	margin: 5% auto;
}
.main_img_box img {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.main_img_box_p {
	line-height: 2.4rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.6rem;
	color: #3E3A39;
}
.right_p {
	float: right;
}
.left_p {
	float: left;
}
/*------------------- ジム エリア -------------------------------------*/
/*--- スライドショー　-----*/
.slideshow_box {/* スライドレールの枠 */
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 300px;
	margin-bottom: 100px;
}
.slideshow {/* content4つをまとめたスライドブロック */
	display: flex;
	-webkit-animation: loop-slide 20s infinite linear 1s both;/* アニメーション名 開始〜終了の所要時間 ループ回数 動きの加減速 開始までの遅延時間 開始前・終了後の挙動*/
	animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
 from {
 transform: translateX(0);
}
to {
	transform: translateX(-100%);
}
}
@keyframes loop-slide {
 from {
 transform: translateX(0);
}
to {
	transform: translateX(-100%);
}
}
/* ジム　スライドする要素 */
.content {
	width: 300px;
	height: 210px;
}
.content:nth-child(1) {
	background-image: url("../images/common/slider_g_01.jpg");
}
.content:nth-child(2) {
	background-image: url("../images/common/slider_g_02.jpg");
}
.content:nth-child(3) {
	background-image: url("../images/common/slider_g_03.jpg");
}
.content:nth-child(4) {
	background-image: url("../images/common/slider_g_04.jpg");
}
.content:nth-child(5) {
	background-image: url("../images/common/slider_g_05.jpg");
}
/* ホバー時に動きを止める*/
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	;
}
/* ホバー時の装飾 */
.content-hover {
	transition: all 0.2s;
	margin-right: 20px;
}
.content-hover:hover {
	transform: translateY(-20px);
	border-radius: 0 10%;
	box-shadow: 0 3px 10px 0 #333;
	opacity: 0.8;
	cursor: pointer;
}
.slideshow2 {/* content4つをまとめたスライドブロック */
	display: flex;
	-webkit-animation: loop-slide 20s infinite linear 1s both;/* アニメーション名 開始〜終了の所要時間 ループ回数 動きの加減速 開始までの遅延時間 開始前・終了後の挙動*/
	animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
 from {
 transform: translateX(0);
}
to {
	transform: translateX(-100%);
}
}
@keyframes loop-slide {
 from {
 transform: translateX(0);
}
to {
	transform: translateX(-100%);
}
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
/*--- スライドショー　-----*/
.slideshow_box {
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 200px;
	margin-bottom: 10px;
}
.content {
	width: 200px;
	height: 140px;
}
}

/*----------------------
 マシン一覧・紹介箇所
------------------------*/
.machine_list_box {
	width: 80%;
	max-width: 80%;
	margin: 5% auto;
}
.exercise_type_title_h4 {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 1.4vw;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
    font-weight: 300;
}
.machine_list_ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;/*最初と最後の子要素を両端に配置し、残りの要素は均等に間隔をあけて配置*/
	align-items: stretch;/*親要素の高さ、またはコンテンツの一番多い子要素の高さに合わせて広げて配置*/
	align-content: stretch;/*親要素の高さに合わせて広げて配置*/
}
.machine_list_li {
	flex-basis: 48%;
	margin: 3% auto;
}
.photo01 {
	background-image: url("../images/common/machine01.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo02 {
	background-image: url("../images/common/machine02.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo03 {
	background-image: url("../images/common/machine03.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo04 {
	background-image: url("../images/common/machine04.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo05 {
	background-image: url("../images/common/machine05.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo06 {
	background-image: url("../images/common/machine06.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo07 {
	background-image: url("../images/common/machine07.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo08 {
	background-image: url("../images/common/machine08.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 40% auto;
}
.photo09 {/*リフォーマー*/
	background-image: url("../images/common/machine09.jpg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 20% auto;
}
.machine_list_li_in_div {
	width: 63%;
	background-color: #fff;
	margin: 20px 0 0 auto;
	box-shadow: 0 3px 3px 0 #333;
	padding: 8% 5%;
}
.efficacy_tittle_h6 {
	text-align: center;
	color: #72C6D0;
	font-size: 2em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	line-height: 1.4em;
	border-bottom: 1px solid #72C6D0;
	padding: 0 0 3% 0;
}
.machine_name_tittle_h5 {
	text-align: center;
	color: #3E3A39;
	font-size: 2.2em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	line-height: 1.4em;
	padding: 4% 0;
}
.machine_explanation_p {
	line-height: 3rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 200;
	font-size: 1.6rem;
	color: #3E3A39;
	margin: 3% auto;
}
.movie_btn {
	background: rgb(35,147,194);
	background: linear-gradient(90deg, rgba(35,147,194,1) 11%, rgba(114,198,208,1) 56%, rgba(63,204,205,1) 89%);
	width: 100%;
	padding: 3%;
	margin: 10% auto 3% auto;
	border: 1px solid #2393c2;
	text-align: center;
	box-shadow: 5px 5px #2393c2;
	display: inline-block;
	transition: .3s;
}
.movie_btn:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #2393c2;
}
.movie_btn a {
	color: #fff;
	padding: 2%;
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.2em;
}
.movie_btn a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f138';
	margin-left: 10px;
}
.machine_list_reformer_ul {
}
.machine_list_reformer_li {
	margin: 3% auto;
	padding: 10px 0 0 0;
}
.machine_list_li_in_div_reformer {
	width: 81%;
	background-color: #fff;
	margin: 10px 0 0 auto;
	box-shadow: 0 3px 3px 0 #333;
	padding: 3% 2%;
}
.efficacy_tittle_h6_reformer {
	text-align: center;
	color: #72C6D0;
	font-size: 2em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	line-height: 1.2em;
	border-bottom: 1px solid #72C6D0;
	padding: 0 0 2% 0;
}
.machine_name_tittle_h5_reformer {
	text-align: center;
	color: #3E3A39;
	font-size: 2.6em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	line-height: 1em;
	padding: 2% 0;
}
.machine_explanation_p_reformer {
	line-height: 3rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 200;
	font-size: 1.6rem;
	color: #3E3A39;
	margin: 1% auto;
}
.reformer_movie_ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;/*最初と最後の子要素を両端に配置し、残りの要素は均等に間隔をあけて配置*/
	align-items: stretch;/*親要素の高さ、またはコンテンツの一番多い子要素の高さに合わせて広げて配置*/
}
.reformer_movie_li {
	flex-basis: 30%;
	margin: 0 auto;
}
.reformer_li_span {
	font-size: 0.8em;
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.machine_list_box {
	width: 95%;
	max-width: 95%;
	margin: 5% auto;
	padding: 8% 0 0 0;
}
.exercise_type_title_h4 {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 5vw;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
    font-weight: 300;
}
.machine_list_ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;/*最初と最後の子要素を両端に配置し、残りの要素は均等に間隔をあけて配置*/
	align-items: stretch;/*親要素の高さ、またはコンテンツの一番多い子要素の高さに合わせて広げて配置*/
	align-content: stretch;/*親要素の高さに合わせて広げて配置*/
}
.machine_list_li {
	flex-basis: 100%;
	margin: 5% auto;
}
.photo01 {
	background-image: url("../images/common/machine01_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo02 {
	background-image: url("../images/common/machine02_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo03 {
	background-image: url("../images/common/machine03_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo04 {
	background-image: url("../images/common/machine04_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo05 {
	background-image: url("../images/common/machine05_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo06 {
	background-image: url("../images/common/machine06_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo07 {
	background-image: url("../images/common/machine07_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo08 {
	background-image: url("../images/common/machine08_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.photo09 {/*リフォーマー*/
	background-image: url("../images/common/machine09_sp.jpg");
	background-position: top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.machine_list_li_in_div {
	width: 100%;
	background-color: #fff;
	margin: 98% 0 0 auto;
	box-shadow: 0 3px 3px 0 #333;
	padding: 6% 5%;
}
.efficacy_tittle_h6 {
	font-size: 1.8em;
	line-height: 1.4em;
}
.machine_name_tittle_h5 {
	font-size: 2em;
	line-height: 1.4em;
}
.machine_explanation_p {
	line-height: 2.4rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 200;
	font-size: 1.4rem;
	color: #3E3A39;
}
.movie_btn {
	background: rgb(35,147,194);
	background: linear-gradient(90deg, rgba(35,147,194,1) 11%, rgba(114,198,208,1) 56%, rgba(63,204,205,1) 89%);
	width: 100%;
	padding: 3%;
	margin: 5% auto 2% auto;
	border: 2px solid #2393c2;
	text-align: center;
	box-shadow: 5px 5px #2393c2;
	display: inline-block;
	transition: .3s;
}
.movie_btn:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #2393c2;
}
.movie_btn a {
	color: #fff;
	padding: 2%;
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.6em;
}
.movie_btn a::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f138';
	margin-left: 10px;
}
.machine_list_li_in_div_reformer {
	width: 100%;
	background-color: #fff;
	margin: 98% 0 0 auto;
	box-shadow: 0 3px 3px 0 #333;
	padding: 6% 5%;
}
.reformer_movie_ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;/*最初と最後の子要素を両端に配置し、残りの要素は均等に間隔をあけて配置*/
	align-items: stretch;/*親要素の高さ、またはコンテンツの一番多い子要素の高さに合わせて広げて配置*/
}
.reformer_movie_li {
	flex-basis: 100%;
	margin: 0 auto;
}
.reformer_li_span {
	font-size: 0.8em;
}
}
/*--- 目的別おすすめメニューのエリア --------*/
.by_purpose_training_movie_area {
	width: 100%;
	margin: 0 auto;
	max-width: 100%;
	background: rgb(35,147,194);
	background: linear-gradient(90deg, rgba(35,147,194,1) 11%, rgba(114,198,208,1) 56%, rgba(63,204,205,1) 89%);
}
.by_purpose_training_tittle {
	width: 80%;
	margin: 0 auto;
	text-align: center;
}
.by_purpose_training_tittle_h5 {
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	display: inline-block;
	position: relative;
	line-height: 0.8em;
	font-size: 3.6rem;
	margin: 8% auto 0 auto;
}
.by_purpose_ul {
	width: 80%;
	max-width: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;/*子要素を上から下に配置*/
	flex-wrap: nowrap;
	padding: 0 0 5% 0;
}
.by_purpose_li {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.improvement_effect_tittle {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 2% auto;
	border-bottom: 1px solid #fff;
}
.improvement_effect_h6 {
	font-size: 2rem;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	padding: 1% 2%;
}
.playlist_ul {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;/*子要素を左から右に配置*/
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.playlist_li {
	flex-basis: 17%;
}
.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}
.movie_and_name {
	text-align: center;
}
.movie_name_p {
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.6em;
}
.playlist_li_triangle {
	flex-basis: 2%;
}
.playlist_li_triangle_p {
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 60px 0;
}
.playlist_li_last {
	flex-basis: 17%;
}
.last_box {
	display: block;
	border: 1px solid #fff;
	padding: 10% 2%;
}
.last_box_tittle {
	text-align: center;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	line-height: 2em;
}
.last_box_p {
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 3%;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.by_purpose_training_movie_area {
	width: 100%;
	margin: 0 auto;
	max-width: 100%;
}
.by_purpose_training_tittle {
	width: 95%;
	margin: 0 auto;
	text-align: center;
}
.by_purpose_training_tittle_h5 {
	line-height: 1em;
	font-size: 2.4rem;
	margin: 10% auto;
}
.by_purpose_ul {
	width: 95%;
	max-width: 95%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;/*子要素を上から下に配置*/
	flex-wrap: nowrap;
	padding: 0 0 10% 0;
}
.by_purpose_li {
	width: 100%;
	max-width: 100%;
	margin: 5% auto;
}
.playlist_ul {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;/*子要素を上から下に配置*/
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}
.playlist_li {
	flex-basis: 100%;
}
.playlist_li_triangle {
	flex-basis: 100%;
}
.playlist_li_triangle_p {
	color: #fff;
	font-size: 2em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 0;
	text-align: center;
	transform: rotate( 90deg );/*文字回転*/
}
.playlist_li_last {
	flex-basis: 100%;
}
.last_box {
	display: block;
	border: 1px solid #fff;
	padding: 3% 2%;
}
.last_box_tittle {
	font-size: 1.6em;
	line-height: 2em;
}
.last_box_p {
}
}
/* 体組成計の箇所　*/
.taisoseikei_box {
	width: 100%;
	max-width: 100%;
	margin: 5% auto;
}
.taisoseikei_box_ul {
	width: 80%;
	max-width: 80%;
	margin: 5% auto;
	padding: 3%;
	background-color: #FBB03B; /*オレンジ*/
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.taisoseikei_box_li_1 {
	flex-basis: 40%;
	background-color: #fff;
}
.taisoseikei_box_li_2 {
	flex-basis: 24%;
	background-color: #fff;
}
.taisoseikei_box_li_3 {
	flex-basis: 28%;
	background-color: #fff;
	padding: 4% 2%;
}
.taisoseikei_h6 {
	color: #FBB03B; /*オレンジ*/
	border-bottom: 1px solid #FBB03B; /*オレンジ*/
	font-size: 2em;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding-bottom: 8%;
}
.taisoseikei_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 5% 3%;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.taisoseikei_box {
	width: 100%;
	max-width: 100%;
	margin: 5% auto;
}
.taisoseikei_box_ul {
	width: 95%;
	max-width: 95%;
	margin: 5% auto;
	padding: 3%;
	background-color: #FBB03B; /*オレンジ*/
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.taisoseikei_box_li_1 {
	flex-basis: 100%;
	background-color: #fff;
	margin: 2% auto;
}
.taisoseikei_box_li_2 {
	flex-basis: 60%;
	background-color: #fff;
	margin: 2% auto;
}
.taisoseikei_box_li_3 {
	flex-basis: 100%;
	background-color: #fff;
	margin: 2% auto;
	padding: 4% 2%;
}
.taisoseikei_h6 {
	font-size: 2em;
	padding-bottom: 5%;
}
.taisoseikei_p {
	padding: 5%;
}
}
/*-- ジム付帯施設 ---------*/
.gym_ancillary_facilities {
	width: 100%;
	margin: 0 auto;
	max-width: 100%;
}
.gym_ancillary_facilities_h5 {
	width: 80%;
	max-width: 80%;
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	line-height: 2em;
	font-size: 3.6rem;
	margin: 5% auto 0 auto;
	color: #3E3A39;
	border-bottom: 1px solid #3E3A39;
}
.gym_ancillary_facilities_ul {
	width: 80%;
	margin: 1% auto 15% auto;
	max-width: 80%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.gym_ancillary_facilities_li {
	flex-basis: 30%;
	text-align: center;
}
.gym_ancillary_facilities_li img {
}
.gym_ancillary_facilities_li_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	color: #3E3A39;
}
/*----- POPUP ----------*/
.pu {
	background-color: #efefef;
	box-shadow: 0 0 0 9999px rgba(0, 0, 0, .8);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 700px;
	height: 550px;
	overflow-y: scroll;
}
/* チェックボックスの初期設定 */
#pu-on1 {
	display: none;
}
#pu-on2 {
	display: none;
}
#pu-on3 {
	display: none;
}
/* チェックされたらポップアップウインドウを開く */
#pu-on1:checked + .pu {
	display: block;
}
#pu-on2:checked + .pu {
	display: block;
}
#pu-on3:checked + .pu {
	display: block;
}
/* 閉じるアイコン（右上） */
.icon-close {
	background: #000;
	color: #fff;
	font-size: 30px;
	padding: 0 10px;
	position: absolute;
	right: 0;
}
/* 開くボタン */
.btn-open {
	background: #fff;
	border-radius: 10px;
	color: #fff;
	padding: 10px;
	cursor: pointer;
	margin: 10px auto;
	width: 95%;
	text-align: center;
}
/* ポップアップの内容 */
.pu-content {
	margin: 40px auto 40px auto;
	width: 80%;
}
.pu-content p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 3% 0;
}
.annotation_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	width: 80%;
	margin: 2% auto;
	text-align: right;
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.gym_ancillary_facilities_h5 {
	width: 95%;
	max-width: 95%;
	line-height: 2em;
	font-size: 2.4rem;
	margin: 10% auto 0 auto;
}
.gym_ancillary_facilities_ul {
	width: 95%;
	margin: 3% auto;
	max-width: 95%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.gym_ancillary_facilities_li {
	flex-basis: 100%;
	text-align: center;
}
/*----- POPUP ----------*/
.pu {
	width: 90%;
	height: 60%;
	overflow-y: scroll;
}
/* ポップアップの内容 */
.pu-content {
	margin: 40px auto 40px auto;
	width: 90%;
}
.annotation_p {
	width: 95%;
	margin: 1% auto;
	text-align: center;
}
}
/*------------------- スタジオ エリア ----------------------------------------------------------------*/
/* スタジオ　スライドする要素 */
.content2 {
	width: 300px;
	height: 210px;
}
.content2:nth-child(1) {
	background-image: url("../images/common/slider_s_01.jpg");
}
.content2:nth-child(2) {
	background-image: url("../images/common/slider_s_02.jpg");
}
.content2:nth-child(3) {
	background-image: url("../images/common/slider_s_03.jpg");
}
.content2:nth-child(4) {
	background-image: url("../images/common/slider_s_04.jpg");
}
.content2:nth-child(5) {
	background-image: url("../images/common/slider_s_05.jpg");
}
/* ホバー時に動きを止める*/
.slide-paused:hover .slideshow2 {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	;
}
/* ホバー時の装飾 */
.content-hover {
	transition: all 0.2s;
	margin-right: 20px;
}
.content-hover:hover {
	transform: translateY(-20px);
	border-radius: 0 10%;
	box-shadow: 0 3px 10px 0 #333;
	opacity: 0.8;
	cursor: pointer;
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.main_img_box {
	width: 100%;
	max-width: 100%;
	margin: 5% auto;
	padding: 8% 0 0 0;
}
.main_img_box_p {
	line-height: 2rem;
	font-size: 1.4rem;
}
.right_p {
	float: right;
	padding: 3% 3% 3% 15%;
	margin: 0 0 10% 0;
}
.left_p {
	float: left;
	padding: 3% 15% 3% 3%;
}
/*--- スライドショー　-----*/
.slideshow_box2 {
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 200px;
	margin-bottom: 10px;
}
.content2 {
	width: 200px;
	height: 140px;
}
}
/*--- 写真と説明文の箇所　-----*/
.img_and_text_ul {
	width: 80%;
	max-width: 80%;
	margin: 0 auto 5% auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
.img_and_text_li {
	flex-basis: 48%;
}
.catch_copy {
	text-align: center;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2.6em;
	line-height: 1.6em;
	padding: 5% 0;
}
.setsumei_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.8em;
	line-height: 1.8em;
}
.orange_link_btn_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	text-align: center;
	margin: 5% 10%;
	width: 80%;
	border: 1px solid #F15A24;/*濃いオレンジ*/
	padding: 3%;
	box-shadow: 5px 5px #F15A24;/*濃いオレンジ*/
	display: inline-block;
	transition: .3s;
	font-size: 2em;
}
.orange_link_btn {
	text-decoration: none;
	color: #F15A24;/*濃いオレンジ*/
}
.orange_link_btn_p:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #F15A24;/*濃いオレンジ*/
}
.img_and_text_ul_reverse {
	width: 80%;
	max-width: 80%;
	margin: 0 auto 10% auto;
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.img_and_text_ul {
	width: 95%;
	max-width: 95%;
	margin: 0 auto 10% auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
.img_and_text_li {
	flex-basis: 100%;
}
.catch_copy {
	font-size: 2em;
	line-height: 1.6em;
	padding: 5% 0 0 0;
}
.setsumei_p {
	font-size: 1.4rem;
	line-height: 1.8em;
	padding: 5%;
}
.orange_link_btn_p {
	margin: 0 10%;
	width: 80%;
	font-size: 1.6rem;
}
.img_and_text_ul_reverse {
	width: 95%;
	max-width: 95%;
	margin: 0 auto 10% auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
}
/*------------------------------- 利用方法　--------------------------*/
.table_div {
	width: 80%;
	max-width: 80%;
	margin: 8% auto 0 auto;
}
table {
	border-collapse: collapse;
	width: 100%;
}
.tb01 .white_mint {
	background-color: #fff;
	border: solid 1px #72C6D0;/*ミントグリーン*/
	color: #72C6D0;/*ミントグリーン*/
	font-size: 2em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.tb01 th, .tb01 td {
	padding: 1%;
	border: solid 1px #72C6D0;/*ミントグリーン*/
	box-sizing: border-box;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.tb01 th {
	background: #72C6D0;/*ミントグリーン*/
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 2em;
}
.tb01 .white_border_bottom {
	border: solid 1px #fff;/*下に白の罫線*/
	width: 20%;
}
.available_time {
	font-size: 2rem;
	color: #3E3A39; /*濃いグレイ */
	text-align: center;
}
.available_time a {
	font-size: 1.4rem;
	color: #F15A24;/*濃いオレンジ*/
	text-align: center;
}
.available_time a:hover {
	opacity: 0.7;
}
.how_to_use {
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	color: #3E3A39; /*濃いグレイ */
	padding: 2%;
}
.how_to_use_p {
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	color: #3E3A39; /*濃いグレイ */
}
.how_to_use ul {
}
.how_to_use ul li {
	font-size: 1.4rem;
}
/*-- レッスン予約について　---*/
.circle_box {
	width: 70%;
	max-width: 70%;
	margin: 3% auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.circle {
	background: rgb(35,147,194);
	background: linear-gradient(90deg, rgba(35,147,194,1) 11%, rgba(114,198,208,1) 56%, rgba(63,204,205,1) 89%);
	padding: 0;
	margin: 0;
	width: 200px;
	height: 200px;
	line-height: 100px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	flex-basis: 200px;
}
.texts {
	text-align: center;
	font-size: 3rem;
	line-height: 3.6rem;
	margin-top: 20%;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.circle_beside {
	flex-basis: 70%;
}
.circle_beside_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.8rem;
}
.circle_beside_orange_link_btn_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	text-align: center;
	margin: 2%;
	width: 65%;
	border: 1px solid #F15A24;
	padding: 15px;
	box-shadow: 5px 5px #F15A24;
	display: inline-block;
	transition: .3s;
	font-size: 2em;
	float: right;
}
.circle_beside_orange_link_btn_p:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #F15A24;/*濃いオレンジ*/
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.table_div {
	width: 95%;
	max-width: 95%;
	margin: 14% auto 5% auto;
}
.tb01 .head {
	display: none;
}
.tb01 {
	width: 100%;
}
.tb01 td,  .tb01 th {
	display: block;
	width: 100%;
	border-bottom: none;
}
.tb01 .white_border_bottom {
	border: solid 1px #72C6D0;/*ミントグリーン*/
	width: 100%;
}
.tb01 td {
	padding: 3%;
	display: block;
	width: 100%;
	line-height: 2;
	text-align: left;
}
.tb01 td:before {
	color: #72C6D0;/*ミントグリーン*/
	content: attr(data-label);
	font-weight: bold;
	padding: 0px 10px;
	display: inline;
	background-color: #e0ffff;/*薄いミントグリーン*/
	margin-right: 10px;
	float: left;
}
.tb01 tr:last-child {
	border-bottom: solid 1px #ccc;
}
.available_time {
	font-size: 1.8rem;
}
.available_time a {
	text-align: center;
	padding: 0;
	margin: 2% auto;
}
.how_to_use {
	font-size: 1.8rem;
}
.how_to_use_p {
	font-size: 1.6rem;
	padding: 0 3%;
	line-height: 2.4rem;
}
.how_to_use ul {
	padding: 0 2%;
}
.how_to_use ul li {
	font-size: 1.4rem;
	line-height: 2.2rem;
	padding: 1% 0;
}
/*-- レッスン予約について　---*/
.circle_box {
	width: 95%;
	max-width: 95%;
	margin: 3% auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.circle {
	padding: 0;
	margin: 0 auto;
	width: 200px;
	height: 200px;
	line-height: 100px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	flex-basis: 200px;
}
.texts {
	font-size: 2rem;
	line-height: 2.4rem;
	margin-top: 30%;
}
.circle_beside {
	flex-basis: 90%;
	margin: 0 auto;
	padding: 5%;
}
.circle_beside_p {
	font-size: 1.4rem;
}
.circle_beside_orange_link_btn_p {
	margin: 5% auto;
	width: 100%;
	padding: 10px;
	display: inline-block;
	transition: .3s;
	font-size: 1.8em;
	float: left;
}
}
/*---- 当日の流れ　--------------------------*/
.by_area_box {
	width: 80%;
	max-width: 80%;
	margin: 0 auto;
}
.by_area_wrap {
	width: 100%;
	max-width: 100%;
	margin: 5% auto;
}
.by_area_box_h6 {
	border-bottom: 1px solid #72C6D0;/*ミントグリーン*/
	color: #72C6D0;/*ミントグリーン*/
	font-size: 2.4rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.by_area_box_ul {
	width: 100%;
	max-width: 100%;
	margin: 2% auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.by_area_box_li {
	flex-basis: 28%;
}
.by_area_box_li_triangle {
	flex-basis: 2%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 5rem;
	color: #b3b3b3;/*薄いグレー*/
}
.by_area_koumoku_p {
	background: rgb(35,147,194);
	background: linear-gradient(90deg, rgba(35,147,194,1) 11%, rgba(114,198,208,1) 56%, rgba(63,204,205,1) 89%);
	color: #fff;
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 5px 20px;
}
.by_area_naiyou_p {
	font-size: 1.8em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	padding: 3%;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.by_area_box {
	width: 95%;
	max-width: 95%;
	margin: 5% auto 0 auto;
}
.by_area_wrap {
	width: 100%;
	max-width: 100%;
	margin: 5% auto;
}
.by_area_box_h6 {
	font-size: 2rem;
}
.by_area_box_ul {
	margin: 2% auto;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
}
.by_area_box_li {
	flex-basis: 100%;
}
.by_area_box_li_triangle {
	flex-basis: 100%;
	transform: rotate( 90deg );
	text-align: center;
	font-size: 3rem;
}
.by_area_koumoku_p {
	font-size: 1.8rem;
}
.by_area_naiyou_p {
	font-size: 1.6em;
}
}
/*---- 料金案内　--------------------------*/
.price_supplement_box {
	width: 70%;
	max-width: 70%;
	margin: 3% auto;
}
.small_span {
	font-size: 1.6rem;
}
.payment_procedure_a {
	color: #F15A24;
	text-align: center;
}
.payment_procedure_a:hover {
	opacity: 0.7;
}
/*----アコーディオン　--*/
.accordion-container .accordion-title {
	position: relative;
	margin: 0;
	padding: 0.625em 0.625em 0.625em 2em;
	background-color: #fff;
	font-size: 2rem;
	color: #3E3A39; /*濃いグレイ */
	cursor: pointer;
	border-bottom: 1px solid #b3b3b3;/*薄いグレー*/
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.accordion-container .accordion-title:hover, .accordion-container .accordion-title:active, .accordion-title.open {
	background-color: #f5f5f5;/*薄いグレー*/
}
.accordion-container .accordion-title::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	width: 15px;
	height: 2px;
	/*縦線に*/
	transform: rotate(90deg);
	background: #3E3A39; /*濃いグレイ */
	transition: all .3s ease-in-out;
}
.accordion-container .accordion-title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	/*横線*/
	width: 15px;
	height: 2px;
	background: #3E3A39; /*濃いグレイ */
	transition: all .2s ease-in-out;
}
.accordion-container .accordion-title.open::before {
	transform: rotate(180deg);
}
.accordion-container .accordion-title.open::after {
	opacity: 0;
}
.accordion-content {
	display: none;
	padding: 2% 5%;
}
.accordion-content p {
	font-size: 2rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
/* CSS for CodePen */
.accordion-container {
	width: 80%;
	margin: 5% auto 8% auto;
}
.Q_mint {
	color: #72C6D0;/*ミントグリーン*/
}
.A_orange {
	color: #F15A24;/*オレンジ*/
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.price_supplement_box {
	width: 95%;
	max-width: 95%;
	margin: 3% auto;
}
.small_span {
	font-size: 1.4rem;
}
/*アコーディオン*/
.accordion-container .accordion-title {
	position: relative;
	margin: 0;
	padding: 2% 10% 2% 2%;
	background-color: #fff;
	font-size: 1.6rem;
	color: #3E3A39;
	cursor: pointer;
	border-bottom: 1px solid #b3b3b3;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.accordion-container .accordion-title::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 14px;
	height: 2px;
	/*縦線に*/
	transform: rotate(90deg);
	background: #3E3A39; /*濃いグレイ */
	transition: all .3s ease-in-out;
}
.accordion-container .accordion-title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	/*横線*/
	width: 14px;
	height: 2px;
	background: #3E3A39; /*濃いグレイ */
	transition: all .2s ease-in-out;
}
.accordion-container {
	width: 95%;
	margin: 5% auto 10% auto;
}
.accordion-content p {
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
}
/*---- 右にある2個のボタン　--------------------------*/
.two_btn_box {
}
.two_btn_box_ul {
}
.two_btn_box_li {
}
.two_btn_box_li:hover {
	opacity: 0.7;
}
.two_btn_box_li .right_btn01 {
	position: fixed;
	top: 150px;
	right: 0;
	z-index: 999;
	background-color: #3FCCCD;/*ミントグリーン*/
	padding: 1%;
	width: 70px;
	text-decoration: none;
	box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057),  0 5px 6.1px rgba(0, 0, 0, 0.076),  0 10.1px 11.4px rgba(0, 0, 0, 0.086),  0 19.2px 19.8px rgba(0, 0, 0, 0.092),  0 38.4px 34.8px rgba(0, 0, 0, 0.1),  0 101px 74px rgba(0, 0, 0, 0.13);
}
.two_btn_box_li .right_btn02 {
	position: fixed;
	top: 350px;
	right: 0;
	z-index: 999;
	background-color: #F7931E;/*オレンジ*/
	padding: 1%;
	width: 70px;
	text-decoration: none;
	box-shadow: 0 1.9px 2.5px rgba(0, 0, 0, 0.057),  0 5px 6.1px rgba(0, 0, 0, 0.076),  0 10.1px 11.4px rgba(0, 0, 0, 0.086),  0 19.2px 19.8px rgba(0, 0, 0, 0.092),  0 38.4px 34.8px rgba(0, 0, 0, 0.1),  0 101px 74px rgba(0, 0, 0, 0.13);
}
.two_btn_box_p {
	writing-mode: vertical-rl;
	/* -ms-writing-mode: tb-rl;
    -webkit-writing-mode:vertical-rl; */
	color: #fff;
	font-weight: 500;
}
.yellow_color {
	color: yellow;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
/*メニューをページ下部に固定*/
#sp-fixed-menu {
	position: fixed;
	width: 100%;
	bottom: 0px;
	/* opacity: 0.9; */
	z-index: 99;
}
/*メニューを横並びにする*/
#sp-fixed-menu ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
#sp-fixed-menu li {
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0;
	margin: 0;
	border-right: 1px solid #fff;
}
#sp-fixed-menu li:hover {
	opacity: 0.7;
}
/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child {
	background: #38b435;
}
/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child {
	background: #f3a324;
}
/*ボタンを調整*/
#sp-fixed-menu li a {
	color: #fff;
	text-align: center;
	display: block;
	width: 100%;
	padding: 2%;
	text-decoration: none;
}
.two_btn_box_p {
	writing-mode: horizontal-tb;
	/* -ms-writing-mode: tb-rl;
		-webkit-writing-mode:vertical-rl; */
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
}
}
/* =========================================
       footer
  =========================================*/
footer {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background-color: #3e3a39;
}
.c-copyright {
	text-align: center;
	padding: 8px 3%;
}
.c-container {
	color: #fff;
	font-size: 1rem;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
footer {
	padding: 0 0 60px 0;
}
.c-copyright {
	text-align: center;
}
}
/* =========================================
       NEWS　埋め込み　wordpress
  =========================================*/
  /*-------- NEWSの埋め込み背景　-----------------------*/
.gradeon_background {
	background: rgb(35,147,194);
	background: linear-gradient(90deg, rgba(35,147,194,1) 11%, rgba(114,198,208,1) 56%, rgba(63,204,205,1) 89%);
	padding: 0 0 3% 0;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.gradeon_background {
	padding: 0 0 14% 0;
}
}
.iframe_box {
	width: 70%;
	max-width: 70%;
	margin: 2% auto;
	background-color: #fff;
	padding: 2% 0 2px 0;
}
.iframe_div {
	position: relative;
	padding-bottom: 15%;
	height: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.iframe_div iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	display: block;
	border: none;
}
.news_ichiran_p {
	display: block;
	padding: 1% 4% 2% 4%;
	float: right;
}
.news_ichiran_p a {
	color: #fff;
}
.news_tittle_h4 img {
	position: relative;
	z-index: 1;
	left: 17%;
	top: 60px;
	width: 200px;
	margin: 0;
	padding: 0;
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.iframe_box {
	width: 90%;
	max-width: 90%;
	margin: 2% auto;
	background-color: #fff;
}
.iframe_div {
	position: relative;
	padding: 25%;
	height: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.iframe_div iframe {
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	height: 100%;
	display: block;
	border: none;
}
.news_tittle_h4 img {
	position: relative;
	z-index: 1;
	left: 5%;
	top: 20px;
	width: 100px;
	margin: 0;
	padding: 0;
}
}
/*---------------------------
 インストラクター常駐ボタンリンク　追加
-----------------------------*/
.flex_right {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-end;
	width: 80%;
	max-width: 80%;
	margin: 0 auto;
}
.instructor_resident_orange_link_btn_p {
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	text-align: center;
	margin: 2% 0 2% auto;
	width: 40%;
	border: 1px solid #F15A24;
	padding: 1%;
	box-shadow: 5px 5px #F15A24;
	display: inline-block;
	transition: .3s;
	font-size: 2em;
}
.instructor_resident_a {
	text-decoration: none;
	color: #F15A24;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.flex_right {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-end;
	width: 95%;
	max-width: 95%;
	margin: 0 auto;
}
.instructor_resident_orange_link_btn_p {
	margin: 0 10%;
	width: 80%;
	font-size: 1.6rem;
}
}
/*----------------------------------------
 レッスン予約URL変更＆案内変更　2022.0622
 ----------------------------------------*/
.lesson_yoyaku_info {
	margin: 3% auto;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 1.8em;
	line-height: 1.4em;
	background-color: #FFD29945;
	padding: 1% 2%;
	color: #F15A24;
	text-align: center;
}
 @media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.lesson_yoyaku_info {
	font-size: 1.4rem;
	line-height: 1.6em;
	padding: 5%;
}
}
/*-----------------------------------------
 　ニュース箇所　修正　2022.0902
 -------------------------------------------*/
.news_ul {
	background: #fff;
	padding: 0;
	width: 90%;
	margin: 0 auto;
}
.news_li {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border-bottom: 1px solid #ccc;
	padding: 10px 10px 0 0;
}
.news_day {
	display: block;
	color: #3FCCCD;
	font-weight: 500;
	margin: 0 0 7px 20px;
	font-size: 1.8em;
	flex-basis: 30%;
}
.news_tittle {
	display: block;
	color: #333;
	margin: 0 0 7px 0;
	font-size: 1.6em;
	flex-basis: 70%;
}
.news_tittle a {
	text-decoration: none;
	color: #3E3A39;
}
.news_li::after {
	content: '';
	display: block;
	clear: both;
}
.new_mark {
	color: #fff;
	background-color: #F60;
	padding: 2px 8px;
	margin: 0 5px 0 0;
}
@media screen and (max-width:767.98px) {/* 変更点。0.02引く。 */
.news_ul {
	background: #fff;
	padding: 0;
	width: 100%;
	margin: 0 auto;
}
.news_li {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	border-bottom: 1px solid #ccc;
	padding: 10px 10px 0 0;
}
.news_day {
	display: block;
	color: #3FCCCD;
	font-weight: 500;
	margin: 0 0 7px 20px;
	font-size: 1.8em;
	flex-basis: 100%;
}
.news_tittle {
	display: block;
	color: #333;
	margin: 0 0 7px 20px;
	font-size: 1.6em;
	flex-basis: 100%;
}
}
