@charset "UTF-8";
/*--------------- front（トップページ） ---------------*/
/*==================
front mv sp
====================*/
.home .mv{
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	margin: 6.5rem 0 0;
}
.home .mv::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../images/front/mv_front01.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	 -webkit-animation: zoom 10s 1;
	animation: zoom 15s 1;
	animation-fill-mode: forwards;
}
@keyframes zoom {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
.home .mv_logo{
	position: absolute;
	top: 5.5rem;
	left: 1.5rem;
	animation: mv_logo 2s ease-in-out;
}
.home h1{
	position: absolute;
	top: 15.5rem;
	left: 1.5rem;
	animation: fuwafuwa 2s infinite ease-in-out;
}
@keyframes fuwafuwa {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -20px);
	}
	100% {
		transform: translate(0, 0);
	}
}
@keyframes mv_logo {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(0, 0);
	}
}
/*==================
front mv pc
====================*/
@media (min-width: 600px) {
	.home .mv{
		height: auto;
		margin: 0;
	}
	.home .mv::before{
		background-image: url("../images/front/mv_front01_pc.jpg");
		background-position: top right 30%;
		margin: 11rem 0 0;
		height: 600px;
	}
	@media screen and (-webkit-min-device-pixel-ratio:2),
		(min-resolution: 2dppx){
		.home .mv::before{
			background-image: url("../images/front/mv_front01_pc@2x.jpg");
		}
	}
	.home .mv_logo{
		top: 26%;
		left: 14%;
	}
	.home h1{
		top: 49%;
		left: 14%;
	}
}

@media screen and (min-width: 600px) and (max-width: 1024px){
	.home .mv::before{
		margin: 6.5rem 0 0;
	}
	.home .mv_logo{
		top: 15%;
		left: 4%;
		width: 65%;
	}
	.home h1{
		top: 40%;
		left: 4%;
		width: 65%;
	}
}


/*==================
nav_area01 sp
====================*/
.nav_area01{
	max-width: 320px;
	margin: 0 auto;
	font-weight: bold;
	padding: 6rem 0 0;
	text-align: center;
}
.icon_box01{
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: relative;
	margin-bottom: 2rem;
}
.icon_box01 img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 50px;
}
/*==================
nav_area01 pc
====================*/
@media (min-width: 600px) {
	.nav_area01{
		max-width: 530px;
	}
	.icon_box01{
		width: 110px;
		height: 110px;
	}
	.icon_box01 img{
		max-width: none;
	}
}


