@charset "UTF-8";
/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 135px;
	padding: var(--sp4);
	background: var(--wh);
	border-bottom: 1px solid var(--bd-color);
	transition: var(--tran);
}
header.follow{
	height: 100px;
}
header.follow.fixed{
	height: 135px;
}
.header_inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 0 var(--sp5);
}
header a{
	color: var(--font);
}
header h1,
header h1 a{
	display: flex;
	align-items: center;
}
header h1 a:hover{
	opacity: var(--opa05);
}
header h1 img{
	max-height: var(--sp2);
}
header.follow .logo,
header.follow h1,
header.follow h1 a{
	height: 100%;
}
header.follow h1 img{
	height: 100%;
	max-height: none;
}

header nav{
	display: flex;
	flex-direction: column-reverse;
	gap: var(--sp5) 0;
}
#gl_nv{
	display: flex;
	justify-content: flex-end;
	margin: 0 auto;
	gap: 0 var(--sp4);
}
#gl_nv a{
	font-size: var(--f3);
	position: relative;
}
header.follow #gl_nv a{
	font-size: 1.2rem;
}
header.follow.fixed #gl_nv a{
	font-size: var(--f3);
}
#gl_nv a:hover{
	color: var(--gr);
}
#gl_nv a::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: var(--gr);
	transition: var(--tran);
}
#gl_nv a:hover::before{
	width: 100%;
}

.head_ul{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header.follow .head_ul{
	display: none;
}
header.follow.fixed .head_ul{
	display: flex;
	animation : fixed_head_ul 0.3s forwards;
}
@keyframes fixed_head_ul{
	0%{
		opacity: 0;
		transform: translateY(-20px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
.head_ul > li:first-of-type{
	margin-right: var(--sp4);
	padding-right: var(--sp4);
	border-right: var(--bd);
}
header a.tel{
	display: flex;
	align-items: center;
	line-height: 1;
	gap: 0 8px;
	color: var(--gr);
	font-size: var(--f2);
	font-weight: bold;
}
.head_ul .arrow{
	display: flex;
	height: 100%;
}

/*-----------------------------------------------
__Main
-----------------------------------------------*/
.arrow a{
	display: inline-flex;
	gap: 0 4px;
	align-items: center;
	line-height: 1.2;
}
.arrow a:hover{
	transform: translateX(8px);
}
.arrow a::before{
	content: "";
	width: var(--sp4);
	height: var(--sp4);
	background: url(../images/icon_arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

main{
	padding: 134px 0 var(--sp1);
	display: flex;
	flex-direction: column;
	gap: var(--sp1) 0;
}
main p{
	line-height: 2 ;
}
main h2,main h3,main h4,main h5{
	line-height: 1.4;
}
main h2{
	padding-top: var(--sp5);
	font-size: var(--f1);
	margin-bottom: var(--sp3);
	letter-spacing: 0.05em;
	text-align: center;
}
main h2 span{
	position: relative;
}
main h2 span::after{
	content: "";
	position: absolute;
	pointer-events: none;
	right: -24px;
	top: -16px;
	width: 32px;
	height: 32px;
	background-image: url(../images/h2_before.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
main h3{
	font-size: var(--f2);
	margin-bottom: var(--sp3);
	letter-spacing: 0.1em;
	text-align: center;
}
main h3 span{
	position: relative;
}
main h3 span::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	mix-blend-mode: multiply;
	background-image: linear-gradient(0deg, var(--yg-pale) 0.5em, transparent 0.5em);
}
main h4{
	font-size: 1.6rem;
	font-weight: normal;
	border-left: 6px solid var(--gr);
	padding-left: 12px;
	margin-bottom: 1em;
}
ul.list > li{
	list-style-type:disc;
	margin-left:1em;
	margin-bottom: 0.5em;
}

.grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: var(--sp3);
}

/*-----------------------------------------------
__Page
-----------------------------------------------*/
/* background */
#visual{
	background: var(--yg-pale);
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(184, 204, 158, 1) 50%, rgba(173, 206, 128, 1) 100%);
}
#day{
	background-color: var(--yg-pale);
	padding: var(--sp1) 0;
}


#visual .visual_wrap .img_box{
	width: 60%;
	position: relative;
}
#visual .visual_wrap .img_box::before{
	content: "";
	position: absolute;
	pointer-events: none;
	left: 0;
	top: 0;
	width: 110%;
	height: 110%;
	background-image: url(../images/visual_before.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
}
#visual .visual_wrap .img_box figure{
	border-bottom-right-radius: var(--sp2);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
#visual .visual_wrap .txt_box{
	width: 40%;
	padding: var(--sp4);
	display: flex;
	align-items: center;
	justify-content: center;
}
#visual .txt_wrap{
	margin-top: var(--sp3);
	justify-content: space-between;
	gap: var(--sp4);
}
#visual .txt_wrap_l{
	width: 60%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: var(--sp5) 0;
}
#visual .txt_wrap_l::before{
	content: "";
	pointer-events: none;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background: -webkit-radial-gradient(#fff 30%,rgba(255,255,255,0) 70%);
	background: -moz-radial-gradient(#fff 30%,rgba(255,255,255,0) 70%);
	background: radial-gradient(#fff 30%,rgba(255,255,255,0) 70%);
}
#visual .txt_wrap_l figure,
#visual .txt_wrap_l p{
	position: relative;
	z-index: 1;
	line-height: 1.6;
}
#visual .txt_wrap_r{
	width: 40%;
	text-align: right;
}

