@charset "utf-8";
@import url("base.css");
@import url("https://use.fontawesome.com/releases/v5.6.3/css/all.css");
/* CSS Document */

/* ---------------------------------------------------------------------

		common

--------------------------------------------------------------------- */
body{
	min-width: 1200px;
}

/*		wrap
---------------------------------------------------*/
#wrap{
	padding-top: 100px;
}

/*		any
---------------------------------------------------*/
.content{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}


/* ---------------------------------------------------------------------

		header

--------------------------------------------------------------------- */
header{
	width: 100%;
	height: 100px;
	padding: 20px 20px;
	position: fixed;
	border-bottom: 3px solid #f0b741;
	background: #fff;
	transition: all 0.2s;
	top: 0;
	left: 0;
	z-index: 10;
}
header section{}
header section .content{
	height: 60px;
	max-width: none;
	display: flex;
	justify-content: space-between;
}
header section .content > div{}
header section .content .logo{
	display: flex;
	align-items: center;
}
header section .content .logo h1{}
header section .content .logo h1 a{
	display: flex;
	align-items: center;
	transition: all 0.2s;
}
header section .content .logo h1 a img{
	width: auto;
	height: 100%;
	max-height: 50px;
}
header section .content .logo h1 a:hover{
	opacity: 0.6;
}
header section .content .h_nav{
	display: flex;
	align-items: center;
}
header section .content .h_nav nav{}
header section .content .h_nav nav ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
header section .content .h_nav nav ul li{
	padding: 0 15px;
	transition: all 0.2s;
}
header section .content .h_nav nav ul li a{
	height: 50px;
	padding: 0 4px;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 500;
	color: #333;
	line-height: 50px;
	text-decoration: none;
	transition: all 0.2s;
}
header section .content .h_nav nav ul li a:hover{
	color: #e4722a;
}
header section .content{}


/*		#btn_hnav
---------------------------------------------------*/
#btn_hnav{
	width: 40px;
	height: 40px;
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	color: #aaa;
	z-index: 100;
	text-indent: -9999px;
	cursor: pointer;
}
#btn_hnav::before{
	content: "\f0c9";
	font-family: "font awesome 5 free";
	font-weight: 600;
	font-size: 2rem;
	text-align: center;
	line-height: 30px;
	text-indent: 0;
	width: 30px;
	height: 30px;
	margin-left: -15px;
	margin-top: -15px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}
#btn_hnav:hover{
	color: #333;
}



/* ---------------------------------------------------------------------

		footer

--------------------------------------------------------------------- */
footer{
	background: #eee;
}

/*		f_msad
---------------------------------------------------*/
footer #f_msad{
	background: #00655a;
	color: #fff;
}
footer #f_msad .content{}
footer #f_msad .content > div{
	width: 100%;
}
footer #f_msad .content .ttl{
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer #f_msad .content .ttl > *{
	width: 80%;
}
footer #f_msad h1{
	font-size: 2.4rem;
	font-weight: 300;
	color: #f7dd19;
	text-align: center;
}
footer #f_msad h1 span{}
footer #f_msad h1 + p{
	margin: 10px 0 0;
	text-align: center;
}
footer #f_msad ul.ins_list{
	margin: 20px 0 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
}
footer #f_msad ul.ins_list li{
}
footer #f_msad ul.ins_list li img{
	width: 100%;
	height: auto;
	max-width: 400px;
	display: block;
}
footer #f_msad .entry{
	padding: 0 0 40px;
	display: flex;
	align-items: center;
}
footer #f_msad .entry a{
	width: 80%;
	margin: 20px auto 0;
	padding: 20px 0;
	display: block;
	background: #fff;
	color: #00655a;
	text-decoration: none;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	position: relative;
}
footer #f_msad .entry a::before{
	content: "\f054";
	font-family: "font awesome 5 free";
	font-weight: 600;
	margin-right: 10px;
}
footer #f_msad .entry a:hover{
	background: #f7dd19;
}
footer #f_msad{}


/*		f_nav
---------------------------------------------------*/
footer #f_nav{
	padding: 10px 20px 0;
}
footer #f_nav .content{
	max-width: 100%;
}
footer #f_nav nav{
}
footer #f_nav nav ul{
	display: flex;
	justify-content: flex-end;
}
footer #f_nav nav ul li{
	margin-left: 10px;
}
footer #f_nav nav ul li:first-child{
	margin-left: 0;
}
footer #f_nav nav ul li a{
	padding: 10px 10px 10px 25px;
	display: inline-block;
	text-decoration: none;
	font-size: 1.4rem;
	position: relative;
}
footer #f_nav nav ul li a::before{
	content: "\f054";
	font-family: "font awesome 5 free";
	font-weight: 600;
	line-height: 20px;
	text-align: center;
	color: #f0b741;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
}
footer #f_nav nav ul li a:hover{
	text-decoration: underline;
}
footer #f_nav nav ul li a:hover::before{
	text-decoration: none;
	color: #e4722a;
}


/*		copy
---------------------------------------------------*/
footer #copy{
	padding: 80px 0 100px;
}
footer #copy p{
	text-align: center;
	font-size: 1.2rem;
	font-weight: 400;
}



