@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

*{
	margin: 0;
	padding: 0;
}
html{ font-size: 62.5%; }

body{
	line-height: 1.6;
	font-family: 'Montserrat',YakuHanJP,'Noto Sans Japanese',ヒラギノ丸ゴ ProN W4,Hiragino Maru Gothic ProN,メイリオ,Meiryo,ＭＳ\ Ｐゴシック,MS PGothic,Sans-Serif;
    font-weight: 300;
    font-size: 1.4rem;
	color: #333;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* ================================================
 header
================================================ */
header{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 55px;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 0 5px rgba(0, 0, 0, .2);
	z-index: 9999;
}
header .inner{
	display: flex;
	justify-content: space-between;
}
header .logo a{
	display: block;
	width: 100px;
	height: 40px;
	background: url(../../images/logo.svg) 0 40% no-repeat;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
}

header .menu ul{ list-style: none; }
header .menu ul li ul{ display: none; }
header .menu ul li a{
	display: block;
	text-decoration: none;
}

@media (max-width: 980px){
	header .menu ul li.top{ display: none; }
}
@media (min-width: 901px){
	header .logo{ padding: 8px 0 8px 20px; }
	header .bt_menu{ display: none; }
	header .menu ul{
		display: flex;
		align-items: center;
	}
	header .menu ul li{
		height: 60px;
	}
	header .menu ul li a{
		padding: 17px 15px;
		font-weight: bold;
		color: #333;
		-webkit-transition: .3s;
		transition: .3s;
	}
	header .menu ul li a:hover{
		opacity: .5;
		color: #0be15d;
	}
	header .menu ul li.entry a{
		position: relative;
		padding: 17px 30px 16px;
		color: #fff;
		overflow: hidden;
	}
	header .menu ul li.entry a:after{
		position: absolute;
		content: "";
		top: 0;
		left: -100%;
		width: 200%;
		height: 100%;
		background: #333;
		z-index: -1;
		-webkit-transition: .3s;
	}
	header .menu ul li.entry a:hover{ opacity: 1; }
	header .menu ul li.entry a:hover:after{ left: 0; }
}
@media (max-width: 900px){
	header .inner{ padding: 8px 20px; }
	header .bt_menu{
	    position: relative;
		width: 40px;
		height: 40px;
		z-index: 1;
    }
	header .bt_menu span{
		position: absolute;
		display: block;
		left: 50%;
		width: 30px;
		height: 2px;
		background: #333;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-transition: .3s;
		transition: .3s;
	}
	header .bt_menu span:nth-of-type(1){ top: 25%; }
	header .bt_menu span:nth-of-type(2){ top: 50%; }
	header .bt_menu span:nth-of-type(3){ top: 75%; }
	header .bt_menu.open span{ background: #fff; }
	header .bt_menu.open span:nth-of-type(1){
		top: 35%;
		-webkit-transform: rotate(225deg) translate(7px, -13px);
		transform: rotate(225deg) translate(7px, -13px);
	}
	header .bt_menu.open span:nth-of-type(2){ display: none; }
	header .bt_menu.open span:nth-of-type(3){
		top: 66%;
		-webkit-transform: rotate(135deg) translate(5px, 16px);
		transform: rotate(135deg) translate(5px, 16px);
	}
	header .menu{
		position: fixed;
		display: none;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #333;
		padding: 50px 20px;
		box-sizing: border-box;
	}
	header .menu ul li a{
		position: relative;
		padding: 20px 0;
		color: #fff;
	}
	header .menu ul li a:after{
		position: absolute;
		content: "\f061";
		right: 0;
		font-family: "Font Awesome 5 free";
		font-weight: bold;
	}
	header .menu ul li.entry a{
		margin: 1em 0;
		padding: 1em;
		border: 1px solid #fff;
		text-align: center;
		font-weight: bold;
	}
	header .menu ul li.entry a:after{ right: 10px; }
}

/* ================================================
 main
================================================ */
main{ padding: 55px 0 50px; }
article{ padding: 70px 0; }
section{ padding-bottom: 30px; }

main h2{
	position: relative;
	margin-bottom: 20px;
	padding: 10px 0;
    font-size: 1.3em;
}
main h2:after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: #333;
}
main h3{
	padding-left: 10px;
	border-left: 1px solid #333;
	font-size: 1.1em;
}
main p{ margin: 20px 0; }

@media (min-width: 751px){
	main .inner{
		margin: auto;
		max-width: 1100px;
	}
}

/* ------------------------------------------------
 index
------------------------------------------------ */
#top.eyecatch{
	position: relative;
	height: calc(100vh - 55px);
	background: url(images/fv_top01.jpg) center no-repeat;
	background-size: cover;
	overflow: hidden;
}
#top.eyecatch:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .3;
}
#top.eyecatch .eyecatch_text{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	font-weight: bold;
	color: #fff;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/*
