@charset "utf-8";

/* ******************************************************************

	--style.css--

	1. Style setting
		1-1. Base styles
		1-2. Structure styles

	2. Layout setting
		2-1. Header styles
			・2-1_1. SpNavi styles
		2-2. GlobalNavi styles
		2-3. Main styles
		2-4. SideBar styles
		2-5. Footer styles
		2-6. bnrarea styles
		2-7. Page styles

	99. SP

****************************************************************** */

/*==================================================================
	1. Base setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Base styles
-------------------------------------------------------------------*/
body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
	font-size: 14px;
	/*line-height: 1.8;*/
	color: #323232;
	background: #FFF;
	min-width: 1000px;
	-webkit-text-size-adjust: none;
}

a { color: #EA7E30; text-decoration: underline; outline: none; -webkit-transition: .3s; transition: .3s;}
a:hover { color: #EA7E30; text-decoration: none;}

/* ------------------------------------------------------------------
	1-2. Structure styles
-------------------------------------------------------------------*/
.container { }
.main {
	padding: 30px 0;
}
.wrapper {
	width: 1000px;
	margin: 0px auto;
}
.main .wrapper {
	width: 750px;
}

/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Header styles
-------------------------------------------------------------------*/
header {
	background: #323232;
	padding: 20px 0;
}
header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.logo img {
	max-height: 40px;
}

.header_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
}
.header_nav_item {
	width: 80px;
	text-align: center;
	line-height: 1;
}
.header_nav_item a {
	display: block;
	color: #FFF;
	text-decoration: none;
}
.header_nav_icon {
	display: block;
}
.header_nav_icon img {
	display: inline-block;
	height: 30px;
}
.header_nav_title {
	font-size: 10px;
}

.sp_header {
	display:none;
}
/* ------------------------------------------------------------------
	2-3. Main styles
-------------------------------------------------------------------*/
.section {
	margin-bottom: 40px;
}
.inner {
	padding: 0 240px;
}

/* ログインページなどで使用 */
.section_space_wide {
	padding: 80px 0;
}

/* ------------------------------------------------------------------
	2-5. Footer styles
-------------------------------------------------------------------*/
.footer {
	background: #438D46;
	padding: 30px 0;
}
.footer .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.footer_logo img {
	max-height: 40px;
}
.fnav {
	margin-left: auto;
}
.fnav_item {
	display: inline-block;
	border-right: 1px solid #FFF;
	padding: 0 15px;
	font-size: 12px;
	line-height: 1;
}
.fnav_item:first-child {
	border-left: 1px solid #FFF;
}
.fnav_item a {
	color: #FFF;
}
.copyright {
	background: #323232;
	padding: 10px 0;
	text-align: right;
	font-size: 12px;
	color: #FFF;
}

/* ------------------------------------------------------------------
	2-7. Page styles
-------------------------------------------------------------------*/

/* ▼▼▼ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▼▼▼ */

/* ------------------------------------
	レッスン一覧_ここから
------------------------------------*/
.lesson_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.lesson_item {
	border-radius: 10px;
	overflow: hidden;
	margin: 0 15px 15px 0;
	width: calc( ( 100% - 30px ) / 3 );
}
.lesson_item:nth-child(3n) {
	margin-right: 0;
}
.lesson_item a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.lesson_thm {
	text-align: center;
}
.lesson_body {
	background: #323232;
	padding: 10px;
	color: #FFF;
}
.lesson_title {
	margin-bottom: 10px;
}
.lesson_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size:0.8em;
}
.lesson_place {
	margin-left: 10px;
}
.lesson_price {
	margin-left: auto;
}

