@charset "utf-8";
/*@import url(https://fonts.googleapis.com/css?family=Rajdhani);*/
/* CSS Document */

/*------------------------------------------
base
------------------------------------------*/



:root {
	--radius: 30px;
	--padding: 20px;
	--maxwidth: 1280px;
	--width: 1024px;
	--color: #1d1d1d;
	--blue: #1276cb;
	--pink: #ec8db5;
	--gray: #cdcdcd;
	
	
}


.clearfix::after {
  content: "";
  display: block;
  clear: both;
}




@media (min-width: 768px) {
	.pc{display: block;}
	.sp{display: none;}
}

@media (max-width: 767px) {
	.sp{display: block;}
	.pc{display: none;}
}



html{
	background: #fffcf6;
}

body{
	padding: 0;
	margin: 0;
	color: var(--color);
	font-size: 18px;
	line-height: 200%;
	letter-spacing: 0;
	
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	
	background: url("../../images/back_top.webp") top center no-repeat;
	background-size:contain;
}

#body_back{
	background: url("../../images/back_bottom.webp") bottom center no-repeat;
	background-size: contain;
}





p{
    margin-bottom: 1.5em;
}

.row{
	padding-left: 0;
	padding-right: 0;
}

small{
	/*display: block;*/
	line-height: 150%;
    font-size: 0.7em;
}



.dotted_line{
	border-bottom: var(--color) dotted 1px;
}

.object-fit-img {
  object-fit: contain;
  font-family: 'object-fit: contain;'
}
.object-fit-img {
  object-fit: cover;
  object-position: bottom;
  font-family: 'object-fit: cover; object-position: bottom;'
}


.svg-icon{
	display: none;
}


.big{
	font-size: 150%;
}

.btn_fade{
	transition: 0.2s;
	cursor: pointer;
}

.btn_fade:hover{
	opacity: 0.5;
}


img.img-responsive{
	width: auto;
	max-width: 100%;
}


.red{
	color: #8C2E30;
}

.small{
	font-size: 80%;
}


.text_center{
	text-align: center;
}
video {
  
	filter: drop-shadow(0px 0px rgba(0,0,0,0));


	outline: none;
	border: none;


}


.e_font{
	font-family: "ab-tombo-bold", sans-serif;
	font-weight: 400;
	font-style: normal;

}


/*-----------------------------
modal-container
-------------------------------*/


#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, .6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1010;
}

#modal-container > div {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

#modal-container > div > img {
    max-width: calc(100vw - 30px);
    max-height: calc(100vh - 30px);
}





/*-------------------------------------
btn_p
-------------------------------------*/
.btn_p a{
	display: block;
	background: var(--pink);
	border: var(--blue) solid 3px;
	border-radius: 40px;
	padding: 0.5em 0;
	text-decoration: none;
	font-size: 25px;
	font-weight: 600;
	color: #fff;
	position: relative;
	transition: 0.2s;
	width: 250px;
	margin: 0 auto;
	text-align: center;
}
.btn_p a span{
	color: var(--blue);
	position: absolute;
	right: 20px;
}

.btn_p a:hover{
	background: var(--blue);
}
.btn_p a:hover span{
	color: var(--pink);
}


/*-------------------------------------
line
---------------------------------------*/

hr.line {
	display: block;
	height: 2em;
	width: 100%;
	border: none;
	margin: 100px 0;
	background: url("../../images/line.png") center no-repeat;
	background-size: contain;
}



/*-------------------------------------
flexbox
---------------------------------------*/
.flexbox{
    display: flex;
    flex-wrap: wrap;
}




/*--------------------------------------
border_box
---------------------------------------*/

.border_box{
	border: #d9d9d9 solid 1px;
	padding: calc(var(--padding) * 2);
	/*border-radius: var(--radius);
	margin: 40px 0;*/
}





/*-------------------------------------
table1
---------------------------------------*/


.table1 table th,
.table1 table td,
.table2 table th,
.table2 table td{
	display: block;
	text-align: left;
	padding: 0 0.8em;
}

.table1 table td,
.table2 table td{
	margin-bottom: 2em;
}


.table1 table th{
	background: #e7f1fa;
}

.table2 table th{
	background: #fae7ee;
}









/*------------------------------------
dl1
--------------------------------------*/
.dl1 dd{
	margin-bottom: 20px;
}