/*==================
about sp
====================*/
.about{
	padding: 8rem 1.5rem 10rem;
}
.about h2{
	padding-bottom: 4.5rem;
	text-align: left;
}
.about .top_space01{
	padding: 2.5rem 0 0;
}
.about img{
	border-radius: 10px;
	margin: 5rem 0 0;
	width: 100%;
}
.about_block01{
	border: solid 1px #f5a200;
	background: #fef8ed;
	border-radius: 10px;
	max-width: 650px;
	margin: 3rem auto 0;
	padding: 2rem;
}
/*==================
about pc
====================*/
@media (min-width: 800px) {
	.about{
		padding: 11rem 0 17rem 1.5rem;
		position: relative;
	}
	.about.flex_b{
		flex-wrap: nowrap;
	}
	.about .top_space01{
		padding: 3.5rem 0 0;
	}
	.text_area01{
		max-width: 620px;
		margin: 0 auto 0 0;
	}
	.about img{
		width: 54%;
		max-width: 845px;
		position: absolute;
		bottom: 0;
		right: 0;
		border-radius: 10px 0 0 10px;
	}
	.about_inner01{
		position: relative;
	}
	.about_block01{
		padding: 2.5rem 5rem;
		margin: 9rem auto 0;
	}
}
@media screen and (min-width: 800px) and (max-width: 1364px){
	.about img{
		width: 48%;
	}
	.text_area01 {
		width: 50%;
	}
}
@media (min-width: 1600px) {
	.about img{
		top: 0rem;
		margin-top: 0;
	}
}
/*==================
feature sp
====================*/
.feature{
	position: relative;
	z-index: 0;
	padding: 10rem 1.5rem 6rem;
}
.bg_feature01{
	opacity: 0.15;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
} 
.bg_feature02{
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 4px, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 6px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.feature h3 {
	padding: 1rem 0 0.5rem;
}
.feature_unit01{
	padding-bottom: 6.5rem;
}
.feature_unit01 img{
	margin: 0 auto;
	width: 100%;
	box-shadow: 0px 7px 10px -6px rgba(0,61,71,0.2);/*色によって変更*/
	border-radius: 10px;
}


/*==================
feature pc
====================*/
@media (min-width: 739px) {
	.feature{
		padding: 12.5rem 0 14.5rem;
	}
	.bg_feature01, .bg_feature02{
		height: 50%;
	}
	.feature .flex_b{
		align-items: flex-start;
	}
	.feature_unit01{
		width: 32.3%;
		padding-bottom: 0;
		padding: 0 1.5rem 0;
	}
	.feature_text01{
		max-width: 450px;
		margin: 0 auto;
	}
	.feature h3 {
		padding: 2rem 0 1.5rem;
	}
}
@media screen and (min-width: 739px) and (max-width: 899px){
	.feature_unit01{
		width: 370px;
	}
	.feature_unit01:last-child {
		margin: 0 auto;
	}
}


/*==================
schedule sp
====================*/
.schedule{
	position: relative;
	z-index: 0;
	padding: 10rem 1.5rem 6rem;
}
.bg_schedule01{
	width: 130px;
	height: 90%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	border-radius: 0 15px 0 0;
}
.bg_schedule02, .bg_schedule03{
	display: none;
}
.schedule_unit01 .time{
	font-weight: bold;
	font-size: 3rem;
}
.schedule_text01{
	width: 280px;
	height: 220px;
	display: block;
	margin: 0 auto 5rem;
	text-align: center;
	padding: 3.5rem 2.5rem;
	border-radius: 10px;
	box-shadow: 0px 7px 20px -6px rgba(73,73,0,0.3);/*色によって変更*/
	position: relative;
}
.schedule_unit01 h3{
	font-size: 2.8rem;
	letter-spacing: 0.05em;
	padding-bottom: 0.5rem;
}
.schedule_unit01 h3 span{
	font-size: 2rem;
	padding-right: .5rem;
}
.schedule_text02{
	padding: 1rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0px 7px 20px -6px rgba(73,73,0,0.3);/*色によって変更*/
	width: 280px;
	margin: 0 auto;
	font-size: 1.5rem;
}
.schedule_border{
	position: absolute;
	width: 8rem;
	height: 3px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.schedule_unit01{
	position: relative;
}
.schedule_unit01:first-child .time{
	padding-top: 5rem;
}
.img_schedule{
	position: absolute;
	z-index: 3;
}
.img_schedule01{
	top: 2rem;
	right: 8rem;
	transform: scale(-1, 1);
}
.img_schedule02{
	top: 0;
	right: 0;
}
.img_schedule03{
	top: 6rem;
	left: 1rem;
}
.img_schedule04{
	top: -1rem;
	right: 6rem;
	transform: scale(-1, 1);
}
.img_schedule05{
	top: -1rem;
	right: 8rem;
}
.img_schedule06{
	top: 3rem;
	right: 1rem;
}
/*==================
schedule pc
====================*/
@media (min-width: 600px) {
	.schedule{
		padding: 12.5rem 0 14.5rem;
	}
	.schedule_unit01 h3{
	font-size: 3rem;
	}
	.schedule_unit01{
		padding: 2rem 0 0;
	}
	.schedule_unit02{
		padding: 5rem 0 0;
	}
	.schedule_unit01 .time{
		font-size: 3.5rem;
		text-align: center;
	}
	.bg_schedule01{
		width: 100%;
		height: 140px;
		top: 313px;
		bottom: auto;
		border-radius: 0;
	}
	.schedule_unit01:first-child .time{
		padding-top: 0;
	}
	.img_schedule01{
		top: -6rem;
		right: 10rem;
		transform: revert;
	}
	.img_schedule02{
		top: -3rem;
		right: auto;
		left: 0;
	}
	.img_schedule03{
		top: -5rem;
		left: -4rem;
	}
	.img_schedule04{
		top: -4rem;
		right: 5rem;
		transform: revert;
	}
	.img_schedule05{
		top: -6rem;
		left: -2rem;
	}
	.img_schedule06{
			top: -9rem;
			right: 6rem;
	}
	.schedule_text02 {
		font-size: 1.6rem;
		width: 550px;
		box-shadow: none;
		border-radius: 25px;
		margin: 3rem auto 0;
	}
}
@media screen and (min-width: 600px) and (max-width: 1400px){
	.bg_schedule02{
		display: block;
		position: absolute;
		width: 100%;
		height: 140px;
		top: 710px;
		z-index: -1;
	}
	.schedule .flex_b_pc{
		display: grid;
		grid-template-columns: repeat(auto-fit, 350px);
		justify-content: center;
		width: 100%;
		margin: 0 auto;
	}
	.img_schedule04 {
		top: -2rem;
	}
	.img_schedule05 {
		top: -4rem;
	}
	.img_schedule06 {
		top: -2rem;
		right: -2rem;
	}
}
@media screen and (min-width: 600px) and (max-width: 1049px){
	.schedule .flex_b_pc{
		grid-template-columns: repeat(auto-fit, 300px);
	}
}
@media screen and (min-width: 600px) and (max-width: 899px){
	.bg_schedule03{
		display: block;
		position: absolute;
		width: 100%;
		height: 140px;
		top: 1080px;
		z-index: -1;
	}
}


/*==================
staff sp
====================*/
.staff{
	padding: 10rem 1.5rem 6rem;
}
.staff .sub_ttl01{
	position: relative;
}
.staff .sub_ttl01:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0%;
	display: inline-block;
	width: 5rem;
	height: 1px;
	-webkit-transform: rotate(70deg);
	transform: rotate(70deg);
}
.staff .sub_ttl01:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 5rem;
	height: 1px;
	-webkit-transform: rotate(-70deg);
	transform: rotate(-70deg);
}
.staff_unit01{
	padding-bottom: 6.5rem;
}
.staff .position{
	text-align: center;
	padding: 4.2rem 0 0;
}
.staff_text01{
	padding: 2.5rem 0 3rem;
}
.staff_text02 span{
	font-weight: bold;
}
/*==================
staff pc
====================*/
@media (min-width: 600px) {
	.staff_unit01{
		max-width: 500px;
		width: 32%;
		min-width: 380px;
		margin: 0 1rem;
	}
	.staff_unit01:first-child{
		margin: 0 1rem 0 0;
	}
	.staff_unit01:last-child{
		margin: 0 0 0 1rem;
	}
	.staff .flex_b_pc{
		align-items: flex-start;
	}
	.staff .sub_ttl01:before, 
	.staff .sub_ttl01:after{
		content: none;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1320px){
	.staff_unit01{
		margin: 0;
	}
}
@media screen and (min-width: 600px) and (max-width: 1199px){
	.staff_unit01{
		max-width: 500px;
		min-width: 420px;
		width: 50%;
	}
	.staff .flex_b_pc{
		display: grid;
		grid-template-columns: repeat(auto-fit, 450px);
		justify-content: center;
	}
	.staff_unit01, .staff_unit01:first-child, .staff_unit01:last-child{
		padding: 0;
		margin: 0 auto 8rem;
	}
}


/*==================
contact_area01 sp
====================*/
.contact_area01{
	position: relative;
	padding: 10rem 1.5rem 6rem;
}
.bg_contact_area01 {
	opacity: 0.15;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.contact_area01 h3{
	padding-bottom: 3rem;
}
.contact_unit01{
	width: 100%;
	border-radius: 10px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	padding: 3.5rem 0;
	margin: 0 auto 3rem;
	box-shadow: 0px 7px 20px -6px rgba(0,61,71,0.1);/*色によって変更*/
}
.contact_unit01 a{
	display: block;
	width: 300px;
	height: 60px;
	border-radius: 30px;
	margin: 2rem auto 0;
	position: relative;
	line-height: 3;
}
.contact_unit01 svg {
	width: 28px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 4rem;
	margin: auto;
}
.contact_unit02 svg {
	width: 25px;
}

.required{
	font-size: 1.4rem;
	color: #fff;
	background: #fd5460;
	padding: 0 0.4rem;
	vertical-align: middle;
	margin-left:0.8rem;
	border-radius: 0.3rem
}
.c-form{
	width:100%;
	margin: 0 auto;
}
.c-form th, .c-form td{
	display:block;
	width:auto;
}
.c-form th{
	padding: 1rem 1.1rem 1rem 0;
	margin-bottom: 0.6rem;
	margin-top: 1.6rem;
	text-align: left;
	font-size: 1.6rem;
	font-weight: bold;
}
.c-form td .text,
.c-form td .text2,
.c-form td .text3,
.c-form td.calendar input,
.c-form span.time select,
.c-form span.minutes select{
	background-color: #f2f4f7;
	border: 1px solid #cccccc;
	width: 100%;
	padding: 1.5rem;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 1.6rem;
	margin-bottom: 1.6rem;
}
/*カレンダー*/
.c-form td.calendar input{
	width: 80%;
	min-width: 250px;
	height: 52px;
}
.c-form span.time select, .c-form span.minutes select{
	width: 120px;
	height: 52px;
}
.c-form span.time-name {
	margin: 3rem 1rem;
}
.c-form td .text2{
	width: 25rem;
}
.c-form td .text3 {
	width: 8rem;
	margin-right: 1rem;
}
.c-btn {
	display: block;
	color: #fff;
	background: #f49000;
	width: 300px;
	height: 60px;
	font-weight: bold;
	padding: 1rem 2rem;
	margin: 15px auto 2rem;
	font-size: 1.6rem;
	border: none;
	border-radius: 30px;
}
.c-btn:hover{
	opacity: 0.8;
	transition: .4s;
}
.contact_text01{
	font-size: 1.4rem;
	padding-bottom: 3rem;
}
.thanks_text01{
	font-size: 1.6rem;
	padding-bottom: 2rem;
}

/*エラーメッセージ*/
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {/* 送信ボタン下未入力警告 */
	background:#f5cece;
	color:#cc0909;
	border:1px solid #cc0909!important;
	line-height: 2;
	padding: 3rem 0 3rem 7rem;
	width: 520px;
	position: relative;
	bottom: -6rem;
	border-radius: 3px;
	margin: -6rem auto 10rem;
	font-size: 1.5rem;
}
.wpcf7 form.invalid .wpcf7-response-output::before, .wpcf7 form.unaccepted .wpcf7-response-output::before {
	background: url("../images/common/error.png") no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 30px;
	width: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 2.5rem;
	margin: auto;
}
.wpcf7-not-valid-tip {
	padding-top: 1rem;
}
td.calendar .wpcf7-not-valid-tip {
	padding-top: 0;
	padding-bottom: 1.5rem;
}

/*入力エラーフォームのスタイルを変更*/
.wpcf7 .c-form td .wpcf7-not-valid.text,
.wpcf7 .c-form td .wpcf7-not-valid.text2,
.wpcf7 .c-form td .wpcf7-not-valid.text3,
.wpcf7 .c-form td.calendar input.wpcf7-not-valid,
.wpcf7 .c-form span.time select.wpcf7-not-valid,
.wpcf7 .c-form span.minutes select.wpcf7-not-valid{
	background: #fae6e6;
	border: solid 1px #cc0909;
}
.wpcf7 .check_block01 .wpcf7-not-valid .wpcf7-list-item-label::before{
	background: #fae6e6;
	border: solid 1px #cc0909;
}
.c-form td.calendar{
	position: relative;
	margin-bottom: 3rem;
}
.c-form td.calendar .wpcf7-not-valid-tip {
	position: absolute;
	bottom: 5.5rem;
	left: 10rem;
	width: 250px;
}
.check_block01 input[type="checkbox"] {
	opacity: 0; /*デフォルトのチェックボックスを見えなくする*/
	position: absolute;
}
.check_block01 .wpcf7-list-item-label::before {
	/*チェックボックスのデザイン*/
	border: 1px solid #cccccc;
	background-color: #f2f4f7;
	content: "";
	display: inline-block;
	height: 30px;
	margin: 10px 10px 10px 0;
	position: relative;
	top: -1px;
	vertical-align: middle;
	width: 30px;
	border-radius: 3px;
}
.check_block01 input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	/*チェックアイコン*/
	background: url("../images/common/check.png") no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	top: 0.3rem;
	left: 2.1rem;
}
.check_block01 input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
	/*チェックしたボックスの背景色を設定*/
	background-color: #5887da;
}
.check_text01{
	text-align: center;
	padding: 1.5rem 0;
}
.check_text01 a{
	border-bottom: solid 1px #334751;
}


