@charset "UTF-8";
/* CSS Document */

/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	position: relative;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
	font-weight: 400;
	line-height: 1.7;
	color: #595757;
	font-size: 16px;
	background: #fffcf0;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.08em;
	line-height: 1.9;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
	letter-spacing: 0.1em;
}
a{
	text-decoration: none;
	color: #595757;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}
.img{
	min-height: 0%;
}
.img img{
	display: block;
	width: 100%;
}
.img a{
	display: block;
	width: 100%;
}
.img a:hover img{
	opacity: .8;
}

.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner.wide{
	max-width: 1400px;
}

.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg5{
	margin-bottom: 5px !important;
}

.pmg5 p{
	margin-bottom: 5px;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg5 p:last-child,
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

span.red{
	color: #f05742;
}

/*蛍光マーカー*/
.marker{
	text-decoration: underline;
  	text-decoration-thickness: 0.5em;
  	text-decoration-color: rgba(255, 228, 0, 0.4);
  	text-underline-offset: -0.2em;
  	text-decoration-skip-ink: none;
}

/*Title*/
h2.title{
	font-weight: 500;
	margin-bottom: 40px;
}
h2.title::before{
	content: '';
	display: block;
	width: 60px;
	margin: 0 auto 10px;
	aspect-ratio: 1 / 1;
	background-image: url(../img/pastel01.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	pointer-events: none;
	z-index:-1;
	display: none;
}
h2.title.pastel02::before{
	background-image: url(../img/pastel02.png);
}
h2.title.pastel03::before{
	background-image: url(../img/pastel03.png);
}
h2.title.pastel04::before{
	background-image: url(../img/pastel04.png);
}
h2.title.pastel05::before{
	background-image: url(../img/pastel05.png);
}
h2.title span.en{
	display: block;
	font-size: 2rem;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1.4;
	color: #EF848C;
	margin-bottom: 10px;
}
h2.title span.ja{
	display: flex;
  	align-items: center;
	font-size: 1rem;
	line-height: 1;
}
h2.title span.ja::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}
h2.title.center::before{
	display: block;
}
h2.title.center span.ja{
	display: block;
	width: 100%;
}
h2.title.center span.ja::before{
	display: none;
}
h2.title.white::before{
	display: none;
}
h2.title.white span.en,
h2.title.white span.ja{
	color: #fff;
}
@media (max-width: 750px){
	h2.title.m_center{
		text-align: center;
	}
	h2.title.m_center::before{
		display: block;
	}
	h2.title.m_center span.ja{
		display: block;
		width: 100%;
	}
	h2.title.m_center span.ja::before{
		display: none;
	}
}



/*mtitle*/
.mtitle{
    position: relative;
    border-radius: 0 5px 5px 0;
    padding: 15px;
	padding-right: 0;
    font-size: 1.4rem;
    margin-bottom: 30px;
}
.mtitle::before,
.mtitle::after{
	position: absolute;
    content: "";
    left: 0;
    height: 8px;
    background: #F89E7C;
}
.mtitle::before{
    width: 30%;
    top: 0;
	opacity: 0.6;
    border-radius: 5px 5px 0 0;
}
.mtitle::after{
	width: 45%;
    bottom: 0;
    border-radius: 0 0 5px 5px;
}
@media (max-width: 750px){
	.mtitle::before{
		width: 40%;
	}
	.mtitle::after{
		width: 70%;
	}
}

.mtitle02{
	position: relative;
	background-color: #EF848C;
	color: #fff;
	border-radius: 9999px;
	padding: 10px 20px;
	font-size: 1.3rem;
	font-weight: 500;
	z-index: 1;
	margin-bottom: 20px;
}
.mtitle02::after{
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
	z-index:-1;
}
.mtitle02.m_blue{
	background-color: #6CC1F0;
}


/*stitle*/
.stitle{
	position: relative;
	font-weight: 500;
	font-size: 1.2rem;
	border-bottom: 2px solid #eee;
	margin-bottom: 20px;
}
.stitle::before{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 100px;
	height: 2px;
	background: #EF848C;
}

/*dtitle*/
.dtitle{
	font-weight: 500;
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 40px;
}
.dtitle::after{
	content: '';
	display: block;
	width: 150px;
	height: 1px;
	background: #595757;
	margin: 20px auto 0;
}

/*wtitle*/
.wtitle{
	position: relative;
	z-index: 1;
    font-size: 1.3rem;
    margin-bottom: 20px;
	background-color: #EF848C;
	color: #fff;
	padding: 10px;
	border-left: 7px solid #F0DD9C;
	font-weight: 500;
}
.wtitle::after{
	content: '';
	width: 20px;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: #fff;
	pointer-events: none;
	z-index:-1;
}

/*ctitle*/
.ctitle{
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.4rem;
	color: #EF848C;
	font-weight: 700;
}
.ctitle::before{
	content: '';
	display: block;
	width: 52px;
	height: 23px;
	background: url(../img/ctitle_deco.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
}
.ctitle.white{
	color: #fff;
}
.ctitle.white::before{
	background-image: url(../img/ctitle_deco_w.png);
}


.etitle{
	font-size: 1.1rem;
	padding-left: 15px;
	border-left: 4px solid #EF848C;
	font-weight: 500;
	margin-bottom: 20px;
}

.rtitle{
	font-weight: 500;
	font-size: 1.15rem;
	margin-bottom: 20px;
}
.rtitle::before{
	content: '';
	display: inline-block;
	width: 6px;
	height: 1em;
	background: linear-gradient(to bottom, #E53517 0, #E53517 50%, #009900 50%, #009900 100%);
	margin-right: 0.5em;
	transform: translateY(2px);
}

.ntitle{
	font-size: 1rem;
	margin-bottom: 15px;
	border-bottom: 1px solid #eee;
	font-weight: 500;
}
.ntitle::before{
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	margin-right: 10px;
	font-size: 0.6rem;
	color: #004A78;
	transform: translateY(-2px);
}

.btitle{
	display: flex;
  	align-items: center;
	font-size: 1rem;
	font-weight: 500;
}
.btitle::before{
	content: '';
	border-top: 1px solid;
	width: 2em;
	margin-right: .5em;
}


.center{
	text-align: center;
}
.pc_center{
	text-align: center;
}
@media (max-width: 750px){
	.pc_center{
		text-align: left;
	}
}


/*ボタン*/
.sbtn a{
	display: block;
	border: 1px solid #fff;
	margin: 0 auto;
	text-align: center;
	width: 300px;
	padding: 15px 0;
	border-radius: 40px;
	font-weight: 500;
	font-size: 0.9rem;
	color: #fff;
	transition: all .5s ease;
	background: #F89E7C;
}
.sbtn a:hover{
	background:#fff;
	color: #F89E7C;
	border: 1px solid #F89E7C;
}
.sbtn.white a{
	background:#fff;
	color: #F89E7C;
	border: 1px solid #F89E7C;
}
.sbtn.white a:hover{
	color: #fff;
	background: #F89E7C;
	border: 1px solid #fff;
}
.sbtn.left a{
	margin: 0 auto 0 0;
}
.sbtn.long a{
	width: 100%;
}
.m_contact a{
	min-width: 280px;
}

.sbtn2{
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
.sbtn3{
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
@media (max-width: 960px){
	.sbtn3{
		display: block;
	}
	.sbtn3 .sbtn:not(:last-child) a{
		margin-bottom: 10px;
	}
}
@media (max-width: 750px){
	.sbtn.left a{
		margin: 0 auto;
	}
	.sbtn2{
		display: block;
	}
	.sbtn2 .sbtn:first-child a{
		margin-bottom: 10px;
	}
}

/*テキストリンク*/
a.t_link{
	color: #d17baa;
	background-image: linear-gradient(to right, #d17baa, #d17baa);
	background-position: 0 100%;
	background-position: bottom left;
	background-size: 100% 1px;
    background-repeat: no-repeat;
	transition: 0.4s;
}
a.t_link:hover{
	opacity: 0.6;
    background-size: 0% 1px;
}


/*2行の基本Table*/
.info_table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr{
	border-bottom: 2px solid #fff;
}
.info_table tr:last-child{
	border: none;
}
.info_table th,
.info_table td{
	padding: 15px 10px;
}
.info_table th{
	position: relative;
	width: 30%;
	font-weight: 500;
	background-color: #6CC1F0;
	color: #fff;
}
.info_table th:after{
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top:calc(50% - 10px);
	right:-10px;
	border-left: 10px solid #6CC1F0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
.info_table td{
	background: #fffcf0;
	width: 70%;
	padding-left: 20px;
	font-size: 0.9rem;
	font-weight: 500;
}
.info_table tr:nth-child(odd) td{
	background-color: #fff;
}

.info_table.c01 th{
	background-color: #F89E7C;
}
.info_table.c01 th:after{
	border-left: 10px solid #F89E7C;
}

/*スタイリッシュver*/
.info_table02{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table02 tr{
	border-bottom: 2px solid #f5f5f5;
}
.info_table02 th,
.info_table02 td{
	padding: 20px 0;
}
.info_table02 th{
	width: 30%;
	border-bottom: 2px solid #F3CE25;
	font-weight: 500;
	color: #F3CE25;
}
.info_table02 td{
	padding-left: 10px;
	width: 70%;
}

@media (max-width: 450px){
	.info_table, .info_table02{
		font-size: 0.9rem;
	}
}

.info_table03{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border-bottom: 1px solid rgba(196,196,196,.43);
}
.info_table03 tr{
	border-top: 1px solid rgba(196,196,196,.43);
}
.info_table03 th,
.info_table03 td{
	padding: 40px 0;
	text-align: left;
	vertical-align: top;
}
.info_table03 th{
	width: 20%;
	padding-left: 40px;
	font-weight: 500;
}
.info_table03 td{
	width: 80%;
	padding-left: 20px;
}
@media (max-width: 750px){
	.info_table03 th,
	.info_table03 td{
		padding: 40px 0;
	}
	.info_table03 th{
		width: 25%;
		padding-left: 20px;
	}
	.info_table03 td{
		width: 75%;
		padding-left: 20px;
	}
}
@media (max-width: 450px){
	.info_table03{
		font-size: 0.9rem;
		padding: 30px 0;
	}
	.info_table03 th{
		width: 30%;
		padding-left: 10px;
	}
	.info_table03 td{
		width: 70%;
		padding-left: 10px;
	}
}


/*改行*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block;
}


/*list*/
ul.check_list li{
	border-bottom: 2px dotted #eee;
	margin-bottom: 8px;
	padding-left: 2px;
	padding-bottom: 5px;
}
ul.check_list li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #EF848C;
	margin-right: .5em;
	font-size: 0.6rem;
	transform: translateY(-2px);
}
ul.check_list02 li{
	margin-bottom: 5px;
}
ul.check_list02 li::before{
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #08A6A6;
	margin-right: .5em;
	font-size: .9em;
}
ul.check_list li:last-child,
ul.check_list02 li:last-child{
	margin-bottom: 0;
}
ul.check_list02.row{
	display: flex;
	flex-wrap: wrap;
}
ul.check_list02.row li{
	margin-right: 40px;
	margin-bottom: 10px;
}
@media (max-width: 750px){
	ul.check_list02.row{
		display: block;
	}
	ul.check_list02.row li{
		margin-right: 0;
	}
}

ul.dot_list li{
	margin-bottom: 5px;
}
ul.dot_list li::before{
	content: '・';
	color: #EF848C;
	margin-right: 5px;
}

ul.care_list li{
	margin-bottom: 5px;
	font-size: 0.8rem;
}
ul.care_list li::before{
	content: '※';
	color: #f05742;
	font-weight: bold;
}

ul.text_list li{
	border-bottom: 1px solid #ddd;
	margin-bottom: 5px;
	padding-left: 2px;
}

/*===info_flexbox======*/
/*画像 + テキスト 通常のflex*/
.info_flexbox{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.info_flexbox .img{
	width: 48%;
}
.info_flexbox .text{
	width: 48%;
}
@media (max-width: 750px){
	.info_flexbox{
		flex-direction: column;
	}
	.info_flexbox.reverse{
		flex-direction: column-reverse;
	}
	.info_flexbox .img{
		width: 100%;
	}
	.info_flexbox .text{
		width: 100%;
	}
}


/*画像 + テキスト 画像小さめのflex*/
.mini_flex{
	display: flex;
	justify-content: space-between;
}
.mini_flex .img{
	width: 340px;
}
.mini_flex .text{
	width: calc(100% - 380px);
}
@media (max-width: 750px){
	.mini_flex{
		flex-direction: column;
	}
	.mini_flex.reverse{
		flex-direction: column-reverse;
	}
	.mini_flex .img{
		width: 100%;
	}
	.mini_flex .text{
		width: 100%;
	}
}

.t_flex{
	display: flex;
	justify-content: space-between;
}
.t_flex .text{
	width: 48.5%;
}
@media (max-width: 750px){
	.t_flex{
		display: block;
	}
	.t_flex .text{
		width: 100%;
	}
}


.img_wrap3{
	display: flex;
	justify-content: space-between;
}
.img_wrap3 .img{
	width: 32%;
}

.img_wrap2{
	display: flex;
	justify-content: space-between;
}
.img_wrap2 .img{
	width: 48%;
}

/*階段型*/
.stairs_img2{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.stairs_img2 .img{
	width: 48%;
}
.stairs_img2 .img:nth-child(1){
	margin-top: 20px;
}

.stairs_img4{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.stairs_img4 .img{
	width: 48%;
}
.stairs_img4 .img:nth-child(2){
	margin-top: 20px;
}

.stairstext{
	text-align: center;
	color: #eb78e0;
	font-weight: 700;
}

.stairs_img3{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.stairs_img3 .img{
	width: 32%;
}
.stairs_img3 .img:nth-child(2){
	margin-top: 20px;
}
.stairs_img3 .img:nth-child(3){
	margin-top: 40px;
}
@media (max-width: 750px){
	.stairs_img3 .img{
		width: 90%;
		margin-bottom: 20px;
	}
	.stairs_img3 .img:nth-child(2){
		margin: 0 auto 20px auto;
	}
	.stairs_img3 .img:nth-child(3){
		margin: 0 0 0 auto;
	}
}

.map iframe{
	vertical-align: top;
}

/*===// 共通部分ここまで ===========*/


.orange{
	color: #F89E7C !important;
}
.yellow{
	color: #F0DD9C !important;
}
.green{
	color: #B6F090 !important;
}
.blue{
	color: #6CC1F0 !important;
}
.indigo{
	color: #5287A3 !important;
}
.purple{
	color: #EB78F0 !important;
}


.img.shadow{
	position: relative;
}
.img.shadow::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	pointer-events: none;
	z-index: 1;
}

/*===ヘッダー==============================*/
.site_header{
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: 0.4s;
	padding: 10px 40px;
	border-radius: 0 0 20px 20px;
	background-color: #fff;
}
.site_header.transform{
}
.site_header .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site_header h1{
	width: 300px;
	transition: 0.6s;
}
.site_header h1 a{
	display: block;
	width: 100%;
}
.site_header h1 a img{
	display: block;
	width: 100%;
	transition: .4s;
}
.site_header h1 a:hover img{
	opacity: .6;
}

.site_header .info{
}
.site_header .tr{
	display: flex;
	justify-content: right;
	align-items: center;
	margin-bottom: 12px;
}
.site_header .tr p{
	font-size: 0.9rem;
}
.site_header .tr .sbtn a{
	margin: 0 auto;
	margin-left: 15px;
	width: 200px;
	padding: 5px 0;
}

/*global_nav*/
.global_nav{
	width: 100%;
}
.global_nav ul{
	margin: 0 0 0 auto;
	display: flex;
	justify-content: right;
	width: -moz-fit-content;
	width: fit-content;
}
.global_nav ul li{
	margin-left: 25px;
	transition: .4s;
}
.global_nav ul li a{
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.5;
}
.global_nav ul li a span{
	display: block;
	text-transform: capitalize;
	font-size: 0.7rem;
}
.global_nav ul li a:hover{
	opacity: 0.6;
}

.global_nav ul li:nth-child(1) a span{
	color: #EF848C;
}
.global_nav ul li:nth-child(2) a span{
	color: #F0DD9C;
}
.global_nav ul li:nth-child(3) a span{
	color: #B6F090;
}
.global_nav ul li:nth-child(4) a span{
	color: #6CC1F0;
}
.global_nav ul li:nth-child(5) a span{
	color: #5287A3;
}
.global_nav ul li:nth-child(6) a span{
	color: #EB78F0;
}



.global_nav ul li.parent{
	position: relative;
}
.global_nav ul li.parent > a{
	
}
.global_nav ul li.parent > a::before{
	display: none;
}
.global_nav ul li.parent > a:hover{
	transform: none;
}
.global_nav ul li.parent > a i{
	display: block;
	font-size: 6px;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%,0);
	color: #999;
}
.global_nav ul li.parent .child{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: scaleY(0) translateX(-50%);
	transition: 0.6s;
	transform-origin: center top;
	padding-top: 10px;
}
.global_nav ul li.parent .child a{
	display: block;
	background-color: #fff;
	box-shadow: rgb(0 0 0 / 10%) 1.95px 1.95px 2.6px;
	text-align: left;
	padding: 14px 30px;
	white-space: nowrap;
	margin-bottom: 3px;
	line-height: 1;
	border-radius: 10px;
	font-weight: 700;
}
.global_nav ul li.parent .child a:last-child{
	margin-bottom: 0;
}
.global_nav ul li.parent:hover .child{
	transform: scaleY(1) translateX(-50%);
}
.global_nav ul li.parent .child a:hover{
	opacity: 0.8;
}

@media (max-width: 1200px){
	.site_header{
		padding: 0 20px;
	}
	.site_header .flex{
		height: 80px;
	}
	.site_header h1{
		width: 220px;
	}
	.site_header .info{
		display: none;
	}
}


/*===スライダー==============================*/
.top_slider{
	overflow: hidden;
	position: relative;
	margin-top: 20px;
}
.top_slider .slider{
	position: relative;
}
.top_slider .slider::after{
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 40px;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: rgb(255, 252, 240) 3px 3px 6px 0px inset, rgba(255, 252, 240, 0.5) -3px -3px 6px 1px inset;
	pointer-events: none;
	z-index: 1;
}
.top_slider .slider li{
	width: 100%;
	height: 80vh;
	min-height: 400px;
	border-radius: 40px;
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top01{
	background-image: url(../img/top01.jpg);
}
.top_slider .slider li.top02{
	background-image: url(../img/top02.jpg);
}
.top_slider .slider li.top03{
	background-image: url(../img/top03.jpg);
}

/*キャッチ*/
.top_slider .catch{
	position: absolute;
	bottom: 8%;
	left: 10%;
	pointer-events: none;
	z-index: 2;
	width: -moz-fit-content;
	width: fit-content;
}
.top_slider .catch p{
	font-family: sheila, sans-serif;
	font-weight: 700;
	z-index: 1;
	color: #fff;
	transform: rotate(-5deg) translate( 0, -10px);
	font-size: 1.6rem;
}
.top_slider .catch h2{
	color: #EF848C;
	font-size: 2.6rem;
	/*text-shadow: 2px 2px rgb(63 63 63 / 30%);*/
}
.top_slider .catch h2 span.row{
	display: block;
	background-color: #fff;
	margin-bottom: 10px;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 10px;
}
.top_slider .catch h2 span:last-child{
	margin-bottom: 0;
}
.top_slider .catch img{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 200px;
	transform: translate(-40%,-25%);
}

@media (max-width: 750px){
	.top_slider .slider li{
		height: 50vh;
	}
	.top_slider .catch{
		bottom: 5%;
		left: 7%;
	}
	.top_slider .catch p{
		font-size: 1.2rem;
		line-height: 1.7;
	}
	.top_slider .catch h2{
		font-size: 1.7rem;
	}
	.top_slider .catch img{
		width: 160px;
		transform: translate(-20%,-25%);
	}
}

/*===メイン==============================*/
main{
	display: block;
	position: relative;
}
main section{
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
@media (max-width: 750px){
	main section{
		padding: 60px 0;
	}
}

.inner.white{
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
}
.inner.white.border{
	border: 5px solid #FFF4E3;
}
@media (max-width: 750px){
	.inner.white{
		padding: 40px 20px;
	}
}

.info_wrap{
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 10px;
}
.info_wrap.border{
	border: 5px solid #FFF4E3;
}
@media (max-width: 750px){
	.info_wrap{
		padding: 30px 15px;
	}
}

.wave01{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.wave01 svg{
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 46px;
}
.wave01 .shape-fill{
    fill: #fff;
}
.wave01.white .shape-fill{
    fill: #fffcf0;
}

.bg01{
	background-color: #fff;
}
.bg02{
	background-image: url(../img/bg02.png),url(../img/bg02a.png);
	background-repeat: no-repeat;
	background-position: top right, bottom left;
	background-size: 25%, 30%;
}
.bg03{
	background-image: url(../img/bg02.png);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: 25%;
}
.bg04{
	background-image: url(../img/bg02a.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 30%;
}

.rainbow01{
	background-image: url(../img/rainbow01.png);
	background-repeat: no-repeat;
	background-position: top 5% right;
	background-size: 300px;
}
@media (max-width: 960px){
	.rainbow01{
		background-size: 30%;
	}
}
.rainbow02{
	background-image: url(../img/rainbow02.png);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 300px;
}
@media (max-width: 960px){
	.rainbow02{
		background-size: 30%;
	}
}
.rainbow03{
	background-image: url(../img/rainbow03.png);
	background-repeat: no-repeat;
	background-position: top 2% right;
	background-size: 300px;
}
@media (max-width: 960px){
	.rainbow03{
		background-size: 30%;
	}
}

/*==news==============================*/
.news::after{
	content: '';
	width: 35%;
	height: 100%;
	max-width: 350px;
	position: absolute;
	top: 10px;
	right: 2px;
	background: url(../img/bird01.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}


/*==welcome==============================*/
.welcome{
}
.welcome .inner{
	max-width: none;
}
.welcome::after{
	content: '';
	width: 100%;
	height: 50%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../img/welcome_bg.jpg);
	background-size: cover;
	background-position: top center;
}
.welcome .inner{
	position: relative;
	z-index: 1;
}
.welcome .inner::after{
	content: '';
	width: 30%;
	aspect-ratio: 4 / 3;
	position: absolute;
	bottom: 0;
	right: 0;
	background-image: url(../img/rainbow02.png);
	background-size: contain;
	background-position: bottom right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: -1;
	opacity: 0.8;
}
.welcome .flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1400px;
	margin: 0 auto;
}
.welcome .flex .img{
	width: 350px;
}
.welcome .flex .img img{
	border-radius: 50%;
}
.welcome .flex .text{
	width: calc(100% - 400px);
}
.welcome .flex .text .btns{
	display: flex;
}
.welcome .flex .text .btns .sbtn{
	width: 48%;
	max-width: 300px;
}
.welcome .flex .text .btns .sbtn:last-child{
	margin-left: 20px;
}
.welcome .flex .text .btns .sbtn a{
	width: 100%;
}
@media (max-width: 960px){
	.welcome .flex{
		display: block;
	}
	.welcome .flex .img{
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	.welcome .flex .img img{
		border-radius: 50%;
	}
	.welcome .flex .text{
		width: 100%;
	}
	.welcome .flex .text .btns{
		justify-content: space-around;
	}
}
@media (max-width: 750px){
	.welcome .flex .text .btns{
		display: block;
	}
	.welcome .flex .text .btns .sbtn,
	.welcome .flex .text .btns .sbtn:last-child{
		width: 100%;
		margin: 0 auto;
		margin-bottom: 10px;
	}
	.welcome .flex .text .btns .sbtn:last-child{
		margin-bottom: 0;
	}
}

/*===link==============================*/
.t_service{
	overflow: hidden;
}
.sec_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 100px;
}
.sec_flex:last-child{
	margin-bottom: 0;
}
.sec_flex .img_box{
	position: relative;
	width: 55%;
	pointer-events: none;
}
.sec_flex .img_box img{
	border-radius: 0 10px 10px 0;
}
.sec_flex .text{
	position: relative;
	z-index: 1;
	width: 45%;
	transform: translateX(-60px);
	background-color: rgba(255, 255, 255, 1);
	border-radius: 10px;
	padding: 60px 40px;
}
.sec_flex .text::after{
	content: '';
	width: 40%;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: -30px;
	right: -30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top right;
	pointer-events: none;
	z-index: -1;
}
.sec_flex.reverse .text::after{
	right: 0;
}
.sec_flex.sec_flex01 .text::after{
	background-image: url(../img/t_service01.png);
}
.sec_flex.sec_flex02 .text::after{
	background-image: url(../img/t_service03.png);
}
.sec_flex.sec_flex03 .text::after{
	background-image: url(../img/t_service02.png);
}
.sec_flex.sec_flex04 .text::after{
	background-image: url(../img/t_service04.png);
}
.sec_flex.reverse .img_box img{
	border-radius: 10px 0 0 10px;
}
.sec_flex.reverse .text{
	transform: translateX(60px);
}
@media (max-width: 960px){
	.sec_flex{
		flex-direction: column;
		width: 96%;
		margin: 0 auto;
		margin-bottom: 60px;
	}
	.sec_flex .img_box{
		width: 100%;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	.sec_flex .img_box img{
		border-radius: 10px;
	}
	.sec_flex .text{
		width: 100%;
		transform: none;
		border: 5px solid #FFF4E3;
		padding: 60px 20px;
	}
	.sec_flex .text h2{
		text-shadow: none;
	}
	.sec_flex.reverse .img_box img{
		border-radius: 10px;
	}
	.sec_flex.reverse .text{
		transform: none;
	}
	.sec_flex.reverse{
		flex-direction: column-reverse;
	}
}
@media (max-width: 450px){
	.sec_flex .text .sbtn a{
		width: 100%;
		max-width: 300px;
	}
}


/*===フッター==============================*/
.footer_top{
	position: relative;
	z-index: 1;
	background-color: #fff;
	padding: 100px 0;
	text-align: center;
}
.footer_top::before,
.footer_top::after{
	content: '';
	display: block;
	aspect-ratio: 1 / 1;
	position: absolute;
	pointer-events: none;
	z-index:-1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.footer_top::before{
	background-image: url(../img/deco01.png);
	bottom: -60px;
	right: 10%;
	width: 25%;
	max-width: 160px;
}
.footer_top::after{
	background-image: url(../img/deco02.png);
	top: 10%;
	left: 10%;
	width: 25%;
	max-width: 200px;
	opacity: 0.8;
}
.footer_top .btn_wrap{
	display: flex;
	justify-content: space-between;
	margin: 0 auto -20px;
	max-width: 800px;
}
.footer_top .btn_wrap .btn{
	width: 360px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.footer_top .btn_wrap .btn a{
	display: block;
	width: 100%;
	border: 1px solid #EF848C;
	color: #EF848C;
	padding: 20px 0;
	font-size: 1.2rem;
	font-weight: 500;
	border-radius: 50px;
}
.footer_top .btn_wrap .btn a:hover{
	color: #fff;
	background-color: #EF848C;
}

.footer_middle{
	position: relative;
	text-align: center;
	padding: 100px 0 20px;
}

footer h3{
	width: 80%;
	max-width: 400px;
	margin: 0 auto 20px;
}
footer h3 a{
	display: block;
	width: 100%;
}
footer h3 a img{
	display: block;
	width: 100%;
}
footer h3 a:hover img{
	opacity: 0.7;
}
.footer_middle p{
	font-size: 0.9rem;
}


@media (max-width: 750px){
	.footer_top .btn_wrap{
		display: block;
	}
	.footer_top .btn_wrap .btn{
		width: 100%;
	}
}


/*トップに戻る*/
.page_top{
	opacity: 0;
	pointer-events: none;
  	width: 60px;
  	height: 60px;
  	position: fixed;
  	right: 3%;
  	bottom: 4%;
	border-radius: 50%;
	opacity: 0;
	transition: 1s;
  	background: #B6F090;
  	z-index: 50;
}
.page_top a{
	display: block;
	position: relative;
	z-index: 10;
  	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.page_top a i{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
  	font-weight: 900;
  	font-size: 10px;
  	color: #fff;
}
.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}
.page_top.is_animation:hover{
	transform: translateY(-5px);
}
@media (max-width: 750px){
	.page_top{
		width: 45px;
		height: 45px;
		right: 10px;
		bottom: 10px;
	}
}

/*=================================*/
/*===下層ページ===============================================================*/
/*下層トップ*/
.kasou_top{
	position: relative;
	z-index: 1;
	background: url(../img/kasou_top.jpg);
	background-size: cover;
	background-position: center;
	width: 100%;
	padding: 130px 0;
}
.kasou_top::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
    opacity: 0.3;
	pointer-events: none;
	z-index:-1;
}
/*ドットテクスチャ*/
.kasou_top::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../img/pattern-01.png);
	background-repeat: repeat;
	background-size: 2px 2px;
	opacity: 0.5;
	z-index: 1;
}
@media (max-width: 450px){
	.kasou_top::after{
		background-size: 1px 1px;
		opacity: 0.5;
	}
}
.kasou_top h2{
	position: relative;
	z-index: 3;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.6;
	margin-bottom: 15px;
	text-shadow: 0 0 40px #000;
}
@media (max-width: 750px){
	.kasou_top{
		padding: 100px 0;
	}
	.kasou_top h2{
		font-size: 1.9rem;
	}
}


/*パンくず*/
.breadcrumb{
	position: relative;
	z-index: 3;
	font-size: 11px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	vertical-align: top;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
}
.breadcrumb li:first-child a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
}
.breadcrumb li a:hover{
	opacity: 0.7;
}


/*===ページ==============================*/
.belief .message{

}
.belief .message p{
	font-size: 1.9rem;
	margin-bottom: 20px;
	font-weight: 500;
	color: #EF848C;
	letter-spacing: 0.13em;
}
.belief .message p span{
	padding: 0 5px 5px;
	border-bottom: 2px dotted #F0DD9C;
}
@media (max-width: 960px){
	.belief .message p{
		font-size: 1.6rem;
	}
}
@media (max-width: 750px){
	.belief .message p{
		font-size: 1.5rem;
	}
}


.belief_below::after{
	content: '';
	width: 35%;
	height: 100%;
	max-width: 350px;
	position: absolute;
	top: -40px;
	right: 2px;
	background: url(../img/bird01.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}

.belief_below .wrapper{
	margin-bottom: 60px;
}
.belief_below .wrapper:last-child{
	margin-bottom: 0;
}
.belief_below .stitle .sub{
	display: inline-block;
	margin-right: 20px;
	color: #EF848C;
	font-weight: 700;
	font-size: 1.8rem;
}
.belief_below .stitle .sub span{
	font-size: 1rem;
	margin-right: 4px;
}

/*===放課後等デイサービス　ら・ぽるてページ==============================*/
.service_lede::before{
	content: '';
	width: 38%;
	height: 100%;
	max-width: 500px;
	position: absolute;
	top: 10px;
	left: 2px;
	background: url(../img/sky01.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: -1;
}
/*.service_lede::after{
	content: '';
	width: 30%;
	height: 100%;
	max-width: 300px;
	position: absolute;
	top: 0;
	right: 2%;
	background: url(../img/t_service03.png);
	background-size: contain;
	background-position: top 60% right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: -1;
	opacity: 0.7;
}*/
.service_lede .flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.service_lede .flex .img{
	width: 300px;
}
.service_lede .flex .text{
	width: calc(100% - 340px);
}
@media (max-width: 750px){
	.service_lede .flex{
		display: block;
	}
	.service_lede .flex .img{
		width: 100%;
		max-width: 300px;
		margin: 0 auto 30px;
	}
	.service_lede .flex .text{
		width: 100%;
	}
}

.about_service{
	position: relative;
	padding-top: 50px;
}
.about_service .q_mark{
	width: 80px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
.about_service .text{
	margin: 0 auto;
	max-width: 960px;
}
@media (max-width: 750px){
	.q_mark{
		width: 50px;
	}
}


.contents::after{
	content: '';
	width: 30%;
	height: 100%;
	max-width: 200px;
	position: absolute;
	top: -40px;
	right: 2%;
	background: url(../img/bird02.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}
.contents .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}
.contents .wrapper:last-child{
	margin-bottom: 0;
}
.contents .wrapper .img{
	position: relative;
	width: 300px;
}
.contents .wrapper .img::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	pointer-events: none;
	z-index: 1;
	border-radius: 50%;
}
.contents .wrapper .img img{
	border-radius: 50%;
}
.contents .wrapper .text{
	width: calc(100% - 340px);
}


@media (max-width: 750px){
	.contents .wrapper{
		flex-direction: column;
	}
	.contents .wrapper.reverse{
		flex-direction: column-reverse;
	}
	.contents .wrapper .img{
		width: 90%;
		max-width: 300px;
		margin-bottom: 30px;
	}
	.contents .wrapper .text{
		width: 100%;
	}
}


.spend_time .flex{
	display: flex;
	justify-content: space-between;
}
.spend_time .flex .wrapper{
	width: 48%;
}

.spend_time .img{
	margin-top: 30px;
}

.daily_flow .box{
	display: flex;
}
.daily_flow .box .left{
	position: relative;
	width: 120px;
}
.daily_flow .box .left::before{
	content: '';
	width: 6px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 30px;
	pointer-events: none;
	z-index:-1;
	/*border-left: 4px dotted #F0DD9C;*/
	background: radial-gradient(#F0DD9C 20%,transparent 0%) center center/12px 12px;
}
.daily_flow .box:last-child .left::before{
	display: none;
}
.daily_flow .box .left p{
	background-color: #F89E7C;
	color: #fff;
	text-align: center;
	font-weight: 700;
	border-radius: 10px;
	padding: 5px 0;
	width: 100px;
}
.daily_flow .box .right{
	width: calc(100% - 120px);
	padding-bottom: 40px;
}
.daily_flow .box:last-child .right{
	padding-bottom: 0 !important;
}
.daily_flow .box .right .text{
	margin-bottom: 10px;
	background-color: #fff;
	padding: 10px 15px;
	border-radius: 10px;
}
.daily_flow .box .right .text:last-child{
	margin-bottom: 0 !important;
}
.daily_flow .box .right .text h3{
	font-weight: 500;
	font-size: 1.2rem;
	color: #683f26;
}
.daily_flow .box .right .text p{
	color: #F89E7C;
}
@media (max-width: 960px){
	.spend_time .flex{
		display: block;
	}
	.spend_time .flex .wrapper{
		width: 100%;
		margin-bottom: 60px;
	}
	.spend_time .flex .wrapper:last-child{
		margin-bottom: 0;
	}
}
@media (max-width: 750px){
	.daily_flow .box .left{
		width: 90px;
	}
	.daily_flow .box .left::before{
		width: 4px;
	}
	.daily_flow .box .left p{
		width: 80px;
		font-size: 0.9rem;
	}
	.daily_flow .box .right{
		width: calc(100% - 90px);
		padding-bottom: 25px;
	}
	.daily_flow .box .right .text{
		margin-bottom: 6px;
		padding: 6px 10px;
	}
	.daily_flow .box .right .text h3{
		font-size: 1.1rem;
	}
	.daily_flow .box .right .text p{
		font-size: 0.9rem;
	}
}


.s_middle{
	position: relative;
	height: 400px;
}
.s_middle::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	pointer-events: none;
	z-index: 1;
}
.s_middle img{
	display: block;
	object-fit: cover;
	width: 100%;
    height: 100%;
}



.new_dayflow{
	position: relative;
	z-index: 1;
	max-width: 750px;
	margin: 0 auto;
}
.new_dayflow .container{
	position: relative;
}
.new_dayflow .container .row{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.new_dayflow .container .row::before{
	content: '';
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background: #EB78F0;
	pointer-events: none;
	z-index:-1;
}
.new_dayflow .container:first-child .row{
	align-items: stretch;
}
.new_dayflow .container:first-child .row::before{
	display: none;
}
.new_dayflow .container .row .left,
.new_dayflow .container .row .right{
	width: calc(50% - 50px);
}
.new_dayflow .container .row .left,
.new_dayflow .container .row .right,
.new_dayflow .container .row .middle{
	padding: 10px 0;
	font-weight: 700;
}
.new_dayflow .container .row h3{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	text-align: center;
	color: #fff;
	background-color: #EB78F0;
	border-radius: 10px;
	padding: 3px;
}
.new_dayflow .container .row .middle{
	position: relative;
	width: 100px;
	text-align: center;
}
.new_dayflow .container .row .middle::after{
	content: '';
	display: block;
	margin: 0 auto;
	width: 20px;
	aspect-ratio: 1 / 1;
	background: #EB78F0;
	border: 1px solid #D962A4;
	pointer-events: none;
	border-radius: 50%;
}
.new_dayflow .container:first-child .row .middle::after,
.new_dayflow .container .row:first-child .middle::after{
	display: none;
}
.new_dayflow .container .row .middle p{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background: #EB78F0;
	border: 1px solid #D962A4;
	width: 50px;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	border-radius: 50%;
	font-weight: 700;
	font-size: 1.2rem;
}

.new_dayflow .container02 .img{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 50%;
	text-align: center;
}
.new_dayflow .container02 .img img{
	
}

@media (max-width: 750px){
	.new_dayflow .container .row::before{
		width: 4px;
	}
	.new_dayflow .container .row .left,
	.new_dayflow .container .row .right{
		width: calc(50% - 30px);
	}
	.new_dayflow .container .row .left,
	.new_dayflow .container .row .right,
	.new_dayflow .container .row .middle{
		padding: 10px 0;
	}
	.new_dayflow .container .row h3{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		font-size: 1.1rem;
	}
	.new_dayflow .container .row .middle{
		width: 60px;
	}
	.new_dayflow .container .row .middle::after{
		width: 18px;
	}
	.new_dayflow .container .row .middle p{
		width: 40px;
		font-size: 1.1rem;
	}
}



/*===ご利用案内ページ==============================*/
.certification{
	position: relative;
	padding-top: 50px;
	margin-top: 80px;
}
.certification .q_mark{
	width: 80px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}
.certification .text{
	margin: 0 auto;
	max-width: 960px;
}


.starting_flow{
	
}

.thumbnail_slider{
	margin-bottom: 40px;
}
.thumbnail_slider li{
	text-align: center;
	padding-right: 25px;
	cursor: pointer;
}
.thumbnail_slider li p.num{
	text-transform: uppercase;
	font-weight: 700;
	color: #F89E7C;
	font-size: 1.2rem;
}
.thumbnail_slider li .box{
	position: relative;
	width: 100%;
	background-color: #F89E7C;
	color: #fff;
	font-weight: 500;
	height: 50px;
	line-height: 50px;
}
.thumbnail_slider li .box::before{
	content: "";
    position: absolute;
    top: 0;
	left: 100%;
    display: block;
    border-style: solid;
    border-width: 25px;
    border-color: transparent transparent transparent #F89E7C;
}
.thumbnail_slider li:last-child{
	padding-right: 0;
}
.thumbnail_slider li:last-child .box::before{
	display: none;
}

/*slick-current*/
.thumbnail_slider li.slick-current{
	cursor: default;
}
.thumbnail_slider li.slick-current p.num{
	color: #EF848C;
}
.thumbnail_slider li.slick-current .box{
	background-color: #EF848C;
}
.thumbnail_slider li.slick-current .box::before{
	border-color: transparent transparent transparent #EF848C;
}

/*hover*/
.thumbnail_slider li:hover p.num{
	color: #EF848C;
}
.thumbnail_slider li:hover .box{
	background-color: #EF848C;
}
.thumbnail_slider li:hover .box::before{
	border-color: transparent transparent transparent #EF848C;
}


.main_slider{
	border: 5px solid #FFF4E3;
}
.main_slider li{
	background-color: #fff;
	padding: 40px 30px;
	border-radius: 10px;
}
.main_slider .slick-track{
	display: flex;
}
.main_slider .slick-slide{
	height: auto !important;
}
.main_slider li .stitle{
	font-size: 1.3rem;
}
.main_slider li .stitle span{
	text-transform: uppercase;
	color: #EF848C;
	font-weight: 700;
	font-size: 1.1rem;
	display: block;
}
.main_slider li .flex{
	display: flex;
	justify-content: space-between;
}
.main_slider li .flex .text{
	width: calc(100% - 340px);
}
.main_slider li .flex .img{
	width: 300px;
}

/*arrow
.main_slider .slide_left, .main_slider .slide_right{
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 1;
	height: 100%;
	width: 20px;
	cursor: pointer;
	display: flex !important;
	justify-content: center;
	align-items: center;
	transition: .8s;
	color: #F0DD9C;
}
.main_slider .slide_left{
	left: 0;
}
.main_slider .slide_right{
	right: 0;
}
.main_slider .slide_left i, .main_slider .slide_right i{
	display: block;
	font-size: 20px;
	transition: .8s;
}
.main_slider .slide_left:hover i{
	transform: translate(-6px);
}
.main_slider .slide_right:hover i{
	transform: translate(6px);
}*/

@media (max-width: 750px){
	.thumbnail_slider{
		margin-bottom: 30px;
	}
	.thumbnail_slider li{
		padding-right: 20px;
	}
	.thumbnail_slider li p.num{
		font-size: 0.9rem;
	}
	.thumbnail_slider li .box{
		height: 40px;
		line-height: 40px;
		font-size: 0.8rem;
	}
	.thumbnail_slider li .box::before{
		border-width: 20px;
	}
	.thumbnail_slider li:last-child{
		padding-right: 0;
	}

	.main_slider li{
		padding: 30px 20px;
	}
	.main_slider li .stitle{
		font-size: 1.2rem;
	}
	.main_slider li .stitle span{
		font-size: 1rem;
	}
	.main_slider li .flex{
		display: block;
	}
	.main_slider li .flex .text{
		width: 100%;
		margin-bottom: 10px;
	}
	.main_slider li .flex .img{
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}





.flow_chart{
	position: relative;
}
.flow_chart .box{
	position: relative;
	margin-bottom: 50px;
}
.flow_chart .box::after{
	font-family: "Font Awesome 5 Free";
	content: "\f13a";
	font-weight: bold;
	color: #EF848C;
	position: absolute;
	bottom: -13px;
	left: 50%;
	transform: translate(-50%, 100%);
	font-size: 24px;
	line-height: 1;
}
.flow_chart .box:last-child{
	margin-bottom: 0;
}
.flow_chart .box:last-child::after{
	display: none;
}
.flow_chart .box .subect{
	background-color: #EF848C;
	padding: 10px 15px;
}
.flow_chart .box .subect h3{
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #fff;
}
.flow_chart .box .subect h3 span{
	display: inline-block;
	text-transform: uppercase;
	margin-right: 0.8em;
	font-size: 1.2rem;
	font-weight: 700;
}
.flow_chart .box .flex{
	background-color: #fff;
	padding: 15px;
}
@media (max-width: 750px){
	.flow_chart .box .subect h3 span{
		display: block;
		margin-bottom: 5px;
	}
}


/*===求人情報ページ==============================*/
.recruit_lede{
	
}
.recruit_lede::after{
	content: '';
	width: 30%;
	height: 100%;
	max-width: 200px;
	position: absolute;
	top: -40px;
	right: 2%;
	background: url(../img/bird02.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}
.recruit_lede h3{
	font-size: 1.9rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #EF848C;
    letter-spacing: 0.13em;
	padding: 0 3px 5px;
    border-bottom: 2px dotted #F0DD9C;
}
.recruit_lede .text .deco{
	margin-top: 20px;
}
.recruit_lede .text .deco img{
	display: block;
	width: 100%;
}
@media (max-width: 750px){
	.recruit_lede h3{
		font-size: 1.5rem;
	}
}

/*===会社案内ページ==============================*/
.greeting .flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.greeting .flex .img{
	position: relative;
	width: 300px;
}
.greeting .flex .img img{
	border-radius: 50%;
}
.greeting .img::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	pointer-events: none;
	z-index: 1;
	border-radius: 50%;
}
.greeting .flex .text{
	width: calc(100% - 340px);
}
.greeting .text .tail{
	text-align: right;
}
@media (max-width: 960px){
	.greeting .flex{
		display: block;
	}
	.greeting .flex .img{
		margin: 0 auto 30px;
		width: 100%;
		max-width: 300px;
	}
	.greeting .flex .text{
		width: 100%;
	}
}

.about::after{
	content: '';
	width: 35%;
	height: 100%;
	max-width: 350px;
	position: absolute;
	top: -40px;
	right: 2px;
	background: url(../img/bird01.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}

.information .flex{
	display: flex;
	justify-content: space-between;
}
.information .flex .box{
	width: 49%;
}
.information .flex .box ul li{
	margin-bottom: 10px;
}
.information .flex .box ul li:last-child{
	margin-bottom: 0 !important;
}
.information .flex .box ul li a{
	display: block;
	width: 100%;
	background-color: #EF848C;
	border: 1px solid #EF848C;
	color: #fff;
	text-align: center;
	font-weight: 500;
	padding: 8px 0;
	border-radius: 20px;
}
.information .flex .box ul li a:hover{
	background-color: #fff;
	color: #EF848C;
}
@media (max-width: 960px){
	.information .flex{
		display: block;
	}
	.information .flex .box{
		width: 100%;
		margin-bottom: 30px;
	}
	.information .flex .box:last-child{
		margin-bottom: 0 !important;
	}
}

/*===お問い合わせページ==============================*/
.contact .tel_contact{
	text-align: center;
}
.contact .tel_contact a{
	display: inline-block;
	font-size: 2.8rem;
	font-weight: 500;
	white-space: nowrap;
	color: #EF848C;
	line-height: 1;
	margin-bottom: 20px;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: .8rem;
}
@media (max-width: 750px){
	.contact .tel_contact a{
		font-size: 2.4rem;
	}
}
@media (max-width: 450px){
	.contact .tel_contact a{
		font-size: 2rem;
	}
}


/*メールフォーム*/
.mailform{
	margin: 0 auto;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
  	color: #fff;
  	background: #F89E7C;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
	font-weight: 500;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform .postal_btn{
	padding: 2px 10px;
	background: #F89E7C;
	color: #fff;
	border-radius: 2px;
	margin-top: 5px;
	border: 1px solid #F89E7C;
}
.mailform .postal_btn:hover{
	background: #F89E7C;
	opacity: 0.9;
}
.mailform button{
	display: block;
	color: #111;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #F89E7C;
	border: 1px solid #F89E7C;
	border-radius: 25px;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	color: #F89E7C;
}
.mailform button::before{
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #F89E7C;
    border-bottom: 3px solid #F89E7C;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #F89E7C;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #F89E7C;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*アコーディオン*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	border: 1px solid #ccc;
}
.privacy li .privacy_wrap .privacy_subject{
	cursor: pointer;
	transition: all .5s ease;
	padding: 15px 20px;
	padding-right: 30px;
	position: relative;
	background-color: #f9f9f9;
	background-color: #EF848C;
	color: #fff;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}
.privacy li .privacy_wrap .privacy_subject h3{
	font-size: 1.1rem;
}
/*アイコンの＋と×*/
.privacy li .privacy_wrap .privacy_subject::before,
.privacy li .privacy_wrap .privacy_subject::after{
	position: absolute;
	top:48%;
	right: 15px;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #fff;
}
.privacy li .privacy_wrap .privacy_subject::before{
	transform: rotate(0deg);
}
.privacy li .privacy_wrap .privacy_subject::after{
	transform: rotate(90deg);
}
/*area_closeクラスがついたら形状変化*/
.privacy li .privacy_wrap .privacy_subject.area_close::before{
transform: rotate(45deg);
}
.privacy li .privacy_wrap .privacy_subject.area_close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	color: #EF848C;
	font-weight: 500;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #fafafa;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #EF848C;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #EF848C;
}

/*===サンクスページ===*/
.thanks .inner .small p{
	font-size: 0.8rem;
}
.thanks .sbtn a{
	margin-bottom: 20px;
}

/*===倉庫==============================*/
@media (max-width: 960px){
}
@media (max-width: 750px){
}
@media (max-width: 450px){
}

/*Safariのみ*/
::-webkit-full-page-media, :future, :root .class{
	background-attachment: scroll;
}





/*年間行事*/
.card001_e{
	display: flex;
	align-content: flex-start;
	justify-content:space-between;
}
.card001_e figure.event{
	width: calc(100% / 4 - 20px);
	padding: 8px;
	align-self: stretch;
	background:#fffcf0;
	border-radius: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}
.card001_e figure img{
	display: block;
	width: 100%;
	max-width: 150px;
	margin: auto;
	border-radius: 15px;
}
.card001_e figure figcaption{
	width: 100%;
}
.card001_e figure figcaption h3{
	text-align: center;
	color: #6ccef0;
	font-weight: 700;
}
.card001_e figure figcaption h3 span{
	font-size: 200%;
}
.card001_e figure figcaption p{
	padding: 1rem;
	font-size: 1rem;
	line-height: 150%;
}
.card001_e figure figcaption ul{
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}

@media (max-width: 959px){
	.card001_e figure.event{
		width: calc(100% / 3 - 20px);
	}
}
@media (max-width: 750px){
	.card001_e{
		justify-content: space-around;
	}
	.card001_e figure.event{
		width: calc(100% / 2 - 20px);
	}
}
@media (max-width: 450px){
	.card001_e{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		
	}
	.card001_e figure.event{
		width: calc(100%  - 20px);
		margin: 10px;
	}

}

/*contents02*/
.contents02::after{
	content: '';
	width: 30%;
	height: 100%;
	max-width: 200px;
	position: absolute;
	top: -40px;
	right: 2%;
	background: url(../img/bird03.png);
	background-size: contain;
	background-position: top right;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 1;
}
.contents02 .wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
}
.contents02 .wrapper:last-child{
	margin-bottom: 0;
}
.contents02 .wrapper .img{
	position: relative;
	width: 300px;
}
.contents02 .wrapper .img::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: rgb(255, 255, 255) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
	pointer-events: none;
	z-index: 1;
	border-radius: 50%;
}
.contents02 .wrapper .img img{
	border-radius: 50%;
}
.contents02 .wrapper .text{
	width: calc(100% - 340px);
}

.contents02 .wrapper02{
	margin-bottom: 60px;
}

@media (max-width: 750px){
	.contents02 .wrapper{
		flex-direction: column;
	}
	.contents02 .wrapper.reverse{
		flex-direction: column-reverse;
	}
	.contents02 .wrapper .img{
		width: 90%;
		max-width: 300px;
		margin-bottom: 30px;
	}
	.contents02 .wrapper .text{
		width: 100%;
	}
}

/*stitle*/
.stitle02{
	position: relative;
	font-weight: 500;
	font-size: 1.2rem;
	border-bottom: 2px solid #eee;
	margin-bottom: 20px;
}
.stitle02::before{
	content: '';
	position: absolute;
	bottom: -2px;
	width: 100px;
	height: 2px;
	background: #6cc1f0;
}
.stitle02 span{
	color: #6cc1f0;
}


.contents02 .utitle h3{
	font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #f89e7c;
    letter-spacing: 0.13em;
	padding: 0 3px 5px;
    border-bottom: 2px dotted #eee;
}
@media (max-width: 750px){
	.contents02 .utitle h3{
		
	}
}