/* ---------------------------------------------------------------------

		main

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

/*		common
---------------------------------------------------*/
main section h2{
	width: 100%;
	margin: 60px auto 60px;
	padding: 0 0 40px;
	text-align: center;
}
main section h2 span{
	padding: 0 0 4px;
	font-size: 2.4rem;
	font-weight: 600;
	display: inline-block;
	position: relative;
	border-bottom: 2px solid #333;
}
main section h2 span::after{
	content: attr(title);
	font-size: 1.4rem;
	font-weight: 300;
	text-align: center;
	width: 200px;
	height: 20px;
	margin-left: -100px;
	line-height: 20px;
	display: block;
	position: absolute;
	left: 50%;
	bottom: -32px;
}
main section h2 + p{
	margin: -20px auto 60px;
	text-align: center;
}

/*		***
---------------------------------------------------*/




/* ---------------------------------------------------------------------

		common

--------------------------------------------------------------------- */

/*		common_topimg
---------------------------------------------------*/
section#common_topimg{
	background: #f0b741;
}
section#common_topimg .content{
	height: 160px;
	display: flex;
	align-items: center;
}
section#common_topimg h1{}
section#common_topimg h1 span{
	color: #fff;
	font-weight: 300;
	font-size: 2.5rem;
	letter-spacing: 0.1rem;
}

/*		common_select
---------------------------------------------------*/
section#common_select{
	background: #f0b741;
}
section#common_select .content{}
section#common_select nav{}
section#common_select nav ul{
	display: flex;
}
section#common_select nav ul li{
	margin-left: 10px;
}
section#common_select nav ul li:first-child{
	margin-left: 0;
}
section#common_select nav ul li a{
	height: 40px;
	padding: 0 30px;
	display: inline-block;
	text-decoration: none;
	line-height: 40px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	background: rgba(255,255,255,0.4);
}
section#common_select nav ul li a:hover{
	color: #e4722a;
	background: #fff;
}
section#common_select nav ul li a.active{
	background: #fff;
}
section#common_select nav ul li a.active:hover{
	background: #fff;
	color: #000;
}





/*		***
---------------------------------------------------*/


/* ---------------------------------------------------------------------

		inslist

--------------------------------------------------------------------- */

/*		ins_list
---------------------------------------------------*/
section#ins_list{}
section#ins_list hr{
	height: 3px;
	border: none;
	background: #eee;
}
section#ins_list .inslist{}
section#ins_list .inslist ul{
	width: 100%;
	margin: -3% auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section#ins_list .inslist ul li{
	width: 30%;
	margin-top: 3%;
	padding: 10px;
	border: 1px solid #eee;
}
section#ins_list .inslist ul li img{
	width: 100%;
	height: auto;
	max-width: 600px;
	display: block;
}
section#ins_list .inslist ul li a img{
	transition: all 0.2s;
}
section#ins_list .inslist ul li a img:hover{
	opacity: 0.6;
}
section#ins_list .inslist p.nameset{
	margin: 100px auto;
	padding: 20px;
	background: #f5f5f5;
}
section#ins_list .inslist p.nameset span{
	padding: 5px 10px;
	display: inline-block;
}

/*		ins_list
---------------------------------------------------*/
section#ins_variation{
	overflow: hidden;
	background: #f5f5f5;
	border-top: 3px solid #eee;
}
section#ins_variation hr{
	width: 100%;
	height: 3px;
	margin: 100px auto;
	border: none;
	background: #eee;
}
section#ins_variation .ins_list{}
section#ins_variation .ins_list ol.ranking{
	width: 100%;
	margin: 0 auto 100px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
section#ins_variation .ins_list ol.ranking li{
	width: calc(25% - 20px);
	padding: 20px 0 40px;
	text-align: center;
	color: #e4722a;
	border: 2px solid #e4722a;
	font-size: 3rem;
}
section#ins_variation .ins_list ol.ranking li small{
	margin: 0 0 40px;
	padding: 0 5px 5px;
	border-bottom: 2px solid #e4722a;
	display: inline-block;
	font-size: 70%;
	letter-spacing: 0.5rem;
}
section#ins_variation .ins_list ol.ranking li span{
	display: block;
}
section#ins_variation .ins_list h3{
	width: 100%;
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}
section#ins_variation .ins_list h3 span{
	font-size: 2rem;
}
section#ins_variation .ins_list dl.lineup{
	width: 100%;
	max-width: 800px;
	margin: 0 auto 100px;
	display: flex;
	flex-direction: column;
}
section#ins_variation .ins_list dl.lineup dt{
	border-bottom: 1px solid #ddd;
}
section#ins_variation .ins_list dl.lineup dt span{
	padding: 15px 0;
	font-size: 2rem;
	letter-spacing: 0.2rem;
	color: #f0b741;
	display: block;
	cursor: pointer;
	position: relative;
}
section#ins_variation .ins_list dl.lineup dt span::after{
	content: "\f067";
	font-family: "font awesome 5 free";
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 20px;
	text-align: center;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
}
section#ins_variation .ins_list dl.lineup dt span:hover{
	color: #e4722a;
}
section#ins_variation .ins_list dl.lineup dt.active span::after{
	content: "\f068";
}
section#ins_variation .ins_list dl.lineup dd{
	width: 100%;
	padding: 20px 0;
	font-size: 1.6rem;
}