/*-------------------------------------
padding
-------------------------------------*/
.padding{
	padding: 0 30px;
}



/*-------------------------------------
padding_inner
-------------------------------------*/
.padding_inner{
    padding: 1em;
}

.padding_inner ul{
    margin: 0;
    padding-left:1.5em;
}

.small_text{
    font-size: 0.9em;
    line-height: 1.5em;
}







/*------------------------------------
radius
------------------------------------*/
img.radius{
	border-radius: 20px;
}



/*------------------------------------
border
------------------------------------*/
img.border{
	border: var(--blue) solid 1px;
}





/*-------------------------------------
main_box
-------------------------------------*/
#main_box{
	display: grid;
	grid-template-columns: 1fr 480px 1fr;
}

#main_box #left_box,
#main_box #right_box{
	padding: 80px;
}


#main_box #center_box{
	width: 480px;
	margin: 100px 0;
	
	background: #fff;
	box-shadow: 0 0 10px #97896e24;
	border-radius: 20px;
	
}

@media (max-width: 1199px) {
	#main_box{
		grid-template-columns: 1fr;
	}
	

	#main_box #center_box{
		margin: 100px auto;
	}
	
	#main_box #left_box, #main_box #right_box{
		display: none;
	}
}

@media (max-width: 480px) {
	#main_box #center_box{
		width: 100%;
		margin: 0 auto;
		border-radius: 0;
	}
}






/*-------------------------------------
header
-------------------------------------*/

header{
	position: fixed;
}
header h1{
	margin: 0;
	padding: 0;
}

/*-------------------------------------
nav
-------------------------------------*/


.nav ul,
.nav ul li{
	margin: 0;
	padding: 0;
	list-style: none;
}


.nav ul{
	margin-top: 40px;
}

.nav ul li a{
	font-size: 20px;
	padding: 0.5em;
	text-decoration: none;
	line-height: 3em;
	color: var(--color);
	font-weight: 900;
	position: relative;
}

.nav ul li a span{
	position: absolute;
	background: var(--pink);
	display: block;
	z-index: -1;
	width: 0%;
	height: 100%;
	top: 0;
	left: 0;
	transition: 0.2s;
}

.nav ul li a:hover {
	color: #fff;
}
.nav ul li a:hover span{
	width: 100%;	
}

.nav .close{
	margin: 0;
	display: none;
}

#center_box .nav.show{
	display: block;
}

#center_box .nav{
	transition: 0.2s;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: #1276cbeb;
	width: 100%;
	height: 100vh;
	z-index: 100;
}



#center_box .nav .close{
	display: block;
	position: fixed;
	top: 50px;
	right: 50px;
	font-size: 30px;
	color: #fff;
	margin: 0;
}


#center_box .nav ul{
	position: fixed;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	margin: 0;
}


#center_box .nav ul li{
	text-align: center;
}

#center_box .nav ul li a{
	color: #fff;
}

/*------------------------------------
header_box
------------------------------------*/

#center_box #header_box{
	background: #fff;
	border-radius: 20px 20px 0 0 ;
	height: 40px;
	padding: 10px 30px;
	display: flex;
	justify-content: space-between;
}

#center_box #header_box #logo{
	margin: 0;
	padding: 0;
}

#center_box #header_box #logo img{
	height: 40px;
}

#header_box #nav_border{
	width: 40px;
	height: 100%;
	position: relative;
}

#header_box #nav_border p{
	display: block;
	margin: 0;
	background: var(--color);
	width: 100%;
	height: 4px;
	border-radius: 4px;
	
	position: absolute;
	right: 0;
}

#header_box #nav_border p:nth-child(1){top: 4px;}
#header_box #nav_border p:nth-child(2){top: 18px;}
#header_box #nav_border p:nth-child(3){bottom: 4px;}

@media (max-width: 480px) {
	#center_box #header_box{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		width: calc(100% - 30px  - 30px );
		border-radius: 0;
	}
}


/*------------------------------------
main_img
------------------------------------*/

#center_box #main_img{
	height: 740px;
	background:url("../../images/main_visual_back.webp") repeat-y;
	background-size: cover;
    background-position: 0 0;
    -webkit-animation: bgroop 1s linear infinite;
    animation: bgroop 20s linear infinite;
	position: relative;
}