#top.eyecatch .eyecatch_slide{
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #333;
	z-index: 1;
	-webkit-animation: slider 1.5s 1;
	animation: slider 1.5s 1;
}
@-webkit-keyframes slider{
	0%{ width: 0; }
	40%{ left: 0; width: 100%; }
	60%{ width: 100%; }
	100%{ left: 100%; width: 0; }
}
@keyframes slider{
	0%{ width: 0; }
	40%{ left: 0; width: 100%; }
	60%{ width: 100%; }
	100%{ left: 100%; width: 0; }
}
#top.eyecatch .eyecatch_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#top.eyecatch .eyecatch_bg .bg_img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	-webkit-animation: bgfade 30s infinite;
	animation: bgfade 30s infinite;
}
#top.eyecatch .eyecatch_bg .bg_img img{
	height: calc(100vh - 55px);
	object-fit: cover;
	-webkit-animation: bgscale 30s infinite;
	animation: bgscale 30s infinite;
}
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(2) img{ object-position: 30% 0; }
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(3) img,
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(4) img{
	object-position: 40% 0;
}
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(1),
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(1) img{
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
}
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(2),
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(2) img{
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
}
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(3),
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(3) img{
	-webkit-animation-delay: 16s;
	animation-delay: 16s;
}
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(4),
#top.eyecatch .eyecatch_bg .bg_img:nth-of-type(4) img{
	-webkit-animation-delay: 24s;
	animation-delay: 24s;
}
@-webkit-keyframes bgfade{
	0%{ opacity: 0; }
	5%{ opacity: 1; }
	25%{ opacity: 1; }
	30%{ opacity: 0; }
}
@-webkit-keyframes bgscale{
	0%{ -webkit-transform: scale(1); }
	30%{ -webkit-transform: scale(1.1); }
}
@keyframes bgfade{
	0%{ opacity: 0; }
	5%{ opacity: 1; }
	25%{ opacity: 1; }
	30%{ opacity: 0; }
}
@keyframes bgscale{
	0%{ transform: scale(1); }
	30%{ transform: scale(1.1); }
}
*/

.top_message h2:after,
.top_company h2:after{
	width: 0;
	height: 0;
}
.top_message ul,
.top_company ul,
.top_know ul,
.bt_other{
    list-style: none;
}
.top_message ul li a,
.top_company ul li a,
.top_know ul li a,
.bt_other li a,
.bt_entry a{
	display: block;
	text-decoration: none;
}
.top_message ul li a{ position: relative; }
.top_message ul li a img{
	width: 100%;
	object-fit: cover;
}
.top_message ul li:nth-of-type(2) a img{ object-position: 0 20%; }
.top_message ul li a span{
	position: absolute;
	background: #333;
	color: #fff;
}
.top_message ul li a span:after{
	content: "\f061";
	margin-left: 5px;
	font-family: "Font Awesome 5 free";
	font-weight: bold;
}

.top_company h2{ margin-bottom: 0; }
.top_company ul{
	background: #f5f5f5;
	text-align: center;
}
.top_company ul li a .img{
	margin: auto;
	padding: 10px;
    background: #fff;
	border-radius: 100%;
}
.top_company ul li a span{
	position: relative;
	display: inline-block;
	margin-top: 20px;
	line-height: 1.2;
	color: #333;
}
.top_company ul li a span:after,
.top_know ul li a span:after{
	content: "\f0a9";
	margin-left: 5px;
	font-family: "Font Awesome 5 free";
	font-weight: bold;
}