/*		#ins_about
---------------------------------------------------*/
section#ins_about{}
section#ins_about .ins_detail{
	margin: 0 auto 100px;
}
section#ins_about .ins_detail .content{
	position: relative;
	overflow: hidden;
}
section#ins_about .ins_detail .content > div{}
section#ins_about .ins_detail .ttl{
	width: 340px;
	padding: 60px 40px;
	background: #f0b741;
	position: absolute;
	left: 20px;
	top: 0;
	z-index: -1;
}
section#ins_about .ins_detail .ttl h3{
	text-align: center;
}
section#ins_about .ins_detail .ttl h3 span{
	color: #fff;
	font-weight: 300;
	font-size: 2rem;
}
section#ins_about .ins_detail .content > .detail{
	width: calc(100% - 260px);
	margin: 140px 0 0;
	padding: 0 0 40px;
	float: right;
	background: rgba(255,255,255,0.8);
	border-left: 1px solid #ddd;
}
section#ins_about .ins_detail .detail .img{}
section#ins_about .ins_detail .detail .img img{
	width: 100%;
	height: auto;
	display: block;
}
section#ins_about .ins_detail .detail h4{
	padding: 40px;
}
section#ins_about .ins_detail .detail h4 span{
	font-size: 2rem;
}
section#ins_about .ins_detail .detail p{
	padding: 40px 40px;
	line-height: 2;
}
section#ins_about .ins_detail .detail .attention{
	margin: 0 0 40px;
	padding: 40px;
	background: #f5f5f5;
}
section#ins_about .ins_detail .detail .attention p{
	padding: 0;
}
section#ins_about .ins_detail .detail .attention a.link{
	width: 300px;
	height: 40px;
	margin: 40px 0 0;
	display: block;
	position: relative;
	border: 1px solid #666;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	color: #666;
}
section#ins_about .ins_detail .detail .attention a.link::before{
	content: "\f054";
	font-family: "font awesome 5 free";
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 20px;
	text-align: center;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	display: block;
	position: absolute;
	left: 10px;
	top: 50%;
}
section#ins_about .ins_detail .detail .attention a.link:hover{
	color: #000;
	border-color: #000;
}

section#ins_about .ins_detail .detail ul{
	padding: 0 40px;
}
section#ins_about .ins_detail .detail ul li{
	margin-top: 20px;
}
section#ins_about .ins_detail .detail ul li:first-child{
	margin-top: 0;
}
section#ins_about .ins_detail .detail ul li > div{}
section#ins_about .ins_detail .detail ul li .ttl{
	padding: 0;
	position: static;
	background: none;
}
section#ins_about .ins_detail .detail ul li .ttl span{
	font-size: 1.6rem;
	font-weight: bold;
	color: #f0b741;
}
section#ins_about .ins_detail .detail ul li .detail{
	width: 100%;
	margin: 0;
	padding: 20px;
	float: inherit;
	background: #fafafa;
}
section#ins_about .ins_detail .detail ul li .detail p{
	padding: 0;
}
section#ins_about .ins_detail .detail ul.check{
	margin-top: -20px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
section#ins_about .ins_detail .detail ul.check li{
	width: 50%;
	padding-left: 30px;
	position: relative;
	font-size: 1.6rem;
}
section#ins_about .ins_detail .detail ul.check li:first-child{
	margin-top: 20px;
}
section#ins_about .ins_detail .detail ul.check li::before{
	content: "\f0a4";
	font-family: "font awesome 5 free";
	font-weight: 600;
	color: #f0b741;
	text-align: center;
	line-height: 20px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
}
section#ins_about .ins_detail .detail ol.step{
	padding: 0 40px;
}
section#ins_about .ins_detail .detail ol.step li{
	margin-top: 40px;
	padding-left: 130px;
	position: relative;
}
section#ins_about .ins_detail .detail ol.step li::before{
	content: "";
	width: 100px;
	height: 100px;
	margin-top: -50px;
	border: 1px solid #f0b741;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px auto;
}
section#ins_about .ins_detail .detail ol.step li:nth-child(1)::before{ background-image: url("../img/service/step_01.svg");}
section#ins_about .ins_detail .detail ol.step li:nth-child(2)::before{ background-image: url("../img/service/step_02.svg");}
section#ins_about .ins_detail .detail ol.step li:nth-child(3)::before{ background-image: url("../img/service/step_03.svg");}
section#ins_about .ins_detail .detail ol.step li:nth-child(4)::before{ background-image: url("../img/service/step_04.svg");}
section#ins_about .ins_detail .detail ol.step li .ttl{
	width: auto;
	padding: 0;
	display: inherit;
	position: static;
	background: none;
}
section#ins_about .ins_detail .detail ol.step li .ttl span{
	font-size: 1.6rem;
	font-weight: 600;
	color: #f0b741;
}
section#ins_about .ins_detail .detail ol.step li .ttl span::before{
	content: attr(title);
	line-height: 24px;
	letter-spacing: 0.1rem;
	font-size: 1.2rem;
	height: 24px;
	padding: 0 16px;
	margin-right: 10px;
	background: #f0b741;
	display: inline-block;
	color: #fff;
	border-radius: 12px;
}
section#ins_about .ins_detail .detail ol.step li .detail{
	width: auto;
	margin: 0;
	padding: 20px 0;
	float: inherit;
}
section#ins_about .ins_detail .detail ol.step li .detail p{
	padding: 0;
}