#service{
	display: flex;
	flex-direction: column;
	gap: var(--sp1) 0;
}
#service .service_visual{
	margin: var(--sp2) auto var(--sp3);
}
#service .service_visual .img_box{
	width: 60%;
}
#service .service_visual .img_box figure{
	position: relative;
}
#service .service_visual .img_box figure::before{
	content: "";
	position: absolute;
	left: -5%;
	bottom: -6%;
	pointer-events: none;
	width: 100%;
	height: 100%;
	background: var(--yg);
}
#service .service_visual .img_box figure img{
	position: relative;
	z-index: 1;
}
#service .service_visual .txt_box{
	width: 40%;
	padding: 0 var(--sp4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#service .service_visual .txt_box small{
	color: var(--gr);
}
#service .service_visual .txt_box h3{
	margin-bottom: 0;
}

.training_wrap article{
	display: flex;
	flex-direction: column;
	gap: var(--sp4);
}
.training_wrap h5{
	color: var(--gr);
	font-size: 1.8rem;
	text-align: center;
	letter-spacing: 0.1em;
}
.training_wrap ul.list{
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--sp5) var(--sp4);
	border-radius: 8px;
	border: var(--bd);
	gap: 8px 0;
}
.training_wrap ul.list > li{
	margin-bottom: 0;
}