.top_know ul li a span{
	line-height: 1.4;
	color: #333;
}
.top_know ul li a span strong{ display: block; }

.bt_other li a{
	position: relative;
	background: #fff;
	border: 2px solid #333;
	text-align: center;
	color: #333;
	z-index: 0;
}
.bt_other li a:after{
	position: absolute;
	content: "\f0a9";
	right: 20px;
    font-family: "Font Awesome 5 free";
    font-weight: bold;
}

.bt_entry{ margin: 50px auto; }
.bt_entry a{
	position: relative;
	margin: auto;
	padding: 20px;
	max-width: 650px;
	border: 2px solid #333;
	text-align: center;
	font-weight: bold;
	font-size: 2.4em;
	color: #fff;
	overflow: hidden;
}
.bt_entry a:before{
	position: absolute;
	content: "";
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background: #333;
	z-index: -1;
	-webkit-transition: .3s;
	transition: .3s;
}
.bt_entry a:after{
	position: absolute;
	content: "\f061";
	top: 50%;
	right: 20px;
	font-family: "Font Awesome 5 free";
	font-size: 1.4rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (min-width: 751px){
	#top.eyecatch .eyecatch_text{ font-size: 5em; }
	.top_message h2,
	.top_company h2{
		text-align: center;
		font-size: 5em
	}
	.top_message ul{ display: flex; }
	.top_message ul li{ flex: 1; }
	.top_message ul li a span{
		bottom: -15px;
		right: 15px;
		padding: 10px 25px;
	}
    .top_company ul{
    	display: flex;
    	margin-top: -65px;
    	padding: 70px 20px 50px;
    	justify-content: space-between;
    }
    .top_company ul li{
    	flex: 1;
    	margin: 0 1%;
    }
	.top_company ul li a .img{
		width: 200px;
		height: 200px;
	}
	.top_know ul{
		display: flex;
		justify-content: space-between;
	}
	.top_know ul li{ flex: 48% 0 0; }
	.top_know ul li a span strong{
		margin-top: 10px;
		line-height: 1;
		font-size: 2em;
	}
	.bt_other{
		display: flex;
		justify-content: space-between;
	}
	.bt_other li{ flex: 32% 0 0; }
	.bt_other li a{ padding: 25px 20px; }
	.bt_other li a:before{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background: #333;
		z-index: -1;
		-webkit-transition: .3s;
		transition: .3s;
	}
	.bt_other li a:hover{ color: #fff; }
	.bt_other li a:hover:before{ width: 100%; }
	.bt_entry a:hover{ color: #333; }
	.bt_entry a:hover:before{
		left: 100%;
		width: 0;
	}
}
@media (max-width: 750px){
	#top.eyecatch .eyecatch_logo{ width: 90%; }
	#top.eyecatch .eyecatch_text{ font-size: 3em; }
	.top_message h2,
	.top_company h2{
		padding: 0 20px;
		font-size: 4em;
	}
	.top_message ul{ padding-left: 50px; }
    .top_message ul li{ margin-bottom: 1px; }
    .top_message ul li a,
    .top_message ul li a img{ height: 40vw; }
    .top_message ul li a span{
		bottom: 15px;
		right: 0;
		padding: 5px 20px;
    }
    .top_company ul{
    	margin-top: -45px;
	    padding: 70px 0 50px;
	}
    .top_company ul li{ margin: 0 auto 70px; }
    .top_company ul li:last-child{ margin-bottom: 0;}
	.top_company ul li a .img{
		width: 150px;
		height: 150px;
	}
    .top_know ul li a{ display: flex; }
    .top_know ul li a .img{ flex: 70% 0 0; }
    .top_know ul li a span{
    	flex: auto 1 1;
    	padding: 5px;
    	flex-direction: column;
    }
    .top_know ul li:nth-of-type(1) a .img{ order: 2; }
    .top_know ul li:nth-of-type(1) a span{ text-align: right; }
    .top_know ul li:nth-of-type(2) span{ margin-top: auto; }
    .top_know ul li a span strong{ font-size: 1.7em; }
    .bt_other,
    .bt_entry{ padding: 0 20px; }
    .bt_other li{ margin: 15px 0; }
    .bt_other li a{ padding: 20px; }
}

/* ------------------------------------------------
 message
------------------------------------------------ */
.lower{ padding-top: 0; }
.lower .inner{ padding: 20px; }
.lower .eyecatch{
	position: relative;
	height: 180px;
	background-size: cover!important;
}
.lower .eyecatch:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
}
.lower .eyecatch span{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	line-height: 1.2;
	font-weight: bold;
	font-size: 3em;
	color: #fff;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.lower section{
	padding-top: 55px;
	margin-top: -55px;
}
.message .eyecatch{ background: url(images/fv_message.jpg) center 47% no-repeat; }
.message #message .msg_img figure,
.work .work_img{
	position: relative;
}
.work .work_img:after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
}
.message #message .msg_img figure img,
.work .work_img img{
	width: 100%;
	object-fit: cover;
	object-position: 0 10%;
}
.message #message .msg_img figcaption,
.work .work_img h2{
	position: absolute;
	bottom: 15px;
	right: 0;
	padding-right: 20px;
	border-bottom: 1px solid #fff;
	color: #fff;
	z-index: 1;
}
.message #human dl{
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
}
.message #human dl:last-child{ border-bottom: 0; }
.message #human dl dt{ font-weight: bold; }
.message #human dl dd{ color: #999; }