section#ins_about .ins_detail .detail ol.step_houjin{
	margin: 40px 40px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
section#ins_about .ins_detail .detail ol.step_houjin li{
	width: 30%;
	padding: 20px 0 30px;
	border: 2px solid #f0b741;
	position: relative;
	box-sizing: border-box;
}
section#ins_about .ins_detail .detail ol.step_houjin li::before{
	content: "\f054";
	font-family: "font awesome 5 free";
	font-weight: 600;
	font-size: 2rem;
	line-height: 30px;
	text-align: center;
	color: #f0b741;
	width: calc(100% / 6);
	height: 30px;
	margin-top: -15px;
	display: block;
	position: absolute;
	left: calc(-100% / 6);
	top: 50%;
}
section#ins_about .ins_detail .detail ol.step_houjin li:first-child{
	margin-top: 0;
}
section#ins_about .ins_detail .detail ol.step_houjin li:first-child::before{
	display: none;
}
section#ins_about .ins_detail .detail ol.step_houjin li span{
	padding-top: 50px;
	color: #f0b741;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	display: block;
	position: relative;
}
section#ins_about .ins_detail .detail ol.step_houjin li span::before{
	content: attr(title);
	display: inline-block;
	background: #f0b741;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 28px;
	text-indent: 0;
	border-radius: 14px;
	width: 90px;
	height: 28px;
	margin-left: -45px;
	padding: 0 20px;
	position: absolute;
	top: 0;
	left: 50%;
}

section#ins_about .ins_detail .detail h4 + *{
	margin-top: -20px;
	padding-top: 0;
}
section#ins_about .ins_detail .detail * + h4{
	margin-top: 40px;
}




/*		
---------------------------------------------------*/



/*		
---------------------------------------------------*/



/* ---------------------------------------------------------------------

		policy

--------------------------------------------------------------------- */

/*		policy_body
---------------------------------------------------*/
section#policy_body{}
section#policy_body .policy_set{
	width: calc(100% - 200px);
	margin: 0 auto 100px;
}
section#policy_body .policy_set h3{
	margin: 60px auto 40px;
	border-bottom: 2px solid #333;
}
section#policy_body .policy_set h3 span{
	font-size: 1.8rem;
}
section#policy_body .policy_set p{
	margin: 20px auto 0;
}
section#policy_body .policy_set ul,
section#policy_body .policy_set ol{
	margin: 40px auto;
	padding-left: 2.5rem;
}
section#policy_body .policy_set ul{
	list-style: disc;
}
section#policy_body .policy_set ol{
	list-style: decimal;
}
section#policy_body .policy_set ul li,
section#policy_body .policy_set ol li{
	margin-top: 4px;
}
section#policy_body .policy_set ul li:first-child,
section#policy_body .policy_set ol li:first-child{
	margin-top: 0;
}
section#policy_body .policy_set{}



/*		***
---------------------------------------------------*/




/* ---------------------------------------------------------------------

		recruit

--------------------------------------------------------------------- */

/*		recruit_head
---------------------------------------------------*/
#recruit_head{}
#recruit_head .recruit_about{
	width: 100%;
	margin: 100px auto 200px;
}
#recruit_head .recruit_about p{
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
	line-height: 2;
}

/*		recruit_body
---------------------------------------------------*/
#recruit_body{}
#recruit_body .recruit_nav{
	width: 300px;
	margin: 0 auto 100px;
}
#recruit_body .recruit_nav nav {}
#recruit_body .recruit_nav nav ul{
	border-top: 1px solid #eee;
}
#recruit_body .recruit_nav nav ul li{
	border-bottom: 1px solid #eee;
}
#recruit_body .recruit_nav nav ul li a{
	width: 100%;
	height: 60px;
	display: block;
	text-align: center;
	text-decoration: none;
	line-height: 60px;
	position: relative;
}
#recruit_body .recruit_nav nav ul li a::after{
	content: "\f078";
	font-family: "font awesome 5 free";
	font-weight: 600;
	font-size: 1rem;
	line-height: 20px;
	text-align: center;
	color: #ddd;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	display: block;
	position: absolute;
	right: 10px;
	top: 50%;
}
#recruit_body .recruit_nav nav ul li a:hover{
	background: #f5f5f5;
}
#recruit_body .recruit_set{
	width: calc(100% - 300px);
	margin: 100px auto 200px;
}
#recruit_body .recruit_set h3{
	height: 40px;
	margin: 60px auto 0;
	padding: 0 10px;
	background: #eee;
	line-height: 40px;
}
#recruit_body .recruit_set h3 span{}
#recruit_body .recruit_set dl{
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
}
#recruit_body .recruit_set dl dt{
	width: 200px;
	padding: 20px 0;
	float: left;
	border-top: 1px solid #ddd;
}
#recruit_body .recruit_set dl dt span{}
#recruit_body .recruit_set dl dd{
	width: calc(100% - 200px);
	padding: 20px;
	float: left;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
}
#recruit_body .recruit_set .recruit_entry{
	margin: 100px auto 0;
}
#recruit_body .recruit_set .recruit_entry a{
	width: 100%;
	height: 60px;
	max-width: 400px;
	margin: 0 auto;
	display: block;
	background: #f0b741;
	border-radius: 4px;
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
	text-align: center;
	line-height: 60px;
	position: relative;
	transition: all 0.2s;
}
#recruit_body .recruit_set .recruit_entry a::before{
	content: "\f054";
	font-family: "font awesome 5 free";
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 20px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
}
#recruit_body .recruit_set .recruit_entry a:hover{
	background: #e4722a;
}


