@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

input,
select,
textarea{

	font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
	color:#2C2A25;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-feature-settings: 'palt';
	touch-action: manipulation;
	resize: none;
	display: block;
}

button{
	border: none;
	background: none;
	border-radius: 0;
	cursor: pointer;
}

body{
	color: #2C2A25;
	font-size: 16px;
	font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	position: relative;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}



body::before{
	content:'';
	width:100%;
	height:100%;
	position: fixed;
	top:0;
	left:0;
	z-index: -10;
	background-color: #1FA7B5;
}

.nunito{
	font-family: "Nunito Sans", sans-serif;
}

.anton{
	font-family: "Anton", sans-serif;
}

.hide{
	display: none!important;
}

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: hidden;
}


a{
	color: #2C2A25;
	transition-duration: 0.4s;
	transition-property: opacity;
}

@media (any-hover:hover){
	a:hover{
		opacity: 0.7;
	}
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
a[href^="tel:"] {
	pointer-events: none;
}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.common_hover_opa{
	transition: 0.4s;
	transition-property: opacity;
}


@media (any-hover:hover){
	.common_hover_opa:hover{
		opacity: 0.7;
	}
	.no_hover_opa:hover{
		opacity:1;
	}
}


.anime_fadein_static {
	opacity: 0;
	transform: translateY(0);
	animation-duration: 0.8s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	
}

.anime_fadein{
	opacity: 0;
	transform: translateY(0);
	animation-duration: 0.8s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	transform: translateY(60px);
}

.anime_fadein.anime_active ,
.anime_active .anime_fadein,
.anime_fadein_static.anime_active ,
.anime_active .anime_fadein_static{
	animation-name:anime_fadein;
}



@keyframes anime_fadein {
	0% {
	opacity:0;
	}
	100% {
	opacity:1;
	transform: translateY(0);
	}
}


.common_hover_scale_frame{
	overflow: hidden;
}

.common_hover_scale_item{
	width:100%;
	height:100%;
	object-fit: cover;
	transition-duration: 0.4s;
}

@media(any-hover:hover){
	.common_hover_scale_trigger:hover .common_hover_scale_item,
	.common_hover_scale_trigger:hover.common_hover_scale_item{
		transform: scale(1.1);
	}
}


/*
------------------------------------
共通パーツ
------------------------------------
*/
.container_1200{
	max-width: 1240px;
	margin:0 auto;
	padding:0 20px;
}
.container_1260{
	max-width: 1300px;
	margin:0 auto;
	padding:0 20px;
}
.container_1120{
	max-width: 1160px;
	margin:0 auto;
	padding:0 20px;
}

.container_1080{
	max-width: 1120px;
	margin:0 auto;
	padding:0 20px;
}

.container_960{
	max-width: 1000px;
	margin:0 auto;
	padding:0 20px;
}

.container_740{
	max-width: 780px;
	margin:0 auto;
	padding:0 20px;
}


.common_more_button{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width:265px;
	max-width: 100%;
	min-height:48px;
	border:1px solid #20A6B5;
	background-color: #20A6B5;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 500;
	font-size: 17px;
	line-height: 1;
	color: #fff;
	padding:4px 24px;
}

.common_more_button::after{
	content:'';
	width:26px;
	height:13px;
	background-image: url('../img/common/icon_arrow_right_white.svg');
	background-position: right;
	flex-shrink: 0;
	margin-left: 8px;
}


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

header{
	position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index: 50;
	padding-top: 10px;
}

header .header_inner{
	margin: 0 auto;
	width:calc(100% - 40px);
	max-width: 1400px;
	border-radius: 100px;
	padding:12px 10px 12px 24px;
	transition-duration: 0.4s;
	transition-property: background-color;
}

header .header_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header_logo{
	position: relative;
	display: block;
	width:283px;
	aspect-ratio: 1 / 0.1;
}

header .header_logo img{
	position: absolute;
	left:0;
	top:0;
	transition-duration: 0.4s;
}

header .header_logo_gray{
	opacity: 0;
}

header .header_right{
	margin-left: 32px;
}

header .header_nav{
	display: flex;
	align-items: center;
}

header .header_parent_menu{
	display: flex;
	align-items: center;
}

header .header_parent_item{
	
}

header .header_parent_item + .header_parent_item{
	margin-left: 64px;
}

header .header_parent_link{
	font-weight: 500;
	font-size: 17px;
	line-height: 1;
}

header .header_parent_link span{
	transition-duration: 0.4s;
	transition-duration: color;
	color: #fff;
}

header .header_entry{
	width: 160px;
	height: 46px;
	border-radius: 40px;
	background: #d64535;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	color: #fff;
	margin-left: 64px;
}

/*スクロール時*/
header.white .header_logo_white{
	opacity: 0;
}
header.white .header_logo_gray{
	opacity: 1;
}

header.white .header_inner{
	background-color: #fff;
}

header.white .header_parent_link span{
	color:#2C2A25;
}


/*
------------------------------------
ページ下部のエントリーセクション
------------------------------------
*/
.common_entry_section{
	background-color: #1FA7B5;
	padding-top: 160px;
	padding-bottom: 170px;
}


.common_entry_section .sec_title{
	display: flex;
	justify-content: center;
}

.common_entry_section .sec_title img{
	width:520px;
	max-width: 100%;
}

.common_entry_section .entry_text{
	margin-top: 40px;
	font-weight: 500;
	font-size: 17px;
	line-height: 2.1;
	text-align: center;
	color: #fff;

}

.common_entry_section .entry_button{
	margin:48px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 326px;
	min-height: 65px;
	background: #D64535;
	padding:8px 12px;
	font-weight: 700;
	font-size: 24px;
	line-height:1;
	color: #fff;


}


/*
------------------------------------
フッター
------------------------------------
*/

footer{
	padding-top: 180px;
	padding-bottom: 32px;
	background-color: #F4F4F4;
}


footer .footer_inner{
	max-width: 1440px;
	margin:0 auto;
	padding:0 20px;
}

footer .footer_flex{
	display: flex;
	align-items: flex-start;
	width: fit-content;
	margin:0 auto;
	gap:0 60px;
}

footer .footer_left{
	
}

footer .footer_right{
	
}

footer .footer_logo{
	display: block;
	width:404px;
}

footer .footer_address_block{
	margin-top: 64px;
}

footer .footer_address_head{
	font-weight: 500;
	font-size: 17px;
	line-height: 1.3;
}

footer .footer_address_text{
	margin-top: 10px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}

footer .company_button{
	margin-top: 24px;
	background-color: transparent;
	color:#1FA7B5;
}

footer .company_button::after{
	background-image: url('../img/common/icon_arrow_right_green.svg');
}

footer .company_button + .company_button{
	margin-top: 12px;
}

footer .sns_list{
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap:0 24px;
}

footer .sns_list a{
	display: block;
	width:60px;
	border-radius: 50%;
}

footer .footer_nav{
	margin-top: 40px;
}


footer .footer_parent_menu{
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

footer .footer_parent_menu{
	display: flex;
	align-items: flex-start;
}

footer .footer_parent_item{
	min-width: 145px;
	padding-right: 10px;
}

footer .footer_parent_link{
	width: fit-content;
	display: block;
}

footer .footer_parent_en{
	font-weight: bold;
	font-size: 20px;
	line-height: 1.3;
	color: #1fa7b5;
}

footer .footer_parent_ja{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.5;
	color: #999;
}

footer .footer_child_menu{
	margin-top: 16px;
}

footer .footer_child_item + .footer_child_item{
	margin-top: 16px;
}

footer .footer_child_link{
	font-size: 14px;
	font-weight: 500;
}

footer .footer_copy{
	margin-top: 120px;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
}


/*
------------------------------------
トップページ
------------------------------------
*/
body.top_body{
	
}

main.top_main{

}

.top_section{

}

.top_section .sec_title_set{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: #1fa7b5;
}


.top_section .sec_title_set .en_title{
	font-family: "Anton", sans-serif;
	font-size: 64px;
	line-height: 1;	
	font-weight: 400;
}

.top_section .sec_title_set .ja_title{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	margin-top: 6px;
}


.top_fv_section{
	aspect-ratio: 1 / 0.6;
}

.top_fv_inner{
	height:100%;
	position: relative;
}

.top_fv_section .fv_item{
	position: absolute;
}

.top_fv_section .fv_item img{
	width:auto;
	height:100%;
}

.top_fv_section .fv_chara{
	bottom:0;
	left: 50%;
	transform: translateX(-50%);
	height:calc(900 / 1000 * 100%);
	z-index: -3;
	margin-left: -30px;
}

.top_fv_section .js_fv_chara{
	transform: scale(1.5);
	opacity: 0;
	animation-duration: 0.3s;
	animation-name:fv_chara ;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
}

.top_fv_section .js_fv_chara.show{

}

@keyframes fv_chara {
	0%{
	}
	100%{
	transform: scale(1);
	opacity: 1;
	}
}


.top_fv_section .fv_text{
	z-index: -1;
	bottom:calc(164 / 1000 * 100%);
	height:calc(670 / 1000 * 100%);
	position: absolute;
	left: calc(50% + 130px);
}

.top_fv_section .js_fv_text{
	/* transform: translateX(200px);
	opacity: 0; */

}

.top_fv_section .js_fv_text.show{
	animation-duration: 0.3s;
	animation-name:fv_text ;
	animation-fill-mode: forwards;
}

@keyframes fv_text {
	0%{

	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}



.top_fv_section .fv_bg_back{
	z-index: -4;
	top:100px;
	width: calc(1550 / 1440 * 100vw);
	min-width:1550px;
	left: -90px;
	left: min(-90px , calc(-90 / 1440 * 100vw));
}

.top_fv_section .fv_bg_back img{
	width: 100%;
	height:auto;
}

.top_fv_section .js_fv_bg_back{
	transform: translateX(-200px);
	opacity: 0;
	animation-duration: 0.3s;
	animation-name:fv_bg_back ;
	animation-fill-mode: forwards;
	animation-delay: 1.0s;
}

@keyframes fv_bg_back {
	0%{

	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}



.top_fv_section .fv_bg_front{
	z-index: -2;
	top:80px;
	width: 100%;
	min-width:1440px;
	left: 0;
}

.top_fv_section .fv_bg_front img{
	width: 100%;
	height:auto;
}

.top_fv_section .js_fv_bg_front{
	transform: translateX(-200px);
	opacity: 0;
	animation-duration: 0.3s;
	animation-name:fv_bg_front ;
	animation-fill-mode: forwards;
	animation-delay: 1.0s;
}


@keyframes fv_bg_front {
	0%{

	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}


.top_message_section{
	padding-top: 500px;
} 

.top_message_section .sec_title{
	display: flex;
	align-items: center;

}

.top_message_section .sec_title::before{
	content:'';
	width:94px;
	height:84px;
	background-image: url('../img/common/sec_title_deco.svg');
	flex-shrink: 0;
	margin-right: 16px;
}

.top_message_section .sec_title span{
	font-size: 34px;
	line-height: 1;
	color: #fff;
	position: relative;
}

.top_message_section .sec_title span::after{
	content:'';
	width:100%;
	height:1px;
	background-color: #fff;
	position: absolute;
	top:calc(100% + 6px);
	left:0;
}

.top_message_section .sub_title{
	margin-top: 36px;
	width:570px;
}

.top_message_section .message_text_area{
	display: flex;
	justify-content: flex-end;
	margin-top: -40px;
	position: relative;
	z-index: 4;
}

.top_message_section .message_img_list{
	max-width: 1440px;
	margin:100px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.top_message_section .message_img_item:nth-child(1){
	transform: translateY(160px);
}

.top_message_section .message_img_item:nth-child(2) img{
	animation-delay: 0.1s;
}

.top_message_section .message_img_item:nth-child(3){
	transform: translateY(-160px);
}
.top_message_section .message_img_item:nth-child(3) img{
	animation-delay: 0.2s;
}

.top_message_section .message_img_item:nth-child(4){
	transform: translateY(-320px);
}
.top_message_section .message_img_item:nth-child(4) img{
	animation-delay: 0.3s;
}

.top_message_section .message_img_item{
	width:23.8%;
}


.top_message_section .message_text{
	width:500px;
	font-weight: 500;
	font-size: 20px;
	line-height: 2.1;
	color: #fff;
}

.top_news_section{
	padding-top: 160px;
}

.top_news_section .sec_title_set{
	color:#fff;
}

.top_news_section .news_flex{
	max-width: 880px;
	margin:0 auto;
	position: relative;
	display: flex;
	align-items: flex-start;
}

.top_news_section .news_left{
	flex-shrink: 0;
	width:270px;
	padding-right: 10px;
}

.top_news_section .news_right{
	width: 100%;
	
}

.top_news_section .news_button{
	position: absolute;
	top:130px;
	left:0;
	border:1px solid #fff;
	width:200px;
}

.top_news_section .news_line{
	border-bottom:1px solid #fff;
}

.top_news_section .news_line:first-child{
	border-top:1px solid #fff;
}

.top_news_section .news_block{
	padding:24px 0;
	color:#fff;
	display: block;
}

.top_news_section .news_date{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
}

.top_news_section .news_title{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
}

.top_news_section a.news_block .news_title{
	text-decoration: underline;
}

.top_member_section{
	margin-top: 140px;
	position: relative;
	padding-top: 180px;
	padding-bottom: 180px;
}

.top_member_section::before{
	content:'';
	width:100%;
	height:100%;
	background-color: #fff;
	z-index: -3;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 100px 100px 0 0;
}

.top_member_section .flex{
	display: flex;
	align-items: flex-start;
}

.top_member_section .flex .left{
	flex-shrink: 0;
	width:340px;
}

.top_member_section .flex .right{
	/* width:500px; */
}

.top_member_section .member_text{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
} 

.top_member_section .member_button{
	margin-top: 40px;
}

.top_member_section .member_slide_area{
	margin-top: 72px;
}

.top_member_section .member_slide_area .swiper-wrapper{
	transition-timing-function: linear;
}


.top_member_section .member_slide{
	width:345px;
	padding-inline:15px;
}
/* 
.top_member_section .member_slide.even{
	padding-top: 70px;
} */
.top_member_section .member_slide:nth-child(even){
	padding-top: 70px;
}

.top_member_section .member_card{
	display: block;
	position: relative;
	aspect-ratio: 1 / 1.22;
}

.top_member_section .member_card img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.top_facility_section{
	padding-top: 140px;
	padding-bottom: 100px;
	background-color: #F4F4F4;
}

.top_facility_section .flex{
	display: flex;
	align-items: flex-start;
}

.top_facility_section .flex .left{
	flex-shrink: 0;
	width:340px;
}

.top_facility_section .flex .right{
	width:500px;
}

.top_facility_section .facility_text{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}

.top_facility_section .facility_list{
	margin-top: 90px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.top_facility_section .facility_item{
	width:32.6%;
}

.top_facility_section .facility_card{
	display: block;
	aspect-ratio: 1/0.7;
	position: relative;
}

.top_facility_section .facility_card img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.top_facility_section .facility_card p{
	position: absolute;
	z-index: 2;
	bottom:12px;
	left:10px;
	max-height: calc(100% - 20px);
	min-height: 36px;
	background: #42bbc2;
	padding:6px 13px;
	font-weight: bold;
	font-size: 17px;
	line-height: 1.3;
	color: #fff;
}

.top_facility_section .facility_button{
	margin:96px auto 0;
}

.top_works_section{
	padding-top: 130px;
	padding-bottom: 180px;
	background-color: #fff;
}

.top_works_section .flex{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.top_works_section .flex .left{
	width: 100%;
}
.top_works_section .works_text{
	max-width: 400px;
	margin-top: 40px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}

.top_works_section .works_button{
	margin-top: 30px;
}

.top_works_section .flex .right{
	width:440px;

	flex-shrink: 0;
	margin-left: 20px;
}

.top_works_section .work_img_list{
	display: flex;
	align-items: flex-start;
	gap:0 min(calc(24 / 1440 * 100vw) , calc(24 / 1440 * 1440px));
} 

.top_works_section .work_img{
	width:min(calc(330 / 1440 * 100vw) , calc(330 / 1440 * 1440px));
	aspect-ratio: 1 / 1.15;
	flex-shrink: 0;
}

.top_works_section .work_img img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.top_about_section{
	background-color: #F4F4F4;
} 

.top_about_section .flex{
	display: flex;
	max-width: 1920px;
	margin:0 auto;
}
.top_about_section .left{
	/* width: 48%; */
	width:min(calc(690 / 1440 * 100vw) , calc(690 / 1440 * 1920px));
	min-width: 690px;
	flex-shrink: 0;
}

.top_about_section .right{
	width:100%;
	display: flex;
	align-items: center;
	padding:32px 0 32px 6.5%;
}


.top_about_section .left img{
	/* height:590px; */
	min-height: 100%;
	object-fit: cover;
}

.top_about_section .about_list{
	margin-top: 64px;
}
.top_about_section .about_item + .about_item{
	margin-top: 16px;
}

.top_about_section .about_button{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 356px;
	max-width: 100%;
	min-height: 80px;
	background-color: #20a6b5;
	padding:8px 24px;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.3;
	color: #fff;
}

.top_about_section .about_button::after{
	content:'';
	width:26px;
	height:13px;
	background-image: url('../img/common/icon_arrow_right_white.svg');
	background-position: right;
}

/*
------------------------------------
下層Fv
------------------------------------
*/

.page_fv_section{
	position: relative;
	height:375px;
}

.page_fv_section .page_fv_bg{
	position: absolute;
	z-index: -5;
	top:90px;
	/* width:1280px;
	left:-80px; */
	width:max(calc(1280 / 1440 * 100vw) , calc(1280 / 1440 * 1440px));
	left:min(calc(-80 / 1440 * 100vw) , calc(-80 / 1440 * 1440px));
}


.page_fv_section .page_fv_inner{
	width: 1120px;
	max-width: 100%;
	position: absolute;
	bottom:-16px;
	left: 50%;
	transform: translateX(-50%);
	padding:0 20px;
	z-index: -3;
	
}

.page_fv_section .page_title_set{
	color: #f4f4f4;
	text-align: left;
}
.page_fv_section .page_title_set .ja_title{
	font-weight: 500;
	font-size: 17px;
	line-height: 1.3;	
}

.page_fv_section .page_title_set .en_title{
	/* height:160px; */
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 161px;
	line-height:1;
}

/*
------------------------------------
NEWS
------------------------------------
*/

body.news_body{
	
}

main.news_main{

}

.news_section{

}

.news_list_section{
	padding-top: 160px;
	padding-bottom: 180px;
	background-color: #fff;
}

.news_list_section .news_frame{
	max-width: 650px;
	margin:0 auto;
}

.news_list_section .news_line{
	border-bottom:1px solid #C6CBCE;
}

.news_list_section .news_line:first-child{
	border-top:1px solid #C6CBCE;
}

.news_list_section .news_block{
	padding:28px 0;
	color:#2C2A25;
	display: block;
}

.news_list_section .news_date{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
}

.news_list_section .news_title{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	margin-top: 10px;
}

.news_list_section a.news_block .news_title{
	text-decoration: underline;
}

.news_list_section .page_nation{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:16px 30px;
	letter-spacing: 0.05em;
	color: #5d5955;
	margin-top: 100px;
}	



.news_list_section .page_nation a.page-numbers{/*指定のページ移動ボタン*/
	
	border-bottom: 1px solid; 
	border-color: transparent;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.2;
	color: #5d5955;
	padding:0 3px 3px;
}

.news_list_section .page_nation span.current{/*現在のページボタン*/
	font-weight: 500;
	font-size: 17px;
	line-height: 1.2;
	text-align: center;
	padding:0 3px 3px;
	transition-duration: 0.4s;
	border-bottom: 1px solid #20A6B5; 
	font-weight: bold;
	color:#20A6B5;
}

@media(any-hover:hover){
	.news_list_section .page_nation a.page-numbers:hover{
		border-color: #707070;
	}
}


.news_list_section .page_nation a.page-numbers.next,
.news_list_section .page_nation a.page-numbers.prev{
	border-color: transparent!important;
	display: flex;
	justify-content: center;
	align-items: center;
}


.news_list_section .page_nation a.page-numbers.next::after,
.news_list_section .page_nation a.page-numbers.prev::after{
	content:'';
	width:6px;
	height:10px;
	
}

.news_list_section .page_nation a.page-numbers.next::after{
	background-image: url('../img/common/icon_next_gray.svg');
}
.news_list_section .page_nation a.page-numbers.prev::after{
	background-image: url('../img/common/icon_prev_gray.svg');
}

/*
------------------------------------
施設紹介
------------------------------------
*/

body.facility_body{
	
}

main.facility_main{

}

.facility_section{
	padding-top: 180px;
	padding-bottom: 250px;
	background-color: #fff;
}

.facility_section .facility_area + .facility_area{
	margin-top: 346px;
}

.facility_section .facility_block{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	min-height: 465px;
}

.facility_section .facility_block_inner{
	width:450px;
	max-width: 100%;
}

.facility_section .facility_text_block{
	width: 450px;
}

.facility_section .facility_sub_head{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	color: #1fa7b5;
}

.facility_section .facility_head{
	font-weight: 500;
	font-size: 32px;
	line-height: 1.3;
	margin-top: 8px;
}

.facility_section .facility_sub_head + .facility_head{
	
}

.facility_section .facility_text{
	margin-top: 24px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}

.facility_section .facility_img_block{
	position: absolute;
	width:865px;
	z-index: 3;
	top: 50%;
	transform: translateY(-50%);
	right:485px;
}

.facility_section .facility_info_block{
	position: relative;
	margin-top: 40px;

	/* padding:36px 40px 40px 80px;
	display: flex;
	justify-content: center;
	align-items: center; */
}

.facility_section .facility_info_block::after{
	content:'';
	width:100%;
	height:100%;
	z-index: 0;
	position: absolute;
	top:0;
	left:0;
}

.facility_section .facility_info_contents{
	position: relative;
	z-index: 2;
}


.facility_section .facility_address01{
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.3;
}

.facility_section .facility_address01::before{
	content:'';
	width:15px;
	height:21px;
	background-image: url('../img/common/icon_map_blue.svg');
	margin-right: 10px;
}

.facility_section .facility_address02{
	margin-top: 4px;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.5;
}

.facility_section .facility_info{
	margin-top: 32px;
	font-weight: 500;
	font-size: 14px;
	line-height:1.75;
}

/*
------------------------------------
チーム概要
------------------------------------
*/

body.about_body{
	
}

main.about_main{

}

.about_section{

}

.about_section .sec_title_set{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color:#1FA7B5;
}

.about_section .sec_title_set .ja_title{
	font-weight: 500;
	font-size: 17px;
	line-height: 1.2;
}

.about_section .sec_title_set .en_title{
	font-family: "Anton", sans-serif;
	font-weight: normal;
	font-size: 101px;
	line-height: 1.1;
	margin-top: 8px;
}


.about_pride_section{
	background-color: #fff;
}
.about_pride_section .about_pride_frame{
	max-width: 1920px;
	margin:0 auto;
	position: relative;
	min-height: 810px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url('../img/about/about_pride.jpg');
}

.about_pride_section .about_pride_frame::after{
	content:'';
	width:100%;
	height:100%;
	background-image: url('../img/about/about_pride_bg.png');
	background-size: cover;
	position: absolute;
	top:0;
	left:0;

	
}

.about_pride_section .about_pride_contents{
	position: relative;
	z-index: 3;
	padding-top: 140px;
	padding-bottom: 140px;
	width: 100%;
	color: #fff;
}

.about_pride_section .about_pride_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;

}

.about_pride_section .about_pride_left{
	flex-shrink: 0;
	margin-right: 20px;
}

.about_pride_section .sec_head{
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 101px;
	line-height: 1.1;
}
.about_pride_section .about_pride_right{
	width:430px;
	margin-right: 60px;
	padding-top: 240px;
}

.about_pride_section .about_pride_text{
	font-size: 17px;
	line-height: 1.5;
	
}

.about_team_section{
	padding-top: 150px;
	padding-bottom: 150px;
	background-color: #fff;
} 

.about_team_section .team_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.about_team_section .team_left{
	flex-shrink: 0;
	margin-right: 40px;
}

.about_team_section .team_right{
	width:100%;
	max-width: 600px;
}

.about_team_section table{
	width:100%;
	border-collapse: collapse;
}

.about_team_section table tr{
	border-bottom:1px solid #C6CBCE;
	
}

.about_team_section table th{
	width:210px;
	padding-right: 16px;
	font-weight: bold;
	font-size: 17px;
	line-height: 1.3;
	text-align: left;
	padding:24px 0;
}

.about_team_section table td{
	width:calc(100% - 210px);
	font-weight: 500;
	font-size: 21px;
	line-height: 1.3;
	padding:24px 0;
}

.about_coach_section{
	padding-top: 120px;
	padding-bottom: 140px;
	background-color: #F4F4F4;
}

.about_coach_section .sec_title_set{
	position: relative;
	z-index: 3;
}

.about_coach_section .coach_flex{
	display: flex;
	margin-top: -24px;
	padding-left: 20px;
}

.about_coach_section .coach_left{
	width: 405px;
	flex-shrink: 0;
	margin-right: 124px;
}

.about_coach_section .coach_right{
	width:100%;
	position: relative;
	display: flex;
	align-items: center;
	padding:40px 56px;
}

.about_coach_section .coach_right::before{
	content:'';
	width:830px;
	height:100%;
	background-color: #fff;
	position: absolute;
	top:0;
	left:0;
	border-radius: 36px;
}

.about_coach_section .coach_contents{
	position: relative;
	width: 100%;
	max-width: 440px;
	z-index: 5;
}

.about_coach_section .coach_head{
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
	color: #20a6b5;
}

.about_coach_section .coach_name{
	display: flex;
	align-items: flex-end;
	gap:0 8px;
	margin-top: 6px;
}

.about_coach_section .coach_name_ja{
	font-weight: bold;
	font-size: 24px;
	line-height: 1.3;
	color: #20a6b5;
}

.about_coach_section .coach_name_en{
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
	color: #b2b2b2;
}

.about_coach_section .coach_text{
	margin-top: 24px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.8;
}

.about_coach_section .coach_message{
	margin-top: 24px;
	border-top:1px solid #707070;
	padding-top: 16px;
}

.about_coach_section .coach_message_head{
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
	color: #b2b2b2;

}

.about_coach_section .coach_message_text{
	margin-top: 8px;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.8;
}


/*
------------------------------------
メンバー紹介
------------------------------------
*/

body.member_body{
	
}

main.member_main{

}

.member_section{

}

.member_list_section{
	padding-top: 240px;
	padding-bottom: 200px;
	background-color: #fff;
}

.member_list_section .player_area + .staff_area{
	margin-top: 140px;
}

.member_list_section .member_list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:24px 20px;
}

.member_list_section .member_card{
	position: relative;
	display: block;
	
}

.member_list_section .js_member_card{
	cursor: pointer;
}

.member_list_section .member_card .member_thumb{
	position: relative;
	aspect-ratio:1 / 1.22;
}

.member_list_section .member_card .member_thumb::after{
	content:'';
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom , rgba(255, 255, 255, 0) 52.28%, rgba(228, 227, 227, 0.12) 56.4%, rgba(87, 78, 76, 0.76) 83.07%, #231815 100%);
	opacity: 0.57;
	position: absolute;
	top:0;
	left:0;
}

.member_list_section .member_card.staff .member_thumb::after{
	content: none;
}

.member_list_section .member_card .member_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.member_list_section .member_card .member_info{
	display: flex;
	align-items: center;
	position: absolute;
	left:0;
	bottom:0;
	z-index: 4;
	width:100%;
	padding:10px 12px;
	color: #f4f4f4;
}


.member_list_section .member_card .member_number{
	flex-shrink: 0;
	margin-right: 12px;
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 48px;
	line-height: 1;
}

.member_list_section .member_card .member_name_en{
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 27px;
	line-height: 1.1;
}

.member_list_section .member_card .member_name_ja{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.3;
	

}

.member_list_section .member_card .member_name_en + .member_name_ja{
	margin-top: 0px;
}

.member_list_section .sec_title{
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 56px;
	line-height:1;
	color: #1fa7b5;
	border-bottom:1px solid #1fa7b5;
	padding-bottom: 12px;
	margin-bottom: 56px;
}

.member_list_section .member_staff_info{
	display: flex;
	align-items: flex-start;
	flex-shrink: 0;
	gap:8px 16px;
}

.member_list_section .member_job{
	flex-shrink: 0;
	font-weight: bold;
	font-size: 17px;
	line-height:1.2;
	color: #1fa7b5;
	padding-top: 6px;
}

.member_list_section .member_staff_name{
	font-weight: 500;
	font-size: 21px;
	line-height: 1.5;

}

.member_pop{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	background-color: rgba(0,0,0,0.35);
	z-index: 100;
	pointer-events: none;
	opacity: 0;
	transition-duration: 0.6s;
	transition-property: opacity;
}

.member_pop.show{
	pointer-events: auto;
	opacity: 1;
}

.member_pop .member_pop_inner{
	display: flex;
	justify-content: center;
	align-items: center;
	height:100vh;
	padding:60px 0;
}

.member_pop .member_pop_frame{
	width:830px;
	max-width: calc(100% - 140px);
	position: relative;
	background-color: #f4f4f4;
	height:100%;
	box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.25);

}

.member_pop .member_pop_close{
	display: flex;
	justify-content: center;
	align-items: center;
	width:38px;
	height:38px;
	border-radius: 50%;
	position: absolute;
	top:0;
	left:calc(100% + 20px);
	background-color: #F4F4F4;
	cursor: pointer;
}

.member_pop .member_pop_close::after{
	content:'';
	width:10px;
	height:10px;
	background-image: url('../img/common/icon_close_black.svg');
}

.member_pop .member_pop_scroll{
	height:100%;
	overflow-y: auto;
}

.member_pop .member_pop_head{
	position: relative;
	overflow: hidden;
	padding:80px 0;
	min-height: 415px;
	padding-left: 430px;
	padding-right: 50px;
	background-color: #1FA7B5;
	display: flex;
	align-items: center;
}

.member_pop .member_pop_bg{
	position: absolute;
	width:990px;
	bottom:-66px;
	left:-60px;
}

.member_pop .member_pop_img{
	width:330px;
	aspect-ratio: 1 / 1.12;
	position: absolute;
	bottom:0;
	z-index: 2;
	left:50px;
}

.member_pop .member_pop_img img{
	width:100%;
	height:100%;
	object-fit: contain;
	object-position: bottom;
}

.member_pop .member_pop_info{
	position: relative;
	z-index: 3;
	color:#F4F4F4;
}

.member_pop .member_pop_number{
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 27px;
	line-height: 1.1;
}

.member_pop .member_pop_name_en{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 72px;
	line-height: 1;
}

.member_pop .member_pop_name_ja{
	font-weight: bold;
	font-size: 21px;
	line-height: 1.3;	
}

.member_pop * + .member_pop_name_en{
	margin-top: 8px;
}

.member_pop * + .member_pop_name_ja{
	margin-top: 8px;
}

.member_pop .member_pop_body{
	padding:72px 112px 32px;
}

.member_pop .member_pop_flex{
	display: flex;
	align-items: flex-start;
}

.member_pop .member_pop_left{
	flex-shrink: 0;
	width:190px;
	padding-right: 20px;
	padding-top: 16px;
}

.member_pop .member_pop_right{
	width:100%;
}

.member_pop .member_pop_switch{
	cursor: pointer;
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 27px;
	line-height: 1.3;
	color: #808080;
	border-bottom:1px solid transparent;
	width: fit-content;
}

.member_pop .member_pop_switch.active{
	color:#1FA7B5;
	border-color: #1FA7B5;
}

.member_pop .member_pop_switch + .member_pop_switch{
	margin-top: 20px;
}


.member_pop table{
	width:100%;
	border-collapse:collapse;
}

.member_pop table th,
.member_pop table td{
	padding:12px 0;
	border-bottom: 1px solid #C6CBCE;
	vertical-align: top;
	text-align: left;
}

.member_pop table th{
	font-weight: bold;
	font-size: 14px;
	line-height: 1.5;
	width:135px;
	padding-right: 16px;	
}

.member_pop table th span{
	display: block;
	padding-top: 2px;
}

.member_pop table td{
	width:calc(100% - 135px);
	font-weight: 500;
	font-size: 17px;
	line-height: 1.5;

}

.member_pop .member_pop_close_button{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 60px;
	border-radius: 60px;
	margin:56px auto 0;
	border:1px solid #000000;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
	position: relative;
	cursor: pointer;
}

.member_pop .member_pop_close_button::before{
	content:'';
	width:10px;
	height:10px;
	background-image: url('../img/common/icon_close_black.svg');
	position: absolute;
	left:24px;
	top:0;
	bottom:0;
	margin:auto;
}


/*
------------------------------------
試合結果
------------------------------------
*/

body.game_body{
	
}

main.game_main{

}

.game_section{

}

.game_list_section{
	padding-top: 160px;
	padding-bottom: 180px;
	background-color: #F4F4F4;
}

.game_list_section .game_list{
	max-width: 752px;
	margin-inline: auto;
}

.game_list_section .game_line{
	border-bottom:1px solid #BCBCBC;
}

.game_list_section .game_block{
	padding:32px 0;
	display: flex;
	align-items: flex-start;
}

.game_list_section .game_left{
	flex-shrink: 0;
	width:195px;
	padding-right: 4px;
}

.game_list_section .game_year{
	font-family: "Anton", sans-serif;
	font-size: 14px;
	line-height: 1.2;
	color: #bcbcbc;
}

.game_list_section .game_date{
	display: flex;
	align-items: flex-end;
	font-family: "Anton", sans-serif;
}

.game_list_section .game_day{
	font-size: 30px;
	line-height:1.2;
	width:64px;
}

.game_list_section .game_week{
	font-size: 23px;
	line-height:1.2;
	width:50px;
	padding-bottom: 2px;
}

.game_list_section .game_time{
	font-size: 22px;
	line-height:1.2;
	padding-bottom: 2px;
}

.game_list_section .game_place{
	margin-top: 4px;
	position: relative;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	color: #848482;
	padding-left: 16px;
}

.game_list_section .game_place::before{
	content:'＠';
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
	position: absolute;
	left:0;
	top:0;
}

.game_list_section .game_center{
	flex-shrink: 0;
	width:240px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 30px;
	margin-right: 8px;
}

.game_list_section .game_kind{
	min-width: 155px;
	min-height: 28px;
	border-radius: 100px;
	border: 1px solid #1da6b4;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:3px 12px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #20a6b5;
}

.game_list_section .game_right{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 12px;
}

.game_list_section .game_result{
	flex-shrink: 0;
	width:110px;
	padding:0 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 17px;
	line-height: 1.3;
	min-height: 24px;
	margin-top: 18px;
}

.game_list_section .no{
	width: 13px;
	height: 2px;
	background: #2c2a26;
}
.game_list_section .win{
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 1px solid #2c2a26;
}
.game_list_section .lose{
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background:#2c2a26;
}
.game_list_section .draw{
	width:17px;
	height:15px;
	background-image: url('../img/common/icon_draw.svg');
	background-size: contain;
	background-repeat: no-repeat;
}

.game_list_section .game_score{
	display: flex;
	align-items: center;
	min-height: 50px;
	font-family: "Anton", sans-serif;
	font-size: 42px;
	line-height: 1;
	
}

.game_list_section .game_point_border{
	width: 19px;
	height: 3px;
	background: #2c2a26;
	margin:0 16px;
	
}

.game_list_section .game_my_point{
	display: flex;
	justify-content: flex-end;
	color: #20a6b5;
	min-width: 55px;
}

.game_list_section .game_opponent_name{
	margin-top: 2px;
	padding-left: 28px;
	font-weight: bold;
	font-size: 17px;
	line-height: 1.2;
	color: #2c2a25;
	position: relative;
	margin-left: 10px;
}
.game_list_section .game_opponent_name::before{
	content:'vs.';
	font-weight: bold;
	font-size: 17px;
	line-height: 1.2;
	position: absolute;
	left:0;
	top:0;
}
/*
------------------------------------
お問い合わせ/エントリー
------------------------------------
*/

body.contact_body{
	
}

main.contact_main{

}

.contact_section{
	padding-top: 260px;
	padding-bottom: 200px;
}

.contact_section .page_title{
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #f4f4f4;
}

.contact_section .page_title .en_title{
	font-family: "Anton", sans-serif;
	font-weight: 400;
	font-size: 72px;
	line-height: 1.2;
}

.contact_section .page_title .ja_title{
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
}

.contact_section .form_area{
	margin-top: 110px;
}

.contact_section .white_box{
	padding:60px 32px 44px;
	background-color: #fff;
}

.contact_section .form_line{

}

.contact_section .form_line + .form_line{
	margin-top: 36px;
}

.contact_section .input_frame{
	margin-top: 12px;
}

.contact_section .form_label{
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 15px;
	line-height: 1.3;
	white-space: nowrap;
}

.contact_section .form_label::after{
	content:'※必須';
	font-weight: bold;
	font-size: 14px;
	line-height: 1.3;
	color: #d3666e;
	margin-left: 8px;
}

.contact_section .form_label.free::after{
	content:none;
}

.contact_section .text_input,
.contact_section select{
	display: block;
	width:100%;
	height: 40px;
	background-color: #f4f5f7;
	border:none;
	padding:0 12px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.2;
}

.contact_section .text_input::placeholder{
	color: #a2a2a2;
}

.contact_section textarea{
	display: block;
	width:100%;
	height: 180px;
	background-color: #f4f5f7;
	border:none;
	padding:12px;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.5;
}

.contact_section textarea::placeholder{
	color: #a2a2a2;
}

.contact_section .check_area{
	padding-top: 16px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:12px 90px;
}

.contact_section .check_area label{
	display: flex;
	align-items: center;
	gap:0 8px;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #646464;
}

.contact_section .check_area label input{
	width:20px;
	height:20px;
}

.contact_section .check_area .error{
	width: 100%;
}

.contact_section .address_flex{
	display: flex;
	align-items: flex-start;
	gap:0 40px;
}

.contact_section .address_box{
	width:135px;
}

.contact_section .address_label_remark{
	margin-left: 8px;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.2;
	color: #525760;
}

.contact_section .privacy_area{
	margin-top: 70px;
}

.contact_section .privacy_head{
	font-weight: bold;
	font-size: 13px;
	line-height: 1.3;
	color: #fff;
}

.contact_section .privacy_box{
	height:120px;
	background-color: #fff;
	padding:10px;
	overflow-y: auto;
	margin-top: 12px;
}

.contact_section .privacy_text{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4;
}

.contact_section .privacy_agree{
	margin-top: 20px;
}

.contact_section .privacy_agree label{
	display: flex;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.04em;
	line-height: 1.3;
	color: #fff;
	gap:0 8px;
}

.contact_section .privacy_agree label input{
	width:20px;
	height:20px;
}

.contact_section .submit_area{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap:0 40px;
	margin-top: 112px;
}



.contact_section  .submit{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	width: 260px;
	height: 60px;
	background: #fff;
	border-radius: 60px;
	font-weight: 500;
	font-size: 17px;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
	color: #20a6b5;
	border:1px solid #fff;
}

/*
--------------------------------------------------
確認画面
--------------------------------------------------
*/

.contact_section .mw_wp_form_confirm .privacy_area{
	display: none;
}

.contact_section .return{
	
}

.contact_section  .return{
	
    display: block;
    cursor: pointer;
    border: none;
    background: none;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
	padding: 0 8px 8px;
    border-bottom: 1px solid #fff;
    border-bottom: 2px solid #fff;
}

/*
--------------------------------------------------
完了画面
--------------------------------------------------
*/

.contact_section .finish_text01{
	display: block;
}

.contact_section .finish_text02{
	display: block;
}
