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

html, body{
	text-align: center;
	color: #333;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
	scrollbar-width: none;       /* Firefox 対応 */
}

html::-webkit-scrollbar, body::-webkit-scrollbar{  /* Chrome, Safari 対応 */
	display:none;
}


/*Header
------------------------------------------*/
header{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 20px 0 0;
}
header>.inner{
	display: block;
	letter-spacing: -0.4em;
	text-align: left;
	line-height: 0;
}
header .logo{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: bottom;
	padding: 0;
	margin: 0 140px 16px 0;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
header .logo:hover{
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
header .logo>a:hover{
	text-decoration: none;
}
header .logo span{
	display: block;
	color: #2b8a43;
	font-size: 1.3rem;
	line-height: 100%;
	padding: 0 0 0 10px;
	margin: 0 auto 10px;
	font-weight: bold;
}
header ul{
	display: inline-block;
	vertical-align: bottom;
}
header ul>li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	padding: 0;
	margin: 0 30px 0 0;
	font-size: 1.4rem;
	line-height: 120%;
	position: relative;
}
header ul>li:last-child{
	margin-right: 0;
}
header ul>li>a{
	display: block;
	color: #333;
	padding-bottom: 16px;
}
header ul>li>a:hover{
	text-decoration: none;
}
header ul>li>a:before{
	content: '';
	width: 0;
	height: 4px;
	background: #32A34F;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
header ul>li>a:hover:before,
header ul>li>a.active:before{
	width: 100%;
	left: 0;
}
header ul>li>a>small{
	display: block;
	text-align: center;
	padding: 4px 0 0;
	font-size: 1.2rem;
	color: #2b8a43;
	font-weight: bold;
}


/*Footer
------------------------------------------*/
footer{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 100px 0 0;
	position: relative;
	z-index: 3;
	background: #fff;
}
footer .inner{
	width: 1080px;
}
footer ul{
	display: block;
	letter-spacing: -0.4em;
	text-align: left;
	line-height: 0;
	padding: 0;
	margin: 0 auto 35px;
}
footer ul>li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	margin: 0 45px 0 0;
	font-size: 1.2rem;
	line-height: 120%;
}
footer ul>li a{
	color: #333;
}
footer .contact{
	position: absolute;
	top: -20px;
	right: 0;
	background: #fff;
}
footer .contact>a{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	position: relative;
	z-index: 2;
	overflow: visible;
	margin: 0 auto;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
footer .contact>a:hover{
	text-decoration: none;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
footer .contact>a>i{
	display: block;
	font-style: normal;
	border: 1px solid #333;
	padding: 0 40px 0 115px;
	line-height: 110px;
	font-size: 2rem;
	color: #333;
	font-weight: bold;
	background: #fff url(../img/footer/icn_contact.png) left 63px top 44px no-repeat;
}
footer .contact>a:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: -1;
	background: #333;
}
footer .foot{
	border-top: 1px solid #32a34f;
	padding: 53px 0 40px;
	margin: 0 auto;
}
footer .foot>.inner{
	display: block;
	letter-spacing: -0.4em;
	text-align: left;
	line-height: 0;
}
footer .foot .logo{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
footer .foot .logo:hover{
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
footer .foot .num{
	position: absolute;
	top: 25px;
	right: 10px;
	display: block;
	letter-spacing: -0.4em;
	text-align: left;
	line-height: 0;
}
footer .foot .num>p.tel,
footer .foot .num>p.fax{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: bottom;
}
footer .foot .num>p.tel{
	margin: 0 24px 0 0;
	font-size: 3rem;
	font-weight: bold;
	line-height: 100%;
	position: relative;
}
footer .foot .num>p.tel:before{
	content: '';
	background: url(../img/footer/icn_tel.png) 0 0 no-repeat;
	width: 28px;
	height: 39px;
	position: absolute;
	top: 10px;
	left: -36px;
}
footer .foot .num>p.tel>a{
	color: #333;
}
footer .foot .num>p.tel>a:hover{
	text-decoration: none;
}
footer .foot .num>p.tel>a>small{
	display: block;
	font-size: 1.5rem;
	line-height: 100%;
	margin: 0 auto 4px;
}
footer .foot .num>p.fax{
	margin: 0 auto;
	font-size: 2rem;
	font-weight: bold;
	padding-bottom: 3px;
}
footer .foot .num>p.fax>small{
	display: inline-block;
	vertical-align: middle;
	font-size: 1.4rem;
	line-height: 100%;
}
footer>.copy{
	font-size: 1.2rem;
	text-align: center;
	color: #fff;
	line-height: 60px;
	background: #32a34f;
}

#pagetop{
	cursor: pointer;
	position: fixed;
	bottom: 100px;
	right: 0;
	z-index: 99;
	background: #2b8a43;
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	padding: 30px 10px 20px 12px;
	line-height: 100%;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#pagetop:before{
	position: absolute;
	top: 17px;
	right: 50%;
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	margin-right: -4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#pagetop:hover{
	text-decoration: none;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}


/*Banner
------------------------------------------*/
#banner{
	background: #f4f4f4;
	padding: 90px 0;
	position: relative;
	z-index: 2;
}
#banner ul{
	display: block;
	letter-spacing: -0.4em;
	text-align: left;
	line-height: 0;
}
#banner ul>li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	width: 385px;
	height: 192px;
	overflow: hidden;
	margin: 0 20px 0 0;
}
#banner ul>li:last-child{
	margin-right: 0;
}
#banner ul>li>a{
	display: block;
	position: relative;
	z-index: 1;
}
#banner ul>li>a p.img{
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
#banner ul>li>a p.img img{
	width: 100%;
	height: auto;
	transition-duration: .5s;
}
#banner ul>li>a:hover p.img img{
	transform: scale(1.1);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
}
#banner ul>li>a .box{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: rgba(64, 32, 0, 0.6);
	padding: 45px 30px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#banner ul>li>a .box:before{
	content: '';
	width: 1px;
	height: 40px;
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: #fff;
}
#banner ul>li>a .box:after{
	content: '';
	width: 40px;
	height: 1px;
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: #fff;
}
#banner ul>li>a p.tit{
	font-size: 3rem;
	font-family: 'Arial Bold', sans-serif;
	line-height: 100%;
	color: #fff;
	padding: 0 10px 14px;
	margin: 0 auto 14px;
	border-bottom: 1px solid #fff;
	font-weight: bold;
}
#banner ul>li>a p.tex{
	font-size: 1.4rem;
	color: #fff;
	margin: 0 auto;
	line-height: 140%;
}