/* ---------------------------------------------------------------------

		company

--------------------------------------------------------------------- */

/*		company_body
---------------------------------------------------*/
section#company_body{}
section#company_body .about{
	padding: 0 0 100px;
}
section#company_body .about table{
	width: 100%;
}
section#company_body .about table tbody{}
section#company_body .about table tbody tr{}
section#company_body .about table tbody tr th,
section#company_body .about table tbody tr td{
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}
section#company_body .about table tbody tr th{
	width: 200px;
}
section#company_body .about table tbody tr td{}
section#company_body .about table tbody tr td p{}
section#company_body .map{}
section#company_body .map iframe{
	width: 100%;
	height: 600px;
	display: block;
	filter: grayscale(1);
}

/*		company_greeting
---------------------------------------------------*/
section#company_greeting{
	border-bottom: 3px solid #eee;
}
section#company_greeting .greeting{
	margin: 0 auto 100px;
}
section#company_greeting .greeting .content{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
section#company_greeting .greeting .content > div{}
section#company_greeting .greeting .img{
	width: 320px;
	padding-right: 60px;
}
section#company_greeting .greeting .img img{
	width: 100%;
	height: auto;
	display: block;
}
section#company_greeting .greeting .img img.sign{
	margin: 10px 0 0;
}
section#company_greeting .greeting .detail{
	flex: 1;
}
section#company_greeting .greeting .detail p{
	font-size: 1.6rem;
	line-height: 2;
}



/* ---------------------------------------------------------------------

		seminar

--------------------------------------------------------------------- */

/*		#seminar_body
---------------------------------------------------*/
section#seminar_body{}
section#seminar_body hr{
	height: 3px;
	margin: 100px auto;
	background: #ddd;
	border: none;
}
section#seminar_body .seminar_set{
	margin: 100px auto;
}
section#seminar_body .seminar_set .content{
	display: flex;
}
section#seminar_body .seminar_set .content > div{}
section#seminar_body .seminar_set .img{
	width: 480px;
	padding-right: 80px;
}
section#seminar_body .seminar_set .detail{
	flex: 1;
}
section#seminar_body .seminar_set .detail h3{}
section#seminar_body .seminar_set .detail h3 span{}
section#seminar_body .seminar_set .detail p{}


@media screen and (max-width: 1024px) {
	/* タブレット縦 */
/* ---------------------------------------------------------------------

		common

--------------------------------------------------------------------- */
body{
	min-width: 100%;
}

/*		wrap
---------------------------------------------------*/
#wrap{
	padding-top: 80px;
	}

/*		any
---------------------------------------------------*/
.content{
	max-width: 100%;
	padding: 0 10px;
}

/* ---------------------------------------------------------------------

		header

--------------------------------------------------------------------- */
header{
	height: 80px;
	padding: 20px 0;
}
header section{}
header section .content{
	height: 40px;
}
header section .content > div{}
header section .content .logo{}
header section .content .logo h1{}
header section .content .logo h1 a{}
header section .content .logo h1 a img{
	max-height: 40px;
}
header section .content .logo h1 a:hover{}
header section .content .h_nav{}
header section .content .h_nav nav{}
header section .content .h_nav nav ul{}
header section .content .h_nav nav ul li{
	padding: 0 10px;
}
header section .content .h_nav nav ul li a{
	height: 40px;
	line-height: 40px;
}
header section .content .h_nav nav ul li a:hover{}


/* ---------------------------------------------------------------------

		company

--------------------------------------------------------------------- */

/*		company_body
---------------------------------------------------*/
section#company_body{}
section#company_body .about{
	padding: 0 0 40px;
}
section#company_body .about table{
	width: calc(100% - 40px);
	margin: 0 auto;
}
section#company_body .about table tbody{}
section#company_body .about table tbody tr{}
section#company_body .about table tbody tr th,
section#company_body .about table tbody tr td{
	width: 100%;
	display: block;
	border-bottom: none;
}
section#company_body .about table tbody tr th{
	width: 100%;
	padding: 0 0 5px;
	border-bottom: 2px solid #666;
	text-align: left;
}
section#company_body .about table tbody tr td{
	padding: 20px 0;
	}
section#company_body .about table tbody tr td p{}
section#company_body .map{}
section#company_body .map iframe{
	width: 100%;
	height: 400px;
	display: block;
}

/*		company_greeting
---------------------------------------------------*/
section#company_greeting{}
section#company_greeting .greeting{
	margin: 0 auto 60px;
}
section#company_greeting .greeting .content{
	flex-direction: column;
	justify-content: flex-start;
}
section#company_greeting .greeting .content > div{}
section#company_greeting .greeting .img{
	width: 100%;
	margin: 0 auto 40px;
	padding-right: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
}
section#company_greeting .greeting .img img{
	width: 60%;
	margin: 0 auto;
}
section#company_greeting .greeting .img img.sign{
	width: 40%;
	margin: 10px auto 0;
}
section#company_greeting .greeting .detail{
	width: calc(100% - 20px);
	margin: 0 auto;
	}