@media (min-width: 751px){
	.lower section .inner{ max-width: 800px; }
	.message .msg_img figure img{ height: 300px; }
}
@media (max-width: 750px){
	.message #message .msg_img,
	.work .work_img{
	    margin: 0 -20px;
	}
	.message #message .msg_img figure img,
	.work .work_img img,
	.work .work_img{
		height: 180px;
	}
}

/* ------------------------------------------------
 company
------------------------------------------------ */
.company .eyecatch{ background: url(images/fv_company.jpg) center no-repeat; }
.company #philosophy .box{
	padding: 20px;
	background: #f5f5f5;
}
.company #philosophy .box ol{
	list-style: none;
	counter-reset: number 0;
}
.company #philosophy .box ol li{
	position: relative;
	margin: 10px 0;
	padding-left: 50px;
}
.company #philosophy .box ol li:before{
	position: absolute;
	counter-increment: number 1;
	content: counter(number) ".";
	left: 0;
}
.company #philosophy .box ol li .sub{ color: #999; }

.company #environment .office,
.company #environment .benefit{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
}
.company #environment .office li,
.company #environment .benefit li{
    margin-bottom: 20px;
}
.company #environment .benefit{ margin-top: 50px; }
.company #environment .benefit li{
	text-align: center;
	font-weight: bold;
}
.company #environment .benefit li .img{
	margin-bottom: 5px;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 100%;
}

@media (min-width: 751px){
	.company #environment .office li{ flex: 48% 0 0; }
}
@media (max-width: 750px){
	.company #philosophy .box{ margin: 0 -20px 50px; }
	.company #environment .benefit li{ flex: 46% 0 0; }
}

/* ------------------------------------------------
 work
------------------------------------------------ */
.work .eyecatch{ background: url(images/fv_work.jpg) center 55% no-repeat; }
.work .work_img{
	position: relative;
	margin: 0 -20px 40px;
	height: 180px;
	overflow: hidden;
}
.work .work_img h2{
	bottom: 0;
	font-size: 1em;
}
.work .work_img h2:after{
	width: 0;
	height: 0;
}

/* ------------------------------------------------
 people
------------------------------------------------ */
.people .eyecatch{ background: url(images/fv_people.jpg) center 60% no-repeat;}
.people_list{ list-style: none; }
.people_list li{ margin: 50px 0; }
.people_list li a{
	position: relative;
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #333;
}
.people_list li a .affiliation{
	position: relative;
	margin-top: -50px;
}
.people_list li a .affiliation span{
	display: inline-block;
	padding: 5px 15px;
	background: #333;
	color: #fff;
}