/*プライバシーポリシー*/
/* スクロールバーの幅 */
.scroll_box01::-webkit-scrollbar {
	width: 10px;
}
/* スクロールバー背景色 */
.scroll_box01::-webkit-scrollbar-track {
	background: #f2f4f7;
	border-radius: 5px;
}
/* スクロールバーのつまみの色 */
.scroll_box01::-webkit-scrollbar-thumb {
	border-radius: 6px;
	background: #cdd5e1;
}
.scroll_box01{
	width: 100%;
	height:240px;
	padding: 3rem 1.5rem;
	margin: 5rem auto;
	background: #f2f2f2;
	border: solid 1px #d9dfe8;
	overflow-y: scroll;
	border-radius: 5px;
}
/* プライバシーポリシー本文調整 */
.p_ttl01{
	font-weight: bold;
}
.pp_area .text_block01{
	padding-top: 2.7rem;
}
.p_ttl02{
	padding-bottom: .8rem;
}
.p_text_bottom_blank{
	padding-bottom: 1.5rem;
}
.pp_area a {
	word-wrap: break-word;
	text-decoration: underline;
}

@media (max-width: 599px) {
	.c-form th, .c-form td{
		display: block;
		width: auto;
		padding-left: 0;
	}
	.c-form td .text, .c-form td .text2, .c-form td .text3{
		width: 100%;
		margin: 0 0 2rem;
	}
	/*エラーメッセージ*/
	.wpcf7 form.invalid .wpcf7-response-output,
	.wpcf7 form.unaccepted .wpcf7-response-output {/* 送信ボタン下未入力警告 */
		padding: 6rem 1.5rem 2rem;
		width: 300px;
		left: auto;
	}
	.wpcf7 form.invalid .wpcf7-response-output::before, .wpcf7 form.unaccepted .wpcf7-response-output::before {
		top: 1.5rem;
		bottom: auto;
		left: 0;
		right: 0;
	}
}
/*==================
contact_area01 pc
====================*/
@media (min-width: 600px) {
	.contact_area01 .flex_b_pc{
		max-width: 900px;
		margin: 0 auto;
	}
	.contact_unit01{
		width: 420px;
	}
	.contact_area01 h3{
		font-size: 3rem;
		padding-bottom: 7rem;
	}
	.contact_unit01 a {
		width: 320px;
	}
	
	.c-form th{
		font-size: 1.8rem;
	}
		.contact_text01{
		font-size: 1.5rem;
	}
	.thanks_text01{
		font-size: 1.8rem;
	}
	.c-form td.calendar input {
		width: 220px;
	}
	.c-form span.time select{
		margin-left: 2rem;
	}
	.c-form td.calendar .wpcf7-not-valid-tip{
		bottom: -4rem;
		left: 0;
	}
}