section#company_greeting .greeting .detail p{
	font-size: 1.4rem;
	line-height: 2;
}


}
@media screen and (min-width: 897px) {
	/* PCのみ */
	.onlySP{display: none;}
}
@media screen and (max-width: 896px) {
	/* SP横 */
	.onlyPC{display: none;}

/* ---------------------------------------------------------------------

		common

--------------------------------------------------------------------- */
body{}

/*		wrap
---------------------------------------------------*/
#wrap{
	padding-top: 40px;
}

/*		any
---------------------------------------------------*/
.content{}


/* ---------------------------------------------------------------------

		header

--------------------------------------------------------------------- */
header{
	height: 40px;
	padding: 0 0;
	border-bottom-width: 2px;
}
header section{}
header section .content{
	height: 40px;
}
header section .content > div{}
header section .content .logo{
	width: 100%;
	}
header section .content .logo h1{
	margin: 0 auto;
	}
header section .content .logo h1 a{}
header section .content .logo h1 a img{
	max-height: 30px;
}
header section .content .logo h1 a:hover{}
header section .content .h_nav{
	width: 200px;
	height: 100%;
	display: block;
	position: fixed;
	background: #f5f5f5;
	top: 40px;
	right: -200px;
	transition: all 0.5s;
	}
	header section .content .h_nav.active{
		right: 0;
	}
header section .content .h_nav nav{}
header section .content .h_nav nav ul{
	flex-direction: column;
	}
header section .content .h_nav nav ul li{
	padding: 0;
	border-bottom: 1px solid #ddd;
}
header section .content .h_nav nav ul li a{
	width: 100%;
	height: 50px;
	padding: 0 20px;
	line-height: 50px;
	display: block;
	font-size: 1.2rem;
}
header section .content .h_nav nav ul li a:hover{
	background: #fff;
	}
/*		#btn_hnav
---------------------------------------------------*/
#btn_hnav{
	display: block;
}
#btn_hnav::before{}
#btn_hnav:hover{}


/* ---------------------------------------------------------------------

		footer

--------------------------------------------------------------------- */
footer{}

/*		f_msad
---------------------------------------------------*/
footer #f_msad{
	padding: 0 0;
	}
footer #f_msad .content{
	flex-direction: column;
}
footer #f_msad .content > div{
	width: 100%;
}
footer #f_msad .content .ttl{}
footer #f_msad .content .ttl > *{
	width: 100%;
}
footer #f_msad h1{
	font-size: 2rem;
}
footer #f_msad h1 span{}
footer #f_msad h1 + p{
	font-size: 1.2rem;
}
footer #f_msad ul.ins_list{
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	}
footer #f_msad ul.ins_list li{
	width: calc(100% / 3);
	margin: 2% 0 0;
	text-align: center;
	}
footer #f_msad ul.ins_list li img{
	width: 100%;
	height: auto;
	margin: 0 auto;
}
footer #f_msad .entry{
	padding: 0 0 30px;
	}
footer #f_msad .entry a{
	width: 100%;
	height: 50px;
	margin: 0 auto 0;
	padding: 0;
	font-size: 1.6rem;
	line-height: 50px;
	background: #f7dd19;
}
footer #f_msad .entry a::before{
}
footer #f_msad .entry a:hover{
	background: #fff;
}
footer #f_msad{}


/*		f_nav
---------------------------------------------------*/
footer #f_nav{
	padding: 0 20px 0;
}
footer #f_nav .content{
	max-width: 100%;
}
footer #f_nav nav{}
footer #f_nav nav ul{
	margin: 30px auto;
	flex-direction: column;
	justify-content: flex-start;
}
footer #f_nav nav ul li{
	margin: 0;
	border-bottom: 1px solid #ddd;
}
footer #f_nav nav ul li:first-child{}
footer #f_nav nav ul li a{
	padding: 15px 10px 15px 25px;
	font-size: 1.2rem;
	display: block;
}
footer #f_nav nav ul li a::before{}
footer #f_nav nav ul li a:hover{}
footer #f_nav nav ul li a:hover::before{}


/*		copy
---------------------------------------------------*/
footer #copy{
	margin: 20px 0 40px;
	padding: 0;
}
footer #copy p{
	color: #333;
	font-size: 1rem;
}



/* ---------------------------------------------------------------------

		main

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

/*		common
---------------------------------------------------*/
main section h2{
	margin: 60px auto 40px;
}
main section h2 span{
	font-size: 2rem;
}
main section h2 span::after{
	font-size: 1.2rem;
}
main section h2 + p{
	margin: -20px auto 40px;
	text-align: left;
}



/* ---------------------------------------------------------------------

		inslist

--------------------------------------------------------------------- */