/*Common
------------------------------------------*/
.inner{
	width: 1200px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

#title{
	padding: 233px 0 37px;
	margin: 0 auto 18px;
	line-height: 0;
	text-align: right;
}
@media screen and (min-width:1300px){
	#title{background-size: cover !important;}
}
#title h1{
	display: inline-block;
	background: rgba(51, 51, 51, 0.9);
	padding: 7px;
	font-weight: normal;
}
#title h1>span{
	display: block;
	padding: 62px 44px 25px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	text-align: center;
	line-height: 100%;
	font-size: 3rem;
	color: #fff;
}
#title h1>span>i{
	font-style: normal;
	display: block;
	padding: 0 20px;
}
#title h1>span>small{
	display: block;
	font-size: 1.6rem;
	line-height: 100%;
	padding: 10px 0 0;
	text-align: center;
	border-top: 1px solid #fff;
	margin: 20px auto 0;
}


#pkz{
	margin: 0 auto 75px;
}
#pkz>ul{
	display: block;
	letter-spacing: -0.4em;
	text-align: left;
}
#pkz>ul>li{
	display: inline-block;
	letter-spacing: normal;
	font-size: 1.2rem;
}
#pkz>ul>li:after{
	content: '>';
	padding: 0 4px;
}
#pkz>ul>li:last-child:after{
	content: none;
}
#pkz>ul>li>a{
	color: #333;
}

#contents h2{
	padding: 0 50px 10px;
	line-height: 120%;
	border-bottom: 1px solid #333;
	text-align: left;
	font-size: 2.5rem;
	font-weight: normal;
	margin: 0 auto 40px;
}
#contents p{
	font-size: 1.4rem;
	line-height: 160%;
	color: #333;
	text-align: left;
}

#contents table{
	border-top: 1px solid #ccc;
}
#contents table th{
	border-bottom: 1px solid #ccc;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding: 22px 60px 20px;
	line-height: 160%;
	font-weight: bold;
}
#contents table td{
	border-bottom: 1px solid #ccc;
	font-size: 1.4rem;
	text-align: left;
	vertical-align: top;
	padding: 22px 70px 20px;
	line-height: 160%;
}