@-webkit-keyframes bgroop {
    from {
        background-position: 0  0;
    }
    to {
        background-position: 0 -800px;
    }
}
@keyframes bgroop {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 -800px;
    }
}

#center_box #main_img .flash{
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


#center_box #main_img .flash img{
	height: 100%;
	width: 100%;
}

#center_box #main_img .bottom_line{
	margin: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	line-height: 0;
}


#center_box #main_img .text_box{
	position: absolute;
	top: 0;
	left: 5%;
	width: 95%;
	padding-top: 140px;
	color: #fff;
}


#center_box #main_img .text_box .logo{
	text-align: center;
}


#center_box #main_img .text_box p{
	margin: 0;
	padding: 10px 0;
}


#center_box #main_img .text_box .text1,
#center_box #main_img .text_box .text3{
	font-size: 60px;
}

#center_box #main_img .text_box .text2 span{
	line-height: 0;
	display:block;
	float: left;
	padding-right: 20px;
}

#center_box #main_img .text_box .text3{
	clear: both;
	text-align: right;
}


#center_box #main_img .text_box .text4 {
	margin: 0;
	display: block;
	padding-top: 40px;
}

#main_img .text_box .text4 span{
	font-weight: 900;
	background: var(--pink);
	padding: 0.5em;
	font-size: 16px;
}


@keyframes main_img_text1 {
	0% {
		opacity: 0;
		margin-top: -20px;
	}

	90% {
		opacity: 1;
		margin-top: 10px;
	}
	100% {
		opacity: 1;
		margin-top: 0;
	}
}

@keyframes main_img_text2 {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
#center_box #main_img .text_box .text1,
#center_box #main_img .text_box .text2 span,
#center_box #main_img .text_box .text3,
#center_box #main_img .text_box .text4{
	opacity: 0;
	margin-top: -20px;
	animation-fill-mode: forwards;
	animation-duration: 0.2s;
}

#center_box #main_img .text_box .text1{
	animation-delay: 1.5s;
	animation-name: main_img_text1;
}

#center_box #main_img .text_box .text2 span:nth-child(1){
	animation-delay: 2s;
	animation-name: main_img_text1;
}

#center_box #main_img .text_box .text2 span:nth-child(2){
	animation-delay: 2.1s;
	animation-name: main_img_text1;
}
#center_box #main_img .text_box .text2 span:nth-child(3){
	animation-delay: 2.2s;
	animation-name: main_img_text1;
}

#center_box #main_img .text_box .text3{
	animation-delay: 2.7s;
	animation-name: main_img_text1;
}

#center_box #main_img .text_box .text4{
	animation-delay: 3.5s;
	animation-name: main_img_text2;
}




/*------------------------------------
main
------------------------------------*/
main{

}





/*------------------------------------
container
------------------------------------*/
#container {
	width: 100%;
	margin: 0 auto;
}

#container article{
	margin-bottom: 100px;
}

#container article:last-child{
	margin-bottom: 0;
}


/*------------------------------------
h
------------------------------------*/

h2,h3{
	font-weight: normal;
}


.section_h2{
	color: var(--blue);
	font-weight:900;
	font-size: 30px;
	line-height: 0.8em;
}

.section_h2 span{
	font-size: 14px;
	font-weight: 400;
}


.section_h3 span{
	font-weight: 600;
	border-bottom: var(--blue) solid 2px;
	font-size: 18px;
}




/*------------------------------------
flex_box
------------------------------------*/
.flex_box{
	display: flex;
    gap: var(--padding);
	flex-flow: wrap;
	align-items: stretch;
}

.flex_box .box{
	flex: 1;
}






/*------------------------------------
grid_box
------------------------------------*/


.grid_box{
	display: grid;
    gap: var(--padding);
}


.grid_box.grid_box_1-1{
	grid-template-columns: 1fr 1fr;
}

.grid_box.grid_box_05-1{
	grid-template-columns: 0.5fr 1fr;
}
.grid_box.grid_box_1{
	grid-template-columns: 1fr;
}
.grid_box.grid_box_2{
	grid-template-columns: 1fr 1fr;
}
.grid_box.grid_box_3{
	grid-template-columns: 1fr 1fr 1fr;
}

.grid_box.grid_box_4{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}






/*------------------------------------
radius_box
------------------------------------*/

.radius_box{
	border-radius: var(--radius);
}