/* 横スクロールありの場合 */
.lesson_list.scroll {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.lesson_list.scroll .lesson_item {
	width: calc( ( 100% - 15px ) / 4 );
	flex: 0 0 auto;
}
.lesson_list.scroll .lesson_item:nth-child(3n),
.lesson_list.scroll .lesson_item:nth-child(4n) {
	margin-right: 15px;
}

@media only screen and (max-width: 640px) {
	.lesson_item {
	margin: 0 3% 3% 0;
	width: calc( ( 100% - 3% ) / 2 );
	}
	.lesson_item:nth-child(3n){
	margin-right: 3%;
	}
	.lesson_item:nth-child(2n),
	.lesson_item:nth-child(6n){
	margin-right: 0;
	}
	.lesson_body {
	padding: 5%;
	}
	.lesson_title {
	margin-bottom: 5%;
	}
	.lesson_place {
	margin-left: 5%;
	}

	/* 横スクロールありの場合 */
	.lesson_list.scroll .lesson_item {
	width: calc( ( 100% - 15% ) / 2 );
	}
	.lesson_list.scroll .lesson_item:nth-child(2n),
	.lesson_list.scroll .lesson_item:nth-child(3n),
	.lesson_list.scroll .lesson_item:nth-child(4n) {
	margin-right: 3%;
	}

}

/* ------------------------------------
	レッスン一覧_ここまで
------------------------------------*/

/* ------------------------------------
	レッスン詳細（汎用パーツ）_ここから
------------------------------------*/
.lesson_article_info {
	background: #323232;
	border-radius: 10px;
	padding: 15px 20px;
	color: #FFF;
}
.lesson_article_info_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
}
.lesson_article_info_item:not(:last-child) {
	margin-bottom: 10px;
}
.lesson_article_info_item dt {
	border: 1px solid #FFF;
	padding: 5px;
	margin-right: 20px;
	width: 130px;
	text-align: center;
}
.lesson_article_info_item dd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	word-break: break-all;
}

@media only screen and (max-width: 640px) {
	.lesson_article_info {
	padding: 3%;
	}
	.lesson_article_info_item {
	font-size: 3.59vw;
	}
	.lesson_article_info_item:not(:last-child) {
	margin-bottom: 3%;
	}
	.lesson_article_info_item dt {
	padding: 3px;
	margin-right: 3%;
	width: 25.64vw;
	}

}

/* ------------------------------------
	レッスン詳細（汎用パーツ）_ここまで
------------------------------------*/

/* ------------------------------------
	プロ一覧_ここから
------------------------------------*/
.pro_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.pro_item {
	border-radius: 10px;
	overflow: hidden;
	margin: 0 15px 15px 0;
	width: calc( ( 100% - 30px ) / 3 );
}
.pro_item:nth-child(3n) {
	margin-right: 0;
}
.pro_item a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.pro_thm {
	text-align: center;
}
.pro_body {
	background: #323232;
	padding: 10px;
	color: #FFF;
}
.pro_title { }
.pro_info {
	margin-bottom: 10px;
}
.pro_meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.pro_rate {
	margin-left: auto;
}