#contents form table{
	margin: 0 auto 35px;
}
#contents form table th{
	width: 280px;
	padding: 21px 20px 0 140px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
#contents form table td{
	padding: 12px 20px 10px;
}
#contents form table td>p{
	display: block;
	margin: 0 auto 10px !important;
}
#contents form table td>p:last-child{
	margin-bottom: 0 !important;
}

#contents form input[type="text"]{
	width: 300px;
	padding: 12px 10px 10px;
	line-height: 120%;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#contents form input[type="text"]+input{
	margin-left: 25px;
}
#contents form input[type="email"],
#contents form input[name="add2"],
#contents form input[name="add3"]{
	width: 625px;
	padding: 12px 10px 10px;
	line-height: 120%;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#contents form input[type="tel"]{
	width: 100px;
	padding: 12px 10px 10px;
	line-height: 120%;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 1em;
	text-align: center;
}
#contents form input[type="tel"]+input{
	margin-left: 1em;
}
#contents form input[name="zip1"],
#contents form input[name="zip2"]{
	width: 80px;
	padding: 12px 10px 10px;
	line-height: 120%;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 1em;
	text-align: center;
}
#contents form input[name="zip2"]{
	width: 100px;
}
#contents form textarea{
	width: 660px;
	padding: 12px 10px 10px;
	line-height: 120%;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#contents form select{
	cursor: pointer;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	width: 300px;
	padding: 12px 25px 10px 10px;
	line-height: 120%;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0;
	background: url(../img/select.svg) no-repeat right 0.75rem center;
	background-size: 8px 10px;
}
#contents form select::-ms-expand{
	display: none;
}

#contents form p.privacy_check{
	max-width: 900px;
	padding: 0 20px;
	margin: 0 auto 15px;
	font-size: 1.6rem;
	text-align: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#contents form p.privacy_check input{
	vertical-align: top;
	margin: 4px 0 0 0;
}
#contents form p.tex{
	max-width: 900px;
	padding: 0 20px;
	margin: 0 auto 10px;
	font-size: 1.4rem;
	text-align: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#contents form .privacy{
	max-width: 900px;
	height: 200px;
	border: 1px solid #ccc;
	padding: 40px 20px;
	margin: 0 auto 75px;
	font-size: 1.4rem;
	text-align: left;
	overflow: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#contents form .btn{
	text-align: center;
	line-height: 0;
}
#contents form .btn input{
	border: 1px solid #A0A0A0;
	min-width: 250px;
	line-height: 58px;
	font-size: 1.6rem;
	color: #333;
	background: #fff url(../contact/img/btn_arrow.png) right 15px center no-repeat;
	padding: 0 20px;
	cursor: pointer;
	margin: 0 8px;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
#contents form .btn input[type="submit"]{
	background: #00468C url(../contact/img/btn_arrow2.png) right 15px center no-repeat;
	border: 1px solid #00468C;
	color: #fff;
}
#contents form .btn input:focus{
	outline: none;
}
#contents form .btn input:hover{
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}





@media screen and (min-width:768px){
	.sp,header #sp_menu{display: none !important;}
	a[data="tel"]{cursor: default;}
	body{padding-top: 100px;}
}