/*------------------------------------
white_box
------------------------------------*/

.white_box{
	background: #fff;
	color: #171717;
	padding: 40px;
	margin-bottom: 80px;
}







/* text_grow
-----------------------------------*/

.text_grow{
	text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 6px #fff;
}



/* text_bold
-----------------------------------*/
.text_bold{
	font-weight: 900;
}





/*----------------------------------
about
------------------------------------*/
#about video{
	margin-top: 50px;
	display: block;
}
#about_photo{
	background: url("../../images/about_back.webp") center no-repeat;
	background-size: cover;
	padding: 50px 0;
}




/*----------------------------------
interview
------------------------------------*/
#interview .staff_list{
	margin: 40px 0;
}

#interview img.staff1{border: #c6e5ff solid 3px;}
#interview img.staff2{border: #dabaff solid 3px;}
#interview img.staff3{border: #ffcae0 solid 3px;}
#interview img.staff4{border: #cce1aa solid 3px;}
#interview img.staff5{border: #76b4e1 solid 3px;}

#interview .box.staff1{background: #c6e5ff;}
#interview .box.staff2{background: #dabaff;}
#interview .box.staff3{background: #ffcae0;}
#interview .box.staff4{background: #cce1aa;}
#interview .box.staff5{background: #76b4e1;}

#interview .interview_box .box.staff1:after{background: #c6e5ff;}
#interview .interview_box .box.staff2:after{background: #dabaff;}
#interview .interview_box .box.staff3:after{background: #ffcae0;}
#interview .interview_box .box.staff4:after{background: #cce1aa;}
#interview .interview_box .box.staff5:after{background: #76b4e1;}



#interview .grid_box .box p{
	margin: 0;
}

#interview .grid_box .box .name_p{
	line-height: 1em;
}

#interview .grid_box .box .text_p{
	margin-top: 1em;
	font-size: 14px;
	line-height: 1.5em;
}



#interview .interview_box {
	margin-top: 80px;
}

#interview .interview_box h3{
	text-align: center;
	color: var(--blue);
	border-top: var(--blue) 6px dotted;
	border-bottom: var(--blue) 6px dotted;
	padding: 20px 0;
	font-weight: 600;
}
#interview .interview_box h3 span{
	display: block;
	margin-top: -40px;
	font-size: 40px;
	margin-bottom: 10px;
}

#interview .interview_box h3 span strong{
	background: #fff;
	padding: 10px;
}


#interview .interview_box .box img{
	border-radius: 50%;
}

#interview .interview_box .box:last-child{
	position: relative;
	border-radius: 10px;
	padding: 20px;
	font-size: 14px;
	line-height: 1.8em;
}

#interview .interview_box .box:last-child:after{
	display: block;
	content: "";
	display: block;
	
	position: absolute;
	top: 40px;
	left: -6px;
	width: 16px;
	height: 16px;
	transform: rotate(-45deg);
}




/*----------------------------------
gallery
------------------------------------*/

.gallery_box{
	margin-top: 20px;
}
.gallery_box img{
	vertical-align:top;
	transition: 0.2s;
	cursor: pointer;
}

.gallery_box img:hover{
	opacity: 0.5;
}

.gallery_box .box{
	position: relative;
}

.gallery_box .box span{
	position: absolute;
	bottom: 0px;
	right: 10px;
	opacity: 0.5;
}





/*----------------------------------
benefits
------------------------------------*/

#benefits #carousel {
	position: relative;
}
#benefits #carousel .inner{
	overflow-x: hidden;
	margin: 20px;
}
#benefits #carousel .img_box {
	display: flex;
	width: calc(100% * 8);
}

#benefits #carousel .img_box p{
	margin: 0;
}

#benefits #carousel .prev,
#benefits #carousel .next{
	background: var(--pink);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	color: #fff;
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transition: 0.2s;
	cursor: pointer;
}

#benefits #carousel .prev{
	left: 0;
}

#benefits #carousel .next{
	right: 0;
}


#benefits #carousel .prev:hover,
#benefits #carousel .next:hover{
	opacity: 0.5;
}










/*------------------------------------
flow
------------------------------------*/
#flow .flow_box{
	padding-left: 20px;
}

#flow .flow_box .box{
	position: relative;
	border-left: var(--blue) 4px dotted;
	padding-left: 20px;
	padding-bottom: 40px;
}