/* 横スクロールありの場合 */
.pro_list.scroll {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.pro_list.scroll .pro_item {
	width: calc( ( 100% - 15px ) / 4 );
	flex: 0 0 auto;
}
.pro_list.scroll .pro_item:nth-child(3n),
.pro_list.scroll .pro_item:nth-child(4n) {
	margin-right: 15px;
}

/* レッスン詳細に表示するプロのプロフィール */
.pro_profile {
	border: 1px solid #C2C2C2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px;
	margin-bottom: 30px;
}
.pro_profile_thm {
	width: 80px;
	margin-right: 20px;
	text-align: center;
}
.pro_profile_name {
	font-size: 20px;
}
.pro_profile_name span {
	font-size: 12px;
}
.pro_profile_info {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media only screen and (max-width: 640px) {
	.pro_item {
	margin: 0 3% 3% 0;
	width: calc( ( 100% - 3% ) / 2 );
	}
	.pro_item:nth-child(3n) {
	margin-right: 3%;
	}
	.pro_item:nth-child(2n),
	.pro_item:nth-child(6n){
	margin-right: 0;
	}
	.pro_body {
	padding: 5%;
	}
	.pro_info {
	margin-bottom: 5%;
	}

	/* 横スクロールありの場合 */
	.pro_list.scroll .pro_item {
	width: calc( ( 100% - 15% ) / 2 );
	}
	.pro_list.scroll .pro_item:nth-child(2n),
	.pro_list.scroll .pro_item:nth-child(3n),
	.pro_list.scroll .pro_item:nth-child(4n) {
	margin-right: 3%;
	}
	
	/* レッスン詳細に表示するプロのプロフィール */
	.pro_profile {
	padding: 4%;
	margin-bottom: 5%;
	}
	.pro_profile_thm {
	width: 20.51vw;
	margin-right: 5%;
	}
	.pro_profile_name {
	font-size: 3.59vw;
	}
	.pro_profile_name span {
	font-size: 2.56vw;
	}
	
}

/* ------------------------------------
	プロ一覧_ここまで
------------------------------------*/

/* ------------------------------------
	コーチング一覧_ここから
------------------------------------*/
.coach_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.coach_item {
	border-radius: 10px;
	overflow: hidden;
	margin: 0 15px 15px 0;
	width: calc( ( 100% - 30px ) / 3 );
}
.coach_item:nth-child(3n) {
	margin-right: 0;
}
.coach_item a {
	display: block;
	color: inherit;
	text-decoration: none;
}
.coach_head {
	background: #323232;
	padding: 15px 10px;
	text-align: center;
	color: #FFF;
}
.coach_thm {
	width: 130px;
	margin: 0 auto 5px auto;
}
.coach_thm img {
	border-radius: 50%;
}
.coach_name {
	margin-bottom: 10px;
	font-size: 20px;
	color: #438D46;
}
.coach_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.coach_genre {
	background: #C2C2C2;
	border-radius: 3px;
	padding: 3px 10px;
	font-size: 12px;
	color: #323232;
}
.coach_genre:not(:first-child) {
	margin-left: 5px;
}
/* ドライバー */
.coach_genre.type_01 {
	background: #EA7E30;
}
/* その他必要に応じて色指定 */
/*
.coach_genre.type_02 {
	background: #FEB118;
}
*/

.coach_date {
	margin-left: auto;
	font-size: 12px;
}
.coach_body {
	background: #438D46;
	padding: 10px;
	color: #FFF;
}
.coach_title {
	font-size: 18px;
	font-weight: normal;
}

/* 横スクロールありの場合 */
.coach_list.scroll {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.coach_list.scroll .coach_item {
	width: calc( ( 100% - 15px ) / 3 );
	flex: 0 0 auto;
}
.coach_list.scroll .coach_item:nth-child(3n) {
	margin-right: 15px;
}

@media only screen and (max-width: 640px) {
	.coach_item {
	margin: 0 3% 3% 0;
	width: calc( ( 100% - 3% ) / 2 );
	}
	.coach_item:nth-child(3n) {
	margin-right: 3%;
	}
	.coach_item:nth-child(2n),
	.coach_item:nth-child(6n){
	margin-right: 0;
	}
	.coach_head {
	padding: 8% 5%;
	}
	.coach_thm {
	width: 25.64vw;
	margin: 0 auto 3% auto;
	}
	.coach_name {
	margin-bottom: 5%;
	font-size: 4.62vw;
	}
	.coach_genre {
	padding: 1px 3px;
	font-size: 2.56vw;
	}
	.coach_genre:not(:first-child) {
	margin-left: 3px;
	}
	.coach_date {
	font-size: 2.56vw;
	}
	.coach_body {
	padding: 5%;
	}
	.coach_title {
	font-size: 3.59vw;
	}

	/* 横スクロールありの場合 */
	.coach_list.scroll .coach_item {
	width: calc( ( 100% - 15% ) / 2 );
	}
	.coach_list.scroll .coach_item:nth-child(2n),
	.coach_list.scroll .coach_item:nth-child(3n),
	.coach_list.scroll .coach_item:nth-child(4n) {
	margin-right: 3%;
	}

}

/* ------------------------------------
	コーチング一覧_ここまで
------------------------------------*/

/* ------------------------------------
	コーチング詳細（汎用パーツ）_ここから
------------------------------------*/
.coach_article_head {
	margin-bottom: 40px;
}
.user_cover {
	margin-bottom: 30px;
	text-align: center;
}
.user_cover_face {
	width: 210px;
	margin: 0 auto 10px auto;
	position: relative;
}
.user_cover_name {
	font-size: 30px;
}
.user_cover_info {
	font-size: 18px;
}
.user_caption {
	border: 1px solid #C2C2C2;
	padding: 15px;
	font-size: 16px;
}
/* プロフィール画像編集アイコン */
.user_cover_face_edit {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
}
.user_cover_face_edit a {
	display: block;
	background: #C2C2C2;
	border: 1px solid #FFF;
	border-radius: 50%;
	font-size: 20px;
	line-height: 50px;
	color: inherit;
}

.coach_article_body {
	background: #F5F5F5;
	padding: 30px;
}
.coach_faq_body {
	background: #F5F5F5;
	padding: 30px;
}
.coach_faq_subject {
	border-bottom: 1px solid #323232;
	padding-bottom: 20px;
	margin-bottom: 20px;
	font-size: 24px;
}
.coach_faq_date {
	margin-bottom: 15px;
}
.coach_faq_contents {
	font-size: 16px;
}

.coach_faq_answer {
	background: #FFF;
	padding: 20px;
	margin-top: 20px;
}
.coach_faq_answer_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}
.coach_faq_answer_thm {
	width: 60px;
	margin-right: 10px;
}
.coach_faq_answer_name {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 20px;
}
.coach_faq_answer_date {
	margin-bottom: 15px;
}
.coach_faq_answer_contents { }

@media only screen and (max-width: 640px) {
	.coach_article_head {
	margin-bottom: 5%;
	}
	.user_cover {
	margin-bottom: 3%;
	}
	.user_cover_face {
	width: 25.64vw;
	margin: 0 auto 3% auto;
	}
	.user_cover_name {
	font-size: 5.13vw;
	}
	.user_cover_info {
	font-size: 4.62vw;
	}
	.user_caption {
	padding: 3%;
	font-size: 3.59vw;
	}
	/* プロフィール画像編集アイコン */
	.user_cover_face_edit {
	width: 6.67vw;
	height: 6.67vw;
	}
	.user_cover_face_edit a {
	font-size: 3.08vw;
	line-height: 6.67vw;
	}
	
	.coach_article_body {
	padding: 4%;
	}
	.coach_faq_subject {
	padding-bottom: 3%;
	margin-bottom: 3%;
	font-size: 5.13vw;
	}
	.coach_faq_date {
	margin-bottom: 3%;
	}
	.coach_faq_contents {
	font-size: 4.10vw;
	}

	.coach_faq_answer {
	padding: 3%;
	margin-top: 5%;
	}
	.coach_faq_answer_head {
	margin-bottom: 3%;
	}
	.coach_faq_answer_thm {
	width: 10.26vw;
	margin-right: 3%;
	}
	.coach_faq_answer_name {
	font-size: 4.62vw;
	}
	.coach_faq_answer_date {
	margin-bottom: 3%;
	}

}

/* ------------------------------------
	コーチング詳細（汎用パーツ）_ここまで
------------------------------------*/

/* ------------------------------------
	レビュー一覧_ここから
------------------------------------*/
.review_list {
	/*border-top: 1px solid #C2C2C2;*/
}
.review_item {
	border-bottom: 1px solid #C2C2C2;
	padding: 15px 0;
}
.review_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}
.review_rate {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.review_rate_star {
	font-size: 30px;
	color: #C2C2C2;
}
.review_rate_star.on {
	color: #EA7E30;
}
.review_date {
	margin-left: auto;
}
.review_body {
	margin-bottom: 30px;
}
.review_user {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.review_user_thm {
	width: 30px;
	margin-right: 10px;
}

/* レビュー投稿用 */
.review_rate_form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.review_rate_form input[type=radio] {
	display: none;
}
.review_rate_form label {
	position: relative;
	color: #C2C2C2;
	cursor: pointer;
	font-size: 30px;
}
.review_rate_form label:hover {
	color: #EA7E30;
}
.review_rate_form label:hover ~ label {
	color: #EA7E30;
}
.review_rate_form input[type=radio]:checked ~ label {
	color: #EA7E30
}

@media only screen and (max-width: 640px) {
	.review_item {
	padding: 3% 0;
	}
	.review_head {
	margin-bottom: 3%;
	}
	.review_rate_star {
	font-size: 5.13vw;
	}
	.review_body {
	margin-bottom: 3%;
	}
	.review_user_thm {
	width: 7.69vw;
	margin-right: 3%;
	}
	
	/* レビュー投稿用 */
	.review_rate_form label {
	font-size: 5.13vw;
	}

}

/* ------------------------------------
	レビュー一覧_ここまで
------------------------------------*/

/* ------------------------------------
	メニュー一覧_ここから
------------------------------------*/
.menu_list { }
.menu_item {
	border-bottom: 1px solid #C2C2C2;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.menu_item a {
	display: block;
	color: inherit;
	text-decoration: none;
	padding-right: 40px;
	position: relative;
}
.menu_item a:before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 24px;
	color: #438D46;
}
.menu_head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 10px;
}
.menu_user {
	width: 50px;
	margin-right: 15px;
}
.menu_user_name {
	font-size: 20px;
}
.menu_genre {
	background: #C2C2C2;
	border-radius: 3px;
	padding: 3px 10px;
	font-size: 12px;
	color: #FFF;
	margin-left: auto;
}
/* オレンジ背景 */
.menu_genre.type_01 {
	background: #EA7E30;
}
/* その他必要に応じて色指定 */
/*
.menu_genre.type_02 {
	background: #FEB118;
}
*/

.menu_date {
	margin-left: 10px;
}
.menu_body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.menu_thm {
	width: 180px;
	margin-right: 15px;
}
.menu_thm img {
	border-radius: 10px;
}
.menu_article {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.menu_title {
	font-size: 24px;
}
.menu_info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 20px;
	font-size: 18px;
}
.menu_time { }
.menu_place {
	margin-left: 10px;
}
.menu_price {
	margin-left: auto;
}

@media only screen and (max-width: 640px) {
	.menu_item {
	margin-bottom: 3%;
	padding-bottom: 3%;
	}
	.menu_item a {
	padding-right: 4%;
	}
	.menu_item a:before {
	right: 0;
	font-size: 5.13vw;
	}
	.menu_head {
	margin-bottom: 2%;
	}
	.menu_user {
	width: 6.41vw;
	margin-right: 3%;
	}
	.menu_user_name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 3.59vw;
	}
	.menu_genre {
	padding: 1px 3px;
	font-size: 3.08vw;
	white-space: nowrap;
	}

	.menu_date {
	margin-left: 3%;
	white-space: nowrap;
	}
	.menu_thm {
	width: 23.08vw;
	margin-right: 3%;
	}
	.menu_title {
	font-size: 4.62vw;
	}
	.menu_info {
	margin-top: 2%;
	font-size: 3.08vw;
	}
	.menu_place {
	margin-left: 5%;
	}
	
}