#service .facility_wrap{
	margin-bottom: var(--sp2);
}
.facility_wrap figure{
	display: flex;
	flex-direction: column;
	gap: 8px 0;
}
.facility_wrap figure a{
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
.facility_wrap figure a img{
	transition: var(--tran);
}
.facility_wrap figure a:hover img{
	transform: scale(1.1);
}

.pickup{
	position: relative;
	border: 2px dashed var(--bd-color);
	padding: var(--sp3);
}
.pickup::before,
.pickup::after{
	content: "";
	position: absolute;
	pointer-events: none;
	width: 15%;
	height: 120%;
}
.pickup::before{
	left: -5%;
	top: -10%;
	background-image: url(../images/pickup_before.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.pickup::after{
	right: -5%;
	bottom: -10%;
	background-image: url(../images/pickup_after.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 50% auto;
}
.pickup dl{
	justify-content: center;
	font-size: var(--f2);
}
.pickup dl dd::before{
	content: "・・・";
}

#day .day_wrap{
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
    gap: var(--sp3);
}
#day .day_wrap article{
	background-color: var(--wh);
}
.day_wrap article[data-day="1"]{
    grid-area: 1 / 1 / 3 / 2;
	position: relative;
}
.day_wrap article[data-day="1"]::after{
	content: "";
	position: absolute;
	right: -10px;
	bottom: -25px;
	pointer-events: none;
	width: 25%;
	aspect-ratio: 2 / 3;
	background-image: url(../images/schedule_before.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top center;
}
.day_wrap article[data-day="3"]{
    grid-area: 1 / 2 / 2 / 3;
}
.day_wrap article[data-day="3"]{
    grid-area: 2 / 2 / 3 / 3;
}
.day_wrap .hl{
	gap: 0 var(--sp4);
	padding: var(--sp4) ;
	color: var(--wh);
	background-color: var(--gr);
	font-size: var(--f2);
	line-height: 1.2;
	justify-content: center;
	min-height: 106px;
}
.day_wrap .hl small{
	display: block;
	font-size: 1rem;
}
.day_wrap article[data-day="2"] .hl{
	background-color: var(--yg);
}
.day_wrap article[data-day="3"] .hl{
	background-color: var(--og);
}
.day_wrap .schedule{
	padding: var(--sp3);
	display: flex;
	flex-direction: column;
	gap: var(--sp3) 0;
}
.day_wrap .schedule > div{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.day_wrap .schedule > div:not(:last-of-type)::before{
	content: "";
	position: absolute;
	left: calc( 30% + 8px );
	top: 0.7em;
	width: 4px;
	height: calc( 100% + var(--sp3) );
	background-color: var(--bd-color);
}
.day_wrap .schedule dt{
	width: 30%;
	position: relative;
}
.day_wrap .schedule dt::after{
	content: "";
	position: absolute;
	right: -20px;
	top: 0.5em;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--bd-color);
}
.day_wrap .schedule div[data-day_all="1200"]{
	align-items: center;
}
.day_wrap .schedule dd{
	width: 55%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.day_wrap .schedule .f_min{
	font-size: 1.6rem;
}

#info .fl_box{
	justify-content: space-between;
	margin-bottom: var(--sp2);
}
#info .fl_box .img_box{
	width: 40%;
}
#info .fl_box .txt_box{
	width: 55%;
}
#info .txt_box.fl_box{
	flex-direction: column;
	justify-content: center;
	gap: var(--sp4) 0;
	margin-bottom: 0;
}
#info .txt_box address{
	font-size: var(--f3);
}
#info a.tel{
	text-decoration: none;
}
#info .txt_box dl{
	padding: var(--sp4) var(--sp3);
	border: 1px dashed var(--font);
	display: flex;
	flex-direction: column;
	gap: 8px 0;
}
#info .txt_box dt{
	font-size: var(--f3);
}

.flow{
	border: 1px solid var(--dark);
	max-width: 1280px;
	margin: 0 auto;
}
.flow h3{
	padding: var(--sp4);
	color: var(--wh);
	background-color: var(--dark);
	margin-bottom: 0;
}
.flow_list{
	display: flex;
	flex-direction: column;
	gap: var(--sp4);
	padding: var(--sp4) var(--sp3);
	background-color: #FFFEF5;
}
.flow_list div{
	display: flex;
	justify-content: space-between;
	padding: var(--sp4) 0;
}
.flow_list div:not(:last-of-type){
	border-bottom: 1px solid var(--dark);
}
.flow_list dt{
	width: 30%;
	font-size: 1.6rem;
	color: var(--dark);
}
.flow_list dd{
	width: 65%;
}

/*-----------------------------------------------
__Footer
-----------------------------------------------*/
footer{
	background: var(--yg);
	color: var(--wh);
	padding-top: var(--sp2);
}
footer .fl_box{
	justify-content: space-between;
	gap: var(--sp3);
}
footer .txt_box{
	min-width: 450px;
	max-width: 55%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp4) 0;
}
footer div a.tel{
	color: var(--wh);
}
footer .contact{
	width: 100%;
}
footer .contact a.tel{
	color: var(--font);
	background-color: var(--wh);
	border-radius: 16px;
	padding:var(--sp3) var(--sp4);
	display: flex;
	flex-direction: column;
	gap: 8px 0;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}
footer .contact a.tel::after{
	content: "";
	pointer-events: none;
	position: absolute;
	right: -10px;
	bottom: -10px;
	width: 15%;
	aspect-ratio: 2 / 3;
	background-image: url(../images/schedule_before.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
footer .contact a.tel dd{
	display: flex;
	gap: 0 5px;
	align-items: center;
	line-height: 1;
	color: var(--font);
	font-size: var(--f2);
}
footer #copy{
	opacity: var(--opa05);
	margin-top: var(--sp2);
	padding: var(--sp4) 0;
	text-align: center;
	border-top: 1px solid var(--wh);
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
	width:100%;
}
.fl_box.wrap{
	width: 90%;
}

.pc_no{
	display:none;
}
a.tel{
	pointer-events:none;
}


.ta_center{
	text-align:center;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: var(--bd);
}