@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 2;
}
.font_serif{
	font-family: 'Noto Serif JP',"游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E",serif;
}
html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;
	color: #333;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #76956B;
	text-decoration: underline;
}
a:hover{
	color: #5AAE3A;
}
a.btn{
	display: block;
	position: relative;
	border: 2px solid #000;
	padding: 1em;
	color: #333;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
}
a.btn.arrow_r::after,
a.btn.arrow_l::after{
    content: '';
    border: 0;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
}
a.btn.arrow_r::after{
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
a.btn.arrow_l::after{
    left: 20px;
    transform: translateY(-50%) rotate(-135deg);
}
a.btn:hover{
	background: #000;
	color: #FFF;
}
a.btn.arrow_r:hover::after,
a.btn.arrow_l:hover::after{
    border-top: solid 1px #FFF;
    border-right: solid 1px #FFF;
}
@media print, screen and (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
.header{
	position: relative;
	width: 100%;
	z-index: 10000;
}
.header_wrap{
	width:100%;
	height: 130px;
	margin:0 auto;
}
.header_wrap .h_logo{
	position: absolute;
	top: 30px;
	left: 40px;
}
.header_wrap .h_logo a{
	display: block;
	width: 230px;
	height: 70px;
	background: url("../images/common/logo.png") no-repeat;
	background-size: contain;
	text-indent: -9999px;
}
/* Toggle Button */
.nav-toggle {
	position: fixed;
	right: 50px;
	top: 50px;
	width: 50px;
	height: 30px;
	cursor: pointer;
	z-index: 10200;
}
.nav-toggle div {
	position: relative;
}
.nav-toggle span {
	display: block;
	position: absolute;
	left: 0;
	height: 2px;
	width: 50px;
	background: #5AAE3A;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.nav-toggle span:nth-child(1) {
	top: 0;
}
.nav-toggle span:nth-child(2) {
	top: 14px;
}
.nav-toggle span:nth-child(3) {
	top: 28px;
}
/* #nav-toggle 切り替えアニメーション */
.nav-toggle.active span {
	background: #FFF;
}
.nav-toggle.active span:nth-child(1) {
	top: 20px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.nav-toggle.active span:nth-child(2) {
	width: 0;
	left: 50%;
}
.nav-toggle.active span:nth-child(3) {
	top: 20px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* .global_nav スライドアニメーション */
.open .global_nav {
	-moz-transform: translateX(-100vw);
	-webkit-transform: translateX(-100vw);
	transform: translateX(-100vw);
}
/* 開いてないときは画面外に配置 */
.global_nav{
	position: fixed;
	top: 0;
	right: -100vw;
	width: 40%;
	height: 100%;
	overflow: scroll;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	z-index: 10100;
	background: #000;
	padding-top: 130px;
}
.global_nav ul{
}
.global_nav ul li a{
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 1.4rem;
	padding: 1em 4em;
	cursor: pointer;
}
.global_nav ul li a:hover{
	color: #76956B;
}
@media screen and (max-width: 768px) {
	.header_wrap{
		height: 65px;
	}
	.header_wrap .h_logo{
		top: 15px;
		left: 20px;
	}
	.header_wrap .h_logo a{
		width: 115px;
		height: 35px;
	}
	/* Toggle Button */
	.nav-toggle {
		right: 20px;
		top: 20px;
		width: 30px;
		height: 23px;
	}
	.nav-toggle span {
		height: 1px;
		width: 30px;
	}
	.nav-toggle span:nth-child(1) {
		top: 0;
	}
	.nav-toggle span:nth-child(2) {
		top: 11px;
	}
	.nav-toggle span:nth-child(3) {
		top: 22px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.nav-toggle.active span:nth-child(1) {
		top: 10px;
	}
	.nav-toggle.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.nav-toggle.active span:nth-child(3) {
		top: 10px;
	}
	/* .global_nav スライドアニメーション */
	.open .global_nav {
		-moz-transform: translateX(-100vw);
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
	}
	/* 開いてないときは画面外に配置 */
	.global_nav{
		width: 100%;
		padding-top: 80px;
	}
	.global_nav ul li a{
		font-size: 1.2em;
	}
}
/* =====================================
パンくず
======================================== */
.breadcrumb{
	margin: auto;
	padding: 10px 40px 0 40px;
	font-size:12px;
	font-size:1.2rem;
	display:flex;
	flex-wrap:wrap;
}
.breadcrumb li{
	display: inline-block;
}
.breadcrumb li a{
	position: relative;
	color: #333;
	text-decoration:none;
	padding-right: 2em;
}
.breadcrumb li a:hover{
	text-decoration:underline
}
.breadcrumb li a::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 1em;
	width: 6px;
	height: 6px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	transform: rotate(45deg);
	margin-top: -3px;
}
@media only screen and (min-width: 769px) and (max-width: 1080px) {
	.breadcrumb{
		padding: 10px 30px 0 30px;
	}
}
@media screen and (max-width: 768px) {
	.breadcrumb{
		padding: 10px 20px 0 20px;
		font-size: 0.8rem;
	}
}
/* =====================================
コンテンツ共通
======================================== */
.page_title_wrap{
	background: url("/images/common/bg_title.jpg") no-repeat center center;
	background-size: cover;
	padding: 5em 0;
}
h1.page_title{
	text-align: center;
	font-size: 2.8rem;
	color: #FFF;
	letter-spacing: 0.1em;
	position: relative;
}
h1.page_title::before{
	position: absolute;
	background-color: #FFF;
	bottom: -1.2em;
	content: "";
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
}
h2.subtitle{
	color: #333;
	text-align: center;
	font-size: 2.8rem;
	padding-bottom: 1em;
	letter-spacing: 0.1em;
	position: relative;
}
h2.subtitle.white{
	color: #FFF;
}
h2.subtitle::before{
	position: absolute;
	background-color: #777;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
}
h2.subtitle.white::before{
	background-color: #FFF;
}
.contents_box{
	padding: 130px 50px;
}
.contents_box.pb_none{
	padding: 130px 50px 0 50px;
}
@media screen and (max-width: 768px) {
	.page_title_wrap{
		padding: 3em 0;
	}
	h1.page_title{
		font-size: 1.4rem;
	}
	h1.page_title::before{
		width: 25px;
	}
	h2.subtitle{
		font-size: 1.4rem;
	}
	h2.subtitle::before {
		width: 25px;
	}
	.contents_box{
		padding: 50px 20px;
	}
	.contents_box.pb_none{
		padding: 50px 20px 0 20px;
	}
}
/* =====================================
お問い合わせ
======================================== */
.contact_area{
	background: url("/images/common/bg_contact.jpg") no-repeat center center;
	background-size: cover;
}
.contact_lead{
	text-align: center;
	margin-top: 30px;
}
@media print,screen and (min-width: 768px) {
	.line_wrap{
		margin: 50px auto auto;
		display: flex;
		justify-content: space-between;
		max-width: 610px;
	}
	.line_wrap .qr_line{
		margin-left: 50px;
	}
}
@media screen and (max-width: 768px) {
	.contact_area{
		padding: 50px 20px 80px 20px;
	}
	.contact_lead{
		margin-top: 20px;
	}
	.line_wrap .bn_line{
		max-width: 300px;
		margin: 30px auto auto;
	}
	.line_wrap .qr_line{
		max-width: 140px;
		margin: 30px auto auto;
	}
}
/* =====================================
ページトップ
======================================== */
.page_top{
	position: fixed;
	right: 0;
	width: 60px;
	z-index: 10000;
}
@media screen and (max-width: 768px) {
	.page_top{
		right: 10px;
		width: 50px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
	background: #333333;
	color: #EAEAEA;
}
.footer a{
	color: #EAEAEA;
	text-decoration: none;
}
.footer a:hover{
	text-decoration: underline;
}
@media print, screen and (min-width: 769px) {
	.footer{
		padding: 60px 40px;
	}
	.footer_wrap{
		max-width: 1200px;
		margin: auto;
		font-size: 1.4rem;
		display: flex;
		justify-content: space-between;
	}
	.footer_wrap .f_info{
		display: flex;
		align-items: center;
	}
	.footer_wrap .f_info .f_logo{
		max-width: 120px;
	}
	.footer_wrap .f_info .f_company{
		padding-left: 65px;;
	}
	.footer_wrap .f_info .f_company span{
		display: block;
		margin-bottom: 0.5em;
		font-weight: 700;
		font-size: 1.6rem;
	}
	.footer_wrap .f_navi .copy{
		margin-top: 5em;
		text-align: right;
	}
}
@media screen and (max-width: 768px) {
	.footer{
		padding: 50px 20px;
	}
	.footer_wrap{
		text-align: center;
	}
	.footer_wrap .f_info .f_logo{
		max-width: 80px;
		margin: auto;
	}
	.footer_wrap .f_info .f_company span{
		display: block;
		margin-top: 1.5em;
		margin-bottom: 0.5em;
		font-weight: 700;
		font-size: 1.4rem;
	}
	.footer_wrap .f_navi{
		margin-top: 3em;
	}
	.footer_wrap .f_navi .copy{
		margin-top: 3em;
	}
}