/* ------------------------------------
	メニュー一覧_ここまで
------------------------------------*/

/* ------------------------------------
	フォーム系_ここから
------------------------------------*/
.form_area { }
.form_list {
	margin-bottom: 30px;
}
.form_item {
	font-size: 16px;
}
.form_item.subject {
	border-left: 5px solid #438D46;
	padding-left: 10px;
	margin-bottom: 10px;
	font-size: 20px;
}
.form_item.body { }

/* キーワード検索 */
.search_keyword {
	border: 1px solid #C2C2C2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.search_keyword_text {
	border: none;
	padding: 15px 10px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.search_keyword_button {
	background: #438D46;
	border: none;
	border-radius: 0;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f002";
	color: #FFF;
	width: 60px;
	font-size: 24px;
}

/* 2カラム入力項目 */
.form_list.form_column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.form_list.form_column .form_column_item {
	margin-right: 20px;
	width: calc( ( 100% - 20px ) / 2 );
}
.form_list.form_column .form_column_item:nth-child(2n) {
	margin-right: 0;
}
select span {
	display: none;
}

/* 確認ページ */
.form_list_confirm {
	border-bottom: 1px solid #C2C2C2;
}
.form_list_confirm .form_item.body {
	padding: 0 0 20px 15px;
}

@media only screen and (max-width: 640px) {
	.form_list {
	margin-bottom: 5%;
	}
	.form_item {
	font-size: 16px;
	}
	.form_item.subject {
	padding-left: 1.28vw;
	margin-bottom: 2.56vw;
	font-size: 3.59vw;
	}
	
	/* キーワード検索 */
	.search_keyword_button {
	width: 15.38vw;
	font-size: 6.15vw;
	}

	/* 2カラム入力項目 */
	.form_list.form_column .form_column_item {
	margin-right: 3%;
	width: calc( ( 100% - 3% ) / 2 );
	}
	
	/* 確認ページ */
	.form_list_confirm .form_item.body {
	padding: 0 0 3% 3%;
	}
	
}

/* ------------------------------------
	フォーム系_ここまで
------------------------------------*/

/* ------------------------------------
	支払い系_ここから
------------------------------------*/
.section_bill { }
.bill_nav {
	background: #438D46;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 20px;
}
.bill_nav a {
	display: block;
	padding: 20px 100px;
	font-size: 20px;
	color: #FFF;
	text-decoration: none;
}
.billnav_prev a::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f053";
	margin-right: 10px;
}
.billnav_next a::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	margin-left: 10px;
}
.bill_head {
	border-bottom: 3px solid #EA7E30;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.bill_head_title {
	font-size: 24px;
}
.bill_head_amount {
	margin-left: auto;
	font-size: 60px;
}