.interview .fv img{
	width: 100%;
	object-fit: cover;
	object-position: center 15%;
}
.interview .fv h1{
	position: relative;
	padding: 10px 20px;
	background: rgba(0, 0, 0, .5);
	box-sizing: border-box;
	line-height: 1.4;
	font-size: 1.2em;
	color: #fff;
}
.interview .fv .attribute{
	padding: 10px 40px 50px;
	box-sizing: border-box;
	font-weight: bold;
	line-height: 1.4;
	font-size: .8em;
}
.interview section section h2{
	padding: 0 0 0 25px;
	line-height: 1.4;
	font-size: 1.1em;
}
.interview section section h2:after{
	top: 10px;
	bottom: auto;
	width: 20px;
	height: 1px;
}
.interview .interview_img_r,
.interview .interview_img_l{
	position: relative;
	margin: 0 auto 50px;
	max-width: 1100px;
}
.interview .interview_img_r{ text-align: right; }
.interview .interview_img_r:after,
.interview .interview_img_l:after{
	position: absolute;
	content: "";
	background: #f5f5f5;
	z-index: -1;
}

.interview .daily h2,
.interview .weekly h2{
	margin-bottom: 0;
	font-size: 1.1em;
}
.interview .daily h2:after,
.interview .weekly h2:after{
	width: 0;
	height: 0;
}
.interview .daily{
	padding: 30px 0;
	background: #f5f5f5;
}
.interview .daily dl{ display: flex; }
.interview .daily dl dt{
	flex: 60px 0 0;
	font-weight: bold;
}

.interview .weekly{ margin: 50px 0; }

@media (min-width: 801px){
	.people_list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.people_list li{ flex: 48% 0 0; }
	.people_list li a .img{ overflow: hidden; }
	.people_list li a .img img{
		width: 100%;
		height: 300px;
		object-fit: cover;
		-webkit-transition: .3s;
		transition: .3s;
	}
	.people_list li a:hover .img img{
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	.interview .fv img{ height: 400px; }
	.interview .fv h1,
	.interview .fv .attribute{
		max-width: 800px;
	}
	.interview .fv h1{ margin: -20px auto 0; }
	.interview .fv .attribute{ margin: auto; }
	.interview .interview_img_r:after,
    .interview .interview_img_l:after{
	    bottom: -30px;
    	width: 650px;
	    height: 350px;
    }
    .interview .interview_img_r:after{ right: 30px; }
    .interview .interview_img_l:after{ left: 30px; }
}
@media (max-width: 800px){
	.interview .fv img{ height: 200px; }
	.interview .fv h1{ margin: -20px 20px 0; }
	.interview .interview_img_r{ padding-left: 40px; }
	.interview .interview_img_l{ padding-right: 40px; }
	.interview .interview_img_r:after,
    .interview .interview_img_l:after{
	    bottom: -20px;
	    left: 0;
    	width: 100%;
    	height: 90%;
    }
}

/* ------------------------------------------------
 information
------------------------------------------------ */
.information .eyecatch{ background: url(images/fv_information.jpg) center no-repeat; }
.information .eyecatch span,
.faq .eyecatch span{
    font-size: 2em;
}
.information section{ margin: 50px 0; }
.information .recruit th,
.information .recruit td{
	padding: 20px 0;
	vertical-align: top;
}
.information .recruit th{
	width: 100px;
	border-bottom: 1px solid #999;
	text-align: left;
}
.information .recruit td{ border-bottom: 1px solid #ddd; }

.information #flow ol{ list-style: none; }
.information #flow ol li{
	position: relative;
	margin: 20px 0;
	padding: 10px;
	background: #fff;
	border: 3px solid #ddd;
	text-align: center;
	font-weight: bold;
}
.information #flow ol li:before{
	margin-right: 10px;
	font-size: 2em;
	color: #ccc;
}
.information #flow ol li:nth-of-type(1):before{ content: "1."; }
.information #flow ol li:nth-of-type(2):before{ content: "2."; }
.information #flow ol li:nth-of-type(3):before{ content: "3."; }
.information #flow ol li:nth-of-type(4):before{ content: "4."; }
.information #flow ol li:nth-of-type(5):before{ content: "5."; }
.information #flow ol li:nth-of-type(6):before{ content: "6."; }
.information #flow ol li:nth-of-type(7):before{ content: "7."; }
.information #flow ol li:after{
	position: absolute;
	content: "";
    bottom: -40px;
    left: 50%;
    border: 20px solid transparent;
    border-top: 20px solid #ddd;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.information #flow ol li:last-child:after{ border: 0; }