/*		ins_list
---------------------------------------------------*/
section#ins_list{}
section#ins_list hr{
	height: 3px;
	border: none;
	background: #eee;
}
section#ins_list .inslist{}
section#ins_list .inslist ul{
	width: calc(100% - 20px);
	margin: 0 auto 0;
}
section#ins_list .inslist ul li{
	width: calc(50% - 1.5px);
	margin-top: 3px;
	padding: 5px;
}
section#ins_list .inslist ul li img{}
section#ins_list .inslist ul li a img{}
section#ins_list .inslist ul li a img:hover{}
section#ins_list .inslist p.nameset{
	width: calc(100% - 20px);
	margin: 40px auto 60px;
	padding: 10px;
}
section#ins_list .inslist p.nameset span{
	padding: 3px 5px;
}



/*		ins_valiation
---------------------------------------------------*/
section#ins_variation{}
section#ins_variation hr{}
section#ins_variation .ins_list{}
section#ins_variation .ins_list ol.ranking{
	width: calc(100% - 20px);
	margin: 0 auto 60px;
	flex-direction: column;
	justify-content: flex-start;
}
section#ins_variation .ins_list ol.ranking li{
	width: 100%;
	margin: 10px auto 0;
	padding: 10px 0;
	font-size: 2rem;
}
section#ins_variation .ins_list ol.ranking li small{
	margin: 0 0;
	padding: 0 0;
	border-bottom: none;
	display: inherit;
	font-size: 80%;
	letter-spacing: 0;
}
section#ins_variation .ins_list ol.ranking li span{}
section#ins_variation .ins_list h3{
	margin: 0 auto 30px;
}
section#ins_variation .ins_list h3 span{}
section#ins_variation .ins_list dl.lineup{}
section#ins_variation .ins_list dl.lineup dt{}
section#ins_variation .ins_list dl.lineup dt span{
	padding: 15px 10px;
	font-size: 1.6rem;
	letter-spacing: 0.1rem;
}
section#ins_variation .ins_list dl.lineup dt span::after{}
section#ins_variation .ins_list dl.lineup dt span:hover{}
section#ins_variation .ins_list dl.lineup dt.active span::after{}
section#ins_variation .ins_list dl.lineup dd{
	padding: 20px 10px;
	font-size: 1.4rem;
}


/*		#ins_about
---------------------------------------------------*/
section#ins_about{}
section#ins_about .ins_detail{
	margin: 0 auto 60px;
}
section#ins_about .ins_detail .content{
	position: relative;
	overflow: hidden;
}
section#ins_about .ins_detail .content > div{}
section#ins_about .ins_detail .ttl{
	width: 100%;
	padding: 20px 0 40px;
	position: static;
}
section#ins_about .ins_detail .ttl h3{}
section#ins_about .ins_detail .ttl h3 span{
	font-size: 1.6rem;
}
section#ins_about .ins_detail .content > .detail{
	width: calc(100% - 20px);
	margin: -20px 10px 0;
	padding: 0 0 40px;
	float: none;
	background: #fff;
	border-left: none;
}
section#ins_about .ins_detail .detail .img{}
section#ins_about .ins_detail .detail .img img{}
section#ins_about .ins_detail .detail h4{
	padding: 40px 0 40px;
	text-align: center;
}
section#ins_about .ins_detail .detail h4 span{
	font-size: 1.6rem;
}
section#ins_about .ins_detail .detail p{
	padding: 40px 0px;
	font-size: 1.2rem;
}
section#ins_about .ins_detail .detail .attention{
	margin: 0 0 40px;
	padding: 20px;
}
section#ins_about .ins_detail .detail .attention p{
	padding: 0;
}
section#ins_about .ins_detail .detail .attention a.link{
	width: 100%;
	max-width: 300px;
	margin: 20px auto 0;
	font-size: 1.2rem;
}
section#ins_about .ins_detail .detail .attention a.link::before{}
section#ins_about .ins_detail .detail .attention a.link:hover{}
section#ins_about .ins_detail .detail ul{
	padding: 0 0;
}
section#ins_about .ins_detail .detail ul li{}
section#ins_about .ins_detail .detail ul li:first-child{}
section#ins_about .ins_detail .detail ul li > div{}
section#ins_about .ins_detail .detail ul li .ttl{
	padding: 0;
	position: static;
	background: none;
	border-bottom: 2px solid #f0b741;
}
section#ins_about .ins_detail .detail ul li .ttl span{
	font-size: 1.6rem;
	font-weight: bold;
	color: #f0b741;
}
section#ins_about .ins_detail .detail ul li .detail{
	width: 100%;
	margin: 0;
	padding: 20px 0;
	float: inherit;
	background: none;
}
section#ins_about .ins_detail .detail ul li .detail p{
	padding: 0;
}
section#ins_about .ins_detail .detail ul.check{
	margin-top: 0;
}
section#ins_about .ins_detail .detail ul.check li{
	width: 100%;
	font-size: 1.4rem;
}
section#ins_about .ins_detail .detail ul.check li:first-child{
	margin-top: 0;
}
section#ins_about .ins_detail .detail ul.check li::before{}
section#ins_about .ins_detail .detail ol.step{
	padding: 0 0;
}
section#ins_about .ins_detail .detail ol.step li{
	margin-top: 30px;
	padding-left: 90px;
	position: relative;
}
section#ins_about .ins_detail .detail ol.step li::before{
	content: "";
	width: 70px;
	height: 70px;
	margin-top: -35px;
	background-size: 30px auto;
}
section#ins_about .ins_detail .detail ol.step li:nth-child(1)::before{}
section#ins_about .ins_detail .detail ol.step li:nth-child(2)::before{}
section#ins_about .ins_detail .detail ol.step li:nth-child(3)::before{}
section#ins_about .ins_detail .detail ol.step li:nth-child(4)::before{}
section#ins_about .ins_detail .detail ol.step li .ttl{}
section#ins_about .ins_detail .detail ol.step li .ttl span{}
section#ins_about .ins_detail .detail ol.step li .ttl span::before{}
section#ins_about .ins_detail .detail ol.step li .detail{
	padding: 10px 0 0;
}
section#ins_about .ins_detail .detail ol.step li .detail p{
	line-height: 1.5;
}