.price_card { }
.price_card_item {
	border: 1px solid #C2C2C2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 10px;
	margin-bottom: 20px;
	font-size: 20px;
}
.price_card_title { }
.price_card_value {
	white-space: nowrap;
}

@media only screen and (max-width: 640px) {
	.bill_nav {
	margin-bottom: 3%;
	}
	.bill_nav a {
	padding: 2vw 6vw;
	font-size: 4.10vw;
	}
	.bill_head_title {
	font-size: 4.62vw;
	}
	.bill_head_amount {
	font-size: 7.69vw;
	}

	.price_card { }
	.price_card_item {
	padding: 5% 3%;
	margin-bottom: 3%;
	font-size: 3.59vw;
	}

}

/* ------------------------------------
	支払い系_ここまで
------------------------------------*/

/* ------------------------------------
	チャット系_ここから
------------------------------------*/
.chat_panel {
	background: #323232;
	padding: 30px;
	max-height: 500px;
    overflow-y: scroll;
}
.chat_list { }
.chat_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
}
.comment_thm {
	width: 60px;
	margin-right: 15px;
}
.comment_article {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	color: #FFF;
}
.comment_name {
	margin-bottom: 10px;
	font-size: 16px;
}
.comment_time {
	margin-top: 10px;
	text-align: right;
}
.comment_body {
	display: inline-block;
}
.comment_text {
	background: #FFF;
	border-radius: 0 10px 10px 10px;
	padding: 20px;
	display: inline-block;
	font-size: 18px;
	color: #323232;
	overflow-wrap: break-word;
    width: 300px;
}