/* ------------------------------------------------
 faq
------------------------------------------------ */
.faq .eyecatch{ background: url(images/fv_faq.jpg) center 45% no-repeat; }
.faq .inner{
	margin: 50px auto;
	max-width: 800px;
}
.faq dl{
	margin: 10px 0;
	background: #f5f5f5;
}
.faq dl dt,
.faq dl dd{
	position: relative;
	padding: 20px 40px;
}
.faq dl dt:before,
.faq dl dd:before{
	position: absolute;
	left: 15px;
	font-weight: bold;
	font-size: 1.1em;
}
.faq dl dt{
	position: relative;
	font-weight: bold;
	cursor: pointer;
}
.faq dl dt:before{ content: "Q"; }
.faq dl dt:after{
	position: absolute;
	content: "\f067";
	top: 20px;
	right: 20px;
	font-family: "Font Awesome 5 free";
}
.faq dl dt.open:after{ content: "\f068"; }
.faq dl dd{
	display: none;
	border-top: 1px solid #ccc;
}
.faq dl dd:before{
	content: "A";
	color: #8ec220;
}

@media (min-width: 751px){
	.faq dl dt{
		cursor: pointer;
		-webkit-transition: .3s;
		transition: .3s;
	}
	.faq dl dt:hover{ background: #eee; }
}

/* ------------------------------------------------
 entry
------------------------------------------------ */
.entry th{
	text-align: left;
	font-weight: normal;
}
.entry td{ border-bottom: 1px solid #ddd; }
.entry input,
.entry select,
.entry textarea{
	width: 100%;
	border: 0;
	box-sizing: border-box;
	font-family: 'Montserrat',YakuHanJP,'Noto Sans Japanese',ヒラギノ丸ゴ ProN W4,Hiragino Maru Gothic ProN,メイリオ,Meiryo,ＭＳ\ Ｐゴシック,MS PGothic,Sans-Serif;
	font-size: 1.1em;
}
.entry input,
.entry textarea{
	padding: 15px 10px;
	background: #eee;
	-webkit-appearance: none;
}
.entry th .must,
.entry th .nini{
	display: inline-block;
	margin-right: 10px;
	padding: 3px 5px;
	vertical-align: middle;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	font-size: .7em;
}
.entry th .must{ background: #c00; }
.entry th .nini{ background: #333; }
.entry input[type=radio],
.entry input[type=checkbox]{
    display: none;
}
.entry .radio,
.entry .checkbox{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.entry .radio .mwform-radio-field,
.entry .checkbox .mwform-checkbox-field{
	flex: 48% 0 0;
}
.entry .radio .mwform-radio-field label,
.entry .checkbox .mwform-checkbox-field label{
	position: relative;
	display: block;
	padding: 10px;
	border-radius: 3px;
	box-sizing: border-box;
}
.entry .radio .mwform-radio-field label:before,
.entry .radio .mwform-radio-field label.checked:after,
.entry .checkbox .mwform-checkbox-field label:before,
.entry .checkbox .mwform-checkbox-field label.checked:after{
	position: absolute;
	content: "";
}
.entry .radio .mwform-radio-field label{
	padding-left: 30px;
	border: 1px solid #ccc;
}
.entry .radio .mwform-radio-field label:before,
.entry .radio .mwform-radio-field label.checked:after{
	border-radius: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.entry .radio .mwform-radio-field label:before{
	left: 8px;
	width: 16px;
	height: 16px;
	background: #fff;
	border: 1px solid #ccc;
}
.entry .radio .mwform-radio-field label.checked:after{
	left: 13px;
	width: 8px;
	height: 8px;
	background: #9be15d;
}
.entry .mw_wp_form .horizontal-item + .horizontal-item{ margin-left: 0; }
.entry select{
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.entry .date select{
	display: inline-block;
	margin-right: 2%;
	width: 30%;
}
.entry .date label select{ margin-right: 5px; }
.entry .checkbox{ flex-wrap: wrap; }
.entry .checkbox .mwform-checkbox-field label{ padding-left: 24px; }
.entry .checkbox .mwform-checkbox-field label:before{
	left: 0;
	width: 16px;
	height: 16px;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.entry .checkbox .mwform-checkbox-field label.checked:before{
	background: #9be15d;
	border-color: #9be15d;
}
.entry .checkbox .mwform-checkbox-field label.checked:after{
	top: 13px;
	left: 6px;
	width: 4px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
}
.entry input[type=file]{
	background: #fff;
	border: 1px solid #ddd;
}
.entry .privacy{
	margin: 50px 0;
	padding: 20px 10px;
	border: 3px solid #ddd;
}
.entry .privacy .ttl{
	margin: 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
	text-align: center;
	font-weight: bold;
}
.entry .privacy .roll{
	padding: 0 20px;
	height: 200px;
	overflow-y: scroll;
}
.entry input[type=submit]{
	padding: 25px 20px;
	background: -webkit-linear-gradient(top left, #9be15d, #00e3ae);
	background: linear-gradient(top left, #9be15d, #00e3ae);
	font-weight: bold;
	color: #fff;
}
.entry .error{
	font-size: .8em;
	color: #c00;
}

@media (min-width: 751px){
	.entry .inner{ width: 800px; }
	.entry th,
	.entry td{
		padding: 20px 0;
	}
	.entry th{
		width: 33%;
		border-bottom: 1px solid #ccc;
		vertical-align: top;
	}
	.entry .radio .mwform-radio-field label,
	.entry .checkbox .mwform-checkbox-field label,
	.entry select,
	.entry input[type=submit]{
		cursor: pointer;
	}
}
@media (max-width: 750px){
	.entry th,
	.entry td{
		display: block;
	}
	.entry th{ padding-top: 20px; }
	.entry td{ padding: 10px 0 30px; }
}

/* =============================================
 footer
============================================= */
footer{
	padding: 20px;
	background: #333;
	color: #fff;
}
footer .footer_bn{
	margin: 20px 0;
	text-align: center;
	font-size: .8em;
}
footer .footer_bn a{
	position: relative;
	display: inline-block;
	padding: 5px 20px;
	border: 1px solid #fff;
	text-decoration: none;
	color: #fff;
}
footer .footer_bn a:after{
	position: absolute;
	content: "";
	top: 50%;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
footer .copyright{
	text-align: center;
	font-size: .7em;
	color: #fff;
}
@media (min-width: 751px){
	footer .footer_bn img{ width: 400px; }
	footer .footer_bn a:hover{ text-decoration: underline; }
}

/* ================================================
 common
================================================ */
.fade,
.lazyload{ opacity: 0; }
.fadeIn,
.lazyloaded{
	opacity: 0;
	-webkit-animation: fade 1s forwards;
	animation: fade 1s forwards;
}
@-webkit-keyframes fade{
	0%{ opacity: 0; -webkit-transform: translate(0, 50px); }
	100%{ opacity: 1; -webkit-transform: translate(0, 0); }
}
@keyframes fade{
	0%{ opacity: 0; transform: translate(0, 50px); }
	100%{ opacity: 1; transform: translate(0, 0); }
}
.menu_list{
	padding: 50px 0;
	list-style: none;
}
.menu_list li a{
	position: relative;
	display: block;
	margin-bottom: 10px;
	padding: 15px;
	background: #fff;
	border: 2px solid #333;
	text-decoration: none;
	text-align: center;
    color: #333;
    z-index: 0;
}
.menu_list li a:after{
	position: absolute;
	content: "\f078";
	right: 20px;
	font-family: "Font Awesome 5 free";
	font-weight: bold;
}
.movie{
	position: relative;
	margin: 30px 0;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.movie iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

@media (min-width: 751px){
	.sp{ display: none; }
	.menu_list{
		display: flex;
		justify-content: space-between;
	}
	.menu_list li{
	    flex: 1;
	    margin: 0 10px;
    }
    .menu_list li a:before{
    	position: absolute;
    	content: "";
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 0;
    	background: #333;
    	z-index: -1;
    	-webkit-transition: .3s;
    	transition: .3s;
    }
    .menu_list li a:hover{ color: #fff; }
    .menu_list li a:hover:before{ height: 100%; }
}
@media (max-width: 750px){
	.pc{ display: none; }
}