@media screen and (max-width:767px){
	body{padding-top: 72px;}
	.pc{display: none !important;}
	img{max-width: 100%;height: auto;}
	.inner{
		width: 100%;
		padding: 0 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	header{
		padding: 10px 0;
		overflow: hidden;
	}
	header .logo{
		margin: 0;
		width: 235px;
	}
	header .logo span{
		font-size: 1rem;
		margin-bottom: 5px;
		padding-left: 5px;
	}
	header #sp_menu{
		display: block;
		width: 60px;
		position: absolute;
		top: -5px;
		right: 5px;
		line-height: 0;
	}
	header ul{
		display: none;
		background: #2b8a43;
		position: fixed;
		top: 72px;
		left: -100%;
		width: 100%;
		padding:  60px 0 0;
		min-height: 100vh;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	header ul>li{
		display: block;
		margin: 0 auto;
		line-height: 0;
		border-bottom: 1px solid #fff;
	}
	header ul>li>a{
		color: #fff;
		line-height: 100%;
		position: relative;
		padding: 20px;
	}
	header ul>li>a::before{
		content: none;
	}
	header ul>li>a::after{
		position: absolute;
		top: 50%;
		right: 20px;
		display: block;
		content: '';
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	header ul>li>a>small{
		position: absolute;
		top: 15px;
		right: 60px;
		color: #fff;
	}
	header ul>li.company{
		border-bottom: none;
		padding: 20px;
	}
	header ul>li.company .tit{
		line-height: 120%;
		font-size: 1.8rem;
		font-weight: bold;
		color: #fff;
		margin: 0 auto 10px;
	}
	header ul>li.company .add{
		line-height: 120%;
		font-size: 1.4rem;
		color: #fff;
	}
	header ul>li.tel{
		border: none;
		margin: 0 10px;
	}
	header ul>li.tel>a{
		border: 1px solid #fff;
		padding: 8px 20px 6px 60px;
		font-size: 3rem;
		font-weight: bold;
		background: url(../img/footer/icn_tel2.png) 20px 13px no-repeat;
	}
	header ul>li.tel>a>small{
		display: block;
		margin: 0 auto 5px;
		position: static;
		text-align: left;
		padding: 0;
		line-height: 100%;
		font-size: 1.4rem;
	}
	
	
	#banner{
		padding: 20px 0 10px;
	}
	#banner ul>li{
		width: 100%;
		height: auto;
		margin: 0 auto 10px;
	}
	#banner ul>li>a p.tit{font-size: 2rem;}
	
	footer{padding: 40px 0 0;}
	footer .inner{width: 100%;}
	footer ul{
		border: 1px solid #ccc;
		border-bottom: none;
		margin-bottom: 20px;
	}
	footer ul>li{
		width: 50%;
		margin: 0;
	}
	footer ul>li a{
		display: block;
		padding: 14px 10px;
		line-height: 100%;
		font-size: 1.4rem;
		border-bottom: 1px solid #ccc;
		position: relative;
	}
	footer ul>li:nth-child(odd) a{
		border-right: 1px solid #ccc;
	}
	footer ul>li a:after{
		position: absolute;
		top: 50%;
		right: 10px;
		display: block;
		content: '';
		width: 6px;
		height: 6px;
		margin-top: -3px;
		border-top: 1px solid #888;
		border-right: 1px solid #888;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	footer .contact{
		position: static;
	}
	footer .contact>a{
		display: block;
	}
	footer .contact>a>i{
		font-size: 1.6rem;
		padding: 0 20px;
		text-align: center;
		line-height: 70px;
		background: #fff url(../img/footer/icn_contact.png) left 17px top 25px no-repeat;
		background-size: 25px auto;
	}
	footer .foot{
		margin-top: 20px;
		padding: 20px 0;
	}
	footer .foot .logo{
		display: block;
		margin: 0 auto 20px;
	}
	footer .foot .num{
		position: static;
	}
	footer .foot .num>p.tel{
		font-size: 2rem;
		padding-left: 30px;
		margin-right: 40px;
	}
	footer .foot .num>p.tel:before{
		top: 6px;
		left: 0;
		background-size: 20px auto;
	}
	footer .foot .num>p.tel>a>small{font-size: 1.2rem;}
	footer .foot .num>p.fax{
		font-size: 1.3rem;
	}
	footer .foot .num>p.fax>small {
		font-size: 1.3rem;
	}
	
	#pagetop{
		bottom: 60px;
	}
	
	#pkz{display: none;}
	
	#title{
		padding: 70px 0 10px;
		background-size: cover !important;
	}
	#title h1>span{
		padding: 20px;
		font-size: 2rem;
	}
	#title h1>span>small{
		font-size: 1.4rem;
		margin-top: 10px;
	}
	
	#contents h2{
		padding: 0 10px 6px;
		font-size: 2.2rem;
	}
	
	#contents table th{
		padding: 10px;
		background: #efefef;
	}
	#contents table td{
		padding: 10px;
	}
	
	.fancybox-caption__body{
		margin-top: -190px !important;
	}
}

@media print{
	body {
		zoom: 0.66;
		-webkit-print-color-adjust: exact;
	}
	.sp{display: none !important;}
}