/* 自分のコメント部分 */
.chat_item.my {
	color: #FFF;
	text-align: right;
}
.chat_item.my .comment_text {
	background: #438D46;
	border-radius: 10px 0 10px 10px;
	text-align: left;
	color: #FFF;
	inline-size: 300px;
	overflow-wrap: break-word;
}

/*スペシャルコーチング*/
.reserve_detail_answer {
	background: #fff;
}

@media only screen and (max-width: 640px) {
	.chat_panel {
	padding: 5%;
	height: 65vh;
	overflow: scroll;
	}
	.chat_item {
	margin-bottom: 5%;
	}
	.comment_thm {
	width: 10.26vw;
	margin-right: 3%;
	}
	.comment_name {
	margin-bottom: 2%;
	font-size: 3.59vw;
	}
	.comment_time {
	margin-top: 2%;
	font-size: 3.08vw;
	}
	.comment_text {
	padding: 3%;
	font-size: 4.10vw;
	}

}

/* ------------------------------------
	チャット系_ここまで
------------------------------------*/

/* ------------------------------------
	230713追加_一部見せ_ここから_
------------------------------------*/
.nc {
	background: url(../img/nc/nc_pc.jpg) left top repeat-y;
	padding: 20px 0;
	text-align: center;
}

@media only screen and (max-width: 640px) {
	.nc {
	background: url(../img/nc/nc_sp.jpg) left top repeat-y;
	background-size: 100%;
	padding: 5% 0;
	}
	
}
/* ------------------------------------
	230713追加_一部見せ_ここまで
------------------------------------*

/* ------------------------------------
	240131追加_カレンダーUI_ここから_
------------------------------------*/
.reservation_calendar_head {
	display: flex;
	align-items: center;
	margin-bottom: 2%;
}
.reservation_calendar_foot {
	display: flex;
	align-items: center;
	margin: 2% 0;
}
.calendar_tool {
	display: flex;
	align-items: center;
	/*font-size: 18px;*/
}
.calendar_tool_item:not(:first-child) {
	margin-left: 20px;
}
.calendar_tool_item a button.today {
	border: 1px solid #323232;
	border-radius: 10px;
	padding: 5px 15px;
	font-size: inherit;
	color: #323232;
	white-space: nowrap;
}
.calendar_tool_item.switch {
	white-space: nowrap;
}
.calendar_tool_item a button.prev,
.calendar_tool_item a button.next {
	background: #F5F5F5;
	border-radius: 100vh;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: inherit;
	color: #323232;
}
.calendar_tool_item.subject {
	font-size: 18px;
	white-space: nowrap;
}
.calendar_note {
	margin-left: auto;
}