#flow .flow_box .box p{
	margin: 0;
}
#flow .flow_box .box .number{
	position: absolute;
	display:block;
	width: 30px;
	height: 30px;
	background: var(--blue);
	border-radius: 50%;
	text-align: center;
	color: #fff;
	line-height: 30px;
	
	top: 0;
	left: -18px;
}


#flow .flow_box .box:last-child{
	border: none;
	padding-left: calc(20px + 4px);
}

#flow .flow_box .box:last-child .number{
	left: calc(-18px + 4px);
}


/*----------------------------------
js-animation
------------------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}














/*------------------------------------
address
------------------------------------*/

address{
	color: #a8a8a8;
	text-align: center;
	font-size: 12px;
	font-style: normal;
	padding: 20px 0;
}







/*------------------------------------
.content #main_box
------------------------------------*/
body.content {
	background-size: cover;
	min-height: 100vh;
}
.content #main_box{
	display: block;
	padding: 80px 0;
}
.content #main_box #center_box{
	margin: 0 auto;
	width: 100%;
	max-width: 940px;
}



/*-------------------------------------
cp_form
-------------------------------------*/
.cp_form,
.cp_form table{
	width: 100%;
}

.cp_form table th,
.cp_form table td{
	display: block;
}
.cp_form table th{
	text-align: left;
}

.cp_form table .required{
	color: red;
	font-size: small;
}

.cp_form table input,
.cp_form table textarea{
	width: calc(100% - 2em);
	padding: 1em;
	border: var(--gray) solid 1px;
	border-radius: 10px;
}

.cp_form .btn_p{
	text-align: center;
}
.cp_form .btn_p input{
	border: none;
	
	display: block;
    background: var(--pink);
    border: var(--blue) solid 3px;
    border-radius: 40px;
    padding: 0.5em 0;
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    position: relative;
    transition: 0.2s;
    width: 250px;
    margin: 0 auto;
    text-align: center;
	
	cursor: pointer;
}


.cp_form .btn_p input:hover{
	background: var(--blue);
}

.btn_prev{
	text-align: center;
}

.btn_prev input{
	border: none;
	background: none;
	text-decoration: underline;
	cursor: pointer;
}
/*------------------------------------
footer
------------------------------------*/

footer{
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 300px;
}

footer .qr{
}



.tel_p{
	text-align: center;
}
.tel_p .tel{
	font-size: 36px;
}




/*-------------------------------------
loding
-------------------------------------*/
#loding{
	position: fixed;
	z-index: 1050;
	width: 100%;
	height: 100%;
	background:#fff;
	text-align:center;
	color:#ccc;
	top:0;
	left: 0;
}


#loding{
	animation:loding_delet 1s ease-in-out 0.5s 1 normal forwards;
}


@keyframes loding_delet{
	/*0%{ opacity: 1;}
	100%{ opacity: 0; display: none; }*/
	
	0%{ opacity: 1; top: 0; }
	100%{ opacity: 0; top: -1000px; display: none; }
}





@keyframes loding_delet_logo{
	0%{ margin-top: 0px;}
	100%{ margin-top: -100px;}
}



#loding .dot{
	display: flex;
	justify-content: center;
	gap:20px;
	
	
	position: fixed;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	
	animation:loding_delet_pop 1s ease-in-out 0.5s 1 normal forwards;
}

#loding .dot p{
	margin: 0;
	width: 10px;
	height: 10px;
	background: var(--blue);
	border-radius: 50%;
	
	margin-top:10px;
}


#loding .dot p:nth-child(1)	{animation:pop 1s ease-in-out 0s infinite;}
#loding .dot p:nth-child(2)	{animation:pop 1s ease-in-out .2s infinite;}
#loding .dot p:nth-child(3)	{animation:pop 1s ease-in-out .4s infinite;}
#loding .dot p:nth-child(4)	{animation:pop 1s ease-in-out .6s infinite;}
#loding .dot p:nth-child(5)	{animation:pop 1s ease-in-out .8s infinite;}


@keyframes pop{
	0%{ margin-top:10px;}
	20%{ margin-top:0px; }
	30%{ margin-top:10px;}
}


@keyframes loding_delet_pop{
	0%{ margin-top: 0px;}
	100%{ margin-top: -100px;}
}