/*--------------- 404（エラーページ） ---------------*/
/*==================
error404_page sp
====================*/
.error404_page{
	width: 100%;
	height: 995px;
	padding: 12rem 1.5rem 17rem;
	position: relative;
	z-index: 0;
	text-align: center;
}
.error404_back{
	width: 100%;
	height: 100%;
	opacity: 0.15;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.error404_back::before{
	content: "";
	background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 4px, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0.5) 6px);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}
.error_logo01{
	display: block;
	margin: 0 auto 4.5rem;
	width: 240px;
}

.error_top_btn01{
	display: block;
	background-color: rgba(244, 144, 0, 0.9);
	border: solid 1px #fff;
	border-radius: 30px;
	font-weight: bold;
	width: 300px;
	height: 60px;
	line-height: 3.7;
	color: #fff;
	margin: 4.5rem auto 9rem;
	position: relative;
	
}
.error_top_btn01::after {
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: solid 0.1rem #fff;
	border-right: solid 0.1rem #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 40%;
	right: 14%;
}

/*==================
404_page pc
====================*/
@media (min-width: 600px) {
	.error404_page {
		padding: 22rem 1.5rem 17rem;
	}
	.inner_404{
		max-width: 880px;
		margin: 0 auto;
	}
	.error_top_btn01{
		width: 320px;
	}
	.error_logo01 {
		margin: 0 auto 7.5rem;
		width: 280px;
	}
}