/* ステータス文字色 */
.calendar_note .status_1 {
	color: #ffd1d1;
}
.calendar_note .status_2 {
	color: #ffe4d1;
}
.calendar_note .status_3 {
	color: #d1fff5;
}

.reservation_calendar {
	overflow: auto;
	height: 600px;
}
.reservation_table {
	width: 1400px;
	border-collapse: collapse;
	border-spacing: 0;
	margin-right: auto;
	margin-left: auto;
	table-layout: fixed;
}
.reservation_table th {
	border: 1px solid #DEE4E6;
	padding: 10px 0;
	background: #323232;
	color: #FFF;
}
.reservation_table th.sticky_cell_1 {
	width: 60px;
}
.reservation_table td {
	border: 1px solid #DEE4E6;
	padding: 10px;
	vertical-align: top;
}
.sticky_cell {
	position: sticky;
	top: 0;
	left: 0;
}
.sticky_cell_1 {
	z-index: 2;
}
.sticky_cell_2 {
	z-index: 1;
}
.sticky_cell::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	border: 1px solid #DEE4E6;
	box-sizing: initial;
}
.reservation_table_subject {
	background: #F5F5F5;
	border-radius: 5px;
	padding: 5%;
	display: block;
	font-size: 12px;
	color: inherit;
	text-decoration: none;
}
.reservation_table_subject:not(:first-child) {
	margin-top: 5%;
}
.reservation_table_subject:hover {
	color: inherit;
}

/* ステータス背景色 */
.reservation_table_subject.status_1 {
	background: #ffd1d1;
}
.reservation_table_subject.status_2 {
	background: #ffe4d1;
}
.reservation_table_subject.status_3 {
	background: #d1fff5;
}

.heading a.reserve_list_heading_link {
	text-align: right;
	position: absolute;
	right: 0;
	bottom: 10px;
	color: #EA7E30;
}

.heading_link a.reserve_list_heading_link:before {
	display: none;
}