section#ins_about .ins_detail .detail h4 + *{
	margin-top: -20px;
	padding-top: 0;
}
section#ins_about .ins_detail .detail * + h4{
	margin-top: 40px;
}

/* ---------------------------------------------------------------------

		policy

--------------------------------------------------------------------- */

/*		policy_body
---------------------------------------------------*/
section#policy_body{}
section#policy_body .policy_set{
	width: 100%;
	margin: 0 auto 60px;
}
section#policy_body .policy_set h3{
	margin: 40px auto 20px;
}
section#policy_body .policy_set h3 span{
	font-size: 1.6rem;
}
section#policy_body .policy_set p{
	font-size: 1.2rem;
}
section#policy_body .policy_set ul,
section#policy_body .policy_set ol{
	margin: 20px auto;
	padding-left: 2rem;
}
section#policy_body .policy_set ul{}
section#policy_body .policy_set ol{}
section#policy_body .policy_set ul li,
section#policy_body .policy_set ol li{
	font-size: 1.2rem;
}
section#policy_body .policy_set ul li:first-child,
section#policy_body .policy_set ol li:first-child{}


/* ---------------------------------------------------------------------

		recruit

--------------------------------------------------------------------- */

/*		recruit_head
---------------------------------------------------*/
#recruit_head{}
#recruit_head .recruit_about{
	width: 100%;
	margin: 80px auto 100px;
}
#recruit_head .recruit_about p{
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.5;
}

/*		recruit_body
---------------------------------------------------*/
#recruit_body{}
#recruit_body .recruit_nav{
	width: calc(100% - 60px);
	margin: 0 auto 60px;
}
#recruit_body .recruit_nav nav {}
#recruit_body .recruit_nav nav ul{}
#recruit_body .recruit_nav nav ul li{}
#recruit_body .recruit_nav nav ul li a{}
#recruit_body .recruit_nav nav ul li a::after{}
#recruit_body .recruit_nav nav ul li a:hover{}
#recruit_body .recruit_set{
	width: calc(100% - 20px);
	margin: 0 auto 100px;
}
#recruit_body .recruit_set h3{
	height: 40px;
	margin: 60px auto 0;
	padding: 0 10px;
	background: #eee;
	line-height: 40px;
}
#recruit_body .recruit_set h3 span{}
#recruit_body .recruit_set dl{
	width: 100%;
	font-size: 1.2rem;
}
#recruit_body .recruit_set dl dt{
	width: 25%;
}
#recruit_body .recruit_set dl dt span{}
#recruit_body .recruit_set dl dd{
	width: 75%;
}
#recruit_body .recruit_set .recruit_entry{
	margin: 60px auto 0;
}
#recruit_body .recruit_set .recruit_entry a{}
#recruit_body .recruit_set .recruit_entry a::before{}
#recruit_body .recruit_set .recruit_entry a:hover{}

/* ---------------------------------------------------------------------

		seminar

--------------------------------------------------------------------- */

/*		#seminar_body
---------------------------------------------------*/
section#seminar_body{}
section#seminar_body hr{
	margin: 60px auto;
}
section#seminar_body .seminar_set{
	margin: 60px auto;
}
section#seminar_body .seminar_set .content{}
section#seminar_body .seminar_set .content > div{}
section#seminar_body .seminar_set .img{
	width: 40%;
	padding-right: 20px;
}
section#seminar_body .seminar_set .detail{}
section#seminar_body .seminar_set .detail h3{}
section#seminar_body .seminar_set .detail h3 span{}
section#seminar_body .seminar_set .detail p{}













}
@media screen and (min-width: 481px) {
	.onlySP2{display: none;}
}
@media screen and (max-width: 480px) {
	/* SP縦 */
	.onlyPC2{display: none;}

/* ---------------------------------------------------------------------

		seminar

--------------------------------------------------------------------- */

/*		#seminar_body
---------------------------------------------------*/
section#seminar_body{}
section#seminar_body hr{}
section#seminar_body .seminar_set{}
section#seminar_body .seminar_set .content{
	flex-direction: column;
	}
section#seminar_body .seminar_set .content > div{}
section#seminar_body .seminar_set .img{
	width: 100%;
	height: 200px;
	padding-right: 0;
	overflow: hidden;
}
section#seminar_body .seminar_set .img img{}
section#seminar_body .seminar_set .detail{
	margin: 20px 10px 0;
	}
section#seminar_body .seminar_set .detail h3{}
section#seminar_body .seminar_set .detail h3 span{}
section#seminar_body .seminar_set .detail p{}

}