@media only screen and (max-width: 640px) {
	.calendar_tool {
	width: 60%;
	/*font-size: 2.82vw;*/
	}
	.calendar_tool_item:not(:first-child) {
	margin-left: 5%;
	}
	.calendar_tool_item .today {
	padding: 0.78vw 2.34vw;
	}
	.calendar_tool_item .prev,
	.calendar_tool_item .next {
	width: 9.38vw;
	height: 9.38vw;
	}
	.calendar_tool_item.subject {
	font-size: 2.82vw;
	}
	.calendar_note {
	flex: 1;
	text-align: right;
	font-size: 2.19vw;
	}
	
	.reservation_calendar {
	height: 70vh;
	}
	.reservation_table_subject {
	font-size: 2.56vw;
	}
	
}

/* ------------------------------------
	240131追加_カレンダーUI_ここまで
------------------------------------*/









/* ------------------------------------
	会社概要_ここから
------------------------------------*/
/*
.gmap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.gmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
*/

/* ------------------------------------
	会社概要_ここまで
------------------------------------*/

/* ------------------------------------
	モーダル_ここから
------------------------------------*/
.contents_modal {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 500px;
    padding: 2rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}
.contents_modal .modal_body {
    padding: 2rem 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.contents_modal_button_wrap {
    margin-top: 1rem;
    text-align: center;
}
.contents_modal_submit_button{
	background: #438D46;
	color: #fff;
	border-radius: 100px;
	padding: 10px;
}
.contents_modal_close_button{
	background: #ccc;
	border-radius: 100px;
	padding: 10px;
}
.contents_modal_submit_button,
.contents_modal_close_button{
	opacity: 0.8;
}
.contents_modal_background {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}
/* ------------------------------------
	モーダル_ここまで
------------------------------------*/





/* ▲▲▲ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▲▲▲ */
#disp_card {
	display:inline-block;
	width:40%;
	font-size:1em;
}

#form_message{
	color: #F00;
    padding: 2rem;
    text-align: center;
}

.term {
	height: 199px;
    overflow-y: scroll;
    padding: 10px;
    font-size: 0.8rem;
    margin: 10px auto;
}
#spsvInputCardInfo {
	width:10em !important;
	display: inline-block !important;
	font-size: 1rem !important;
}



/*==================================================================
	99. SP
===================================================================*/

@media only screen and (max-width: 640px) {

/*==================================================================
	1. Base setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Base styles
-------------------------------------------------------------------*/
body {
	font-size: 3.13vw;/* 20px/640px */
	min-width: 100%;
}

/* ------------------------------------------------------------------
	1-2. Structure styles
-------------------------------------------------------------------*/
.container {
	margin-bottom: 50px;
/** ナビゲーション上付けの場合はpadding-topを追加 **/
	padding-top:100px;
}
.main {
	padding: 0 0 5% 0;
}
.wrapper {
	width: 92%;
}
.main .wrapper {
	width: 92%;
}
.scroll-prevent {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: auto;
}

	/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Header styles
-------------------------------------------------------------------*/
header {
padding: 0;
width: 100%;
position: fixed;
/** ナビゲーション下付けの場合はbottomを有効に **/
/* bottom: 0;*/
left: 0;
z-index: 999;
}
header .wrapper {
width: 100%;
display: block;
/** ナビゲーション下付の場合はpadding-topを取る **/
padding-top:50px; 

}
.logo {
display: none;
}
.header_nav {
height: 50px;
margin-left: 0;
}
/*コーチングコメントアウト*/
.header_nav_item {
/*width: 20%;*/
width: 25%;
padding: 5px 0;
}
.header_nav_icon img {
height: 25px;
vertical-align: middle;
}

.sp_header {
	display:block;
	background-color:#323232;
}
.sp_header .logo {
	display:block;
	padding:5px 0;
	text-align: center;
}
.sp_header .logo img {
	height:30px;
}


/* ------------------------------------------------------------------
	2-3. Main styles
-------------------------------------------------------------------*/
.section {
	margin-bottom: 5%;
}
.inner {
	padding: 0 3%;
}

/* 見出しの無いページの丈夫余白 */
.section_no_heading {
	padding-top: 5%;
}

/* ログインページなどで使用 */
.section_space_wide {
	padding: 10% 0;
}
	

/* ------------------------------------------------------------------
	2-5. Footer styles
-------------------------------------------------------------------*/
.footer,
.copyright {
display: none;
}





}




