/* ----------------------------------------
	Setting
-------------------------------------------*/
*, *:before, *:after{ -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
hr{ display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
audio,canvas,img,video{ vertical-align: middle; }
fieldset{	border: 0; margin: 0; padding: 0; }
textarea{ resize: vertical; }
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video{ margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; }
table,div,ul,ol,li,dl,dt,dd{ list-style: none; margin: 0; padding: 0; }
table{ border-collapse:collapse; border-spacing:0; }
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section{ display:block; }
nav ul,li{ list-style:none; }
img{ max-width: 100%; height: auto; margin: 0; padding: 0; border:0; outline: none; border-style: none; vertical-align: bottom; line-height: 0; }
img,iframe,object{ max-width:100%; }	/* モダンブラウザ用 */
img[src$=".svg"]{	width: 100%; }		/* SVG IE対策 */

:root{
	--font-black: rgba(12,26,46);
	--font-gray: rgba(89,87,87);
	--green: rgba(0,165,158);
	--orange: rgba(242,150,0);
	--pale-blue: rgba(214,221,232);
	
	--font-black-rgb: 12,26,46;
	--font-gray-rgb: 89,87,87;
	--green-rgb: 0,165,158;
	--orange-rgb: 242,150,0;
	--pale-blue-rbg: 214,221,232;
	
	--font-en: termina, sans-serif;
	--page-width: 1000px;
	--hover: 0.7;
}

@media screen and (max-width: 650px){
	:root{
		--page-width: 94%;
	}
}
a,
a:visited,
a:hover,
a:active{
	color: var(--font-black);
	-webkit-tap-highlight-color: transparent rgba(0,0,0,0);
	-moz-tap-highlight-color: transparent rgba(0,0,0,0);
	-ms-tap-highlight-color: transparent rgba(0,0,0,0);
	-o-tap-highlight-color: transparent rgba(0,0,0,0);
	tap-highlight-color: transparent rgba(0,0,0,0);
	text-decoration: none;
	transition: all 0.2s ease;
	-webkit-transform: translateZ(0);
}
a:hover{
	color: var(--main-color);
	text-decoration: none;
}
a img:hover{
	opacity: var(--hover);
}
a img{ 
	text-decoration: none;
	outline: none;
}
a img::before,a img::after{
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
a img,a img::before,a img::after{
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
svg{
	fill: currentColor;
}
.pc{ display: block; }
.sp{ display: none; }

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

/* ----------------------------------------
	Common
-------------------------------------------*/

html,body{
	height: 100% !important;
}
html{
	font-size: 62.5%;
	line-height: 2.2;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
body{
	color: var(--font-black);
	font-size: 18px;
	letter-spacing: 0.1em;
	text-align: center;
	font-weight: normal;
	word-wrap: break-word;
	font-family: "zen-kaku-gothic-new",YakuHanJP_Noto,sans-serif;
}
#wrapper{
	position: relative;
	overflow: hidden;
	width: 100%;
}
#main{
	position: relative;
	width: 100%;
	z-index: 1;	/*important*/
}
.serif{
	font-family: adobe-garamond-pro, serif;
}
.fade{
	opacity: 0;
	transform: translateY(30px);/* 下にずれる幅 */
	transition: opacity 1.1s, transform 1.0s;
}
.fade.active{
	opacity: 1;
	transform: translateY(0px);
}
.more_btn a{
	display: block;
	width: 300px;
	height: 80px;
	line-height: 76px;
	border-radius: 40px;
	font-weight: bold;
	text-align: center;
	border: 1px solid;
}

@media screen and (max-width: 650px){	
	
	html{
		line-height: 2;
	}
	body{
		font-size: 13px;
		letter-spacing: 0.07em;
	}
	.more_btn a{
		width: 100%;
		height: 60px;
		line-height: 56px;
		border-radius: 30px;
	}
}

.main_visual{
	position: relative;
	width: 85%;
	height: 80vh;
	max-height: 1400px;
	margin: -110px 0 0 auto;	/*ヘッダー分*/
	z-index: 0;
}
.main_color_area{
	margin-top: -300px;
	padding: 400px 0 0;
	background: url(../img/common/bg_main_color.gif) left top repeat;
	z-index: -1;
}

@media screen and (max-width: 650px){	
	
	.main_visual{
		width: var(--page-width);
		height: 68vh;
		margin-top: -76px;
	}
}


/* ----------------------------------------
	Main Header
-------------------------------------------*/

.g_nav{
	position: relative;
	width: 100%;
	height: 110px;
	z-index: 200;
}
.g_nav.fixed{
	position: fixed;
	z-index: 200;
	top: 0;
	left: 0;
	background-color: #fff;
	transition: 0.3s;
}
.g_nav.fixed a{
	color:var(--font-black);
}
.g_nav__in{
	display: flex;
	align-content: flex-end;
	justify-content: space-between;
}
.g_nav__logo a{
	position: relative;
	z-index: 1000;
	display: block;
	margin: 12px 0 0 22px;
}
.g_nav__logo a img{
	width: auto;
	height: 88px;
}
/* g_nav */
.g_nav__list{
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding: 32px 10% 0 0;
}
.g_nav__list li{
	font-weight: bold;
	margin-left: 3%;
}
.g_nav__list li a{
	color: #fff;
	display: inline-block;
	text-decoration: none;
	white-space: nowrap;	/*改行禁止*/
}
.g_nav__list li a:hover{
	color: var(--green);
}
.drawer_nav_wrap{
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.drawer_nav_wrap .main_nav_area{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 70%;
}
#main_nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
#main_nav a:hover{
	opacity: var(--hover);
}
#main_nav dl{
	width: 25%;
	margin-bottom: 5%;
}
#main_nav dl dt{
	margin-bottom: 5%;
	font-weight: bold;
	font-size: 15px;
}
#main_nav dl dd{
	font-size: 12px;
	padding-bottom: 3%;
}
#main_nav dl dd:last-of-type{
	margin-bottom: 15%;
}
#main_nav .nav_bottom{
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid #eee;
	margin-left: 25%;
	padding-top: 3%;
	font-size: 11px;
}
#main_nav .nav_bottom ul{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5%;
}
#main_nav .nav_bottom ul li{
	margin-right: 30px;
}
#main_nav .nav_bottom .sns_box{
	line-height: 1;
}
#main_nav .nav_bottom .sns_box li{
	width: 22px;
	height: auto;
	margin-right: 26px;
}
#main_nav .nav_bottom .sns_box li:nth-child(3){
	width: 20px;
}
#main_nav .nav_bottom .sns_box li:nth-child(4){
	width: 24px;
}
.drawer_nav_wrap .drawer_nav_bg{
	position: relative;
	overflow: hidden;
	width: 30%;
	background: url(../img/top/mainvisual.jpg) 78% center no-repeat;
	background-size: cover;
}


@media screen and (max-width: 650px){
	
	.g_nav{
		height: 76px;
	}
	.g_nav__in{
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.g_nav__logo a{
		margin: 14px 0 0 14px;
	}
	.g_nav__logo a img{
		height: 48px;
	}
	/* g_nav */
	.g_nav__list{
		display: none;
	}
	.drawer_nav_wrap{
		padding-top: 90px;
	}
	.drawer_nav_wrap .main_nav_area{
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	#main_nav{
		width: 100%;
		margin: 0 auto;
	}
	#main_nav dl,
	#main_nav dl dt,
	#main_nav dl dd,
	#main_nav dl dd:last-of-type{
		width: 100%;
		padding: 0;
		margin: 0 auto;
		font-size: 13px;
	}
	#main_nav dl dt{
		padding: 3% 0;
		border-bottom: 1px solid #eee;
	}
	#main_nav dl dt a{
		display: inline-block;
		width: 85%;
	}
	#main_nav dl dd a{
		display: block;
		padding: 1% 0;
	}
	/* 矢印 */
	#main_nav dl dd a::before{
		content: "";
		display: inline-block;
		width: 5px;
		height: 5px;
		margin: 0 10px 0 0;
		border-top: 1px solid var(--font-black);
		border-right: 1px solid var(--font-black);
		transform: rotate(45deg);
	}
	
	/* accordion menu */
	.accordion_area{
		list-style: none;
	}
	.accordion dt{
		position: relative;/* +の位置基準*/
		cursor: pointer;
		pointer-events: auto;
		transition: all .05s ease;
	}
	/* ＋と× */
	.accordion dt::before,
	.accordion dt::after{
		position: absolute;
		content:'';
		width: 12px;
		height: 1px;
		background-color: var(--font-black);
	}
	.accordion dt::before,
	.accordion dt::after{
		top: 48%;
		right: 3%;
	}
	.accordion dt::before{
		transform: rotate(0deg);
	}
	.accordion dt::after{
		transform: rotate(90deg);
	}
	/*　close　*/
	.accordion dt.close::before{
		transform: rotate(45deg);
	}
	.accordion dt.close::after{
		transform: rotate(-45deg);
	}
	.accordion section{
		display: none;
		padding: 4% 0;
	}
	#main_nav .nav_bottom{
		display: block;
		border-top: none;
		margin: 2% auto;
		font-size: 12px;
	}
	#main_nav .nav_bottom ul{
		justify-content: flex-start;
	}
	#main_nav .nav_bottom ul li{
		margin-right: 5%;
	}
	#main_nav .nav_bottom .sns_box li{
		width: 18px;
	}
	#main_nav .nav_bottom .sns_box li:nth-child(3){
		width: 16px;
	}
	#main_nav .nav_bottom .sns_box li:nth-child(4){
		width: 20px;
	}
	.drawer_nav_wrap .drawer_nav_bg{
		display: none;
	}
}


/* ----------------------------------------
	Footer
-------------------------------------------*/

.footer_contact{
	width: 100%;
	padding: 7% 0 8%;
	background: #ccc;
}
.footer_contact .en{
	position: relative;
	line-height: 1;
	text-align: left;
	color: rgba(0,0,0,0);
	font-family: var(--font-en);
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	font-size: 80px;
	padding-left: 3%;
}
.footer_contact .inner{
	width: var(--page-width);
	margin: 0 auto;
	text-align: justify;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer_contact .inner .text_box{
	width: 35%;
}
.footer_contact .inner .text_box h2{
	font-size: 32px;
}
.footer_contact .inner .text_box p{
	padding-bottom: 20px;
	font-size: 16px;
}
.footer_contact .more_btn a{
	width: 100%;
	color: var(--font-black);
	background: url(../img/common/ic_morebtn_bl.svg) 90% center no-repeat;
	background-size: 24px;
	font-size: 15px;
	text-align: left;
	padding-left: 10%;
}
.footer_contact .more_btn a:hover{
	background: url(../img/common/ic_morebtn_wh.svg) 90% center no-repeat;
	background-size: 24px;
	background-color: var(--font-black);
	color: #fff;
}
.footer_contact .inner .tel_box{
	width: 60%;
}
.footer_contact .inner .tel_box .box{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	border-bottom: 1px solid var(--font-black);
}
.footer_contact .inner .tel_box .box .circle{
	background: var(--font-black);
	width: 58px;
	height: 58px;
	line-height: 54px;
	border-radius: 29px;
	color: #fff;
	font-size: 14px;
	text-align: center;
}
.footer_contact .inner .tel_box .box dd{
	padding-left: 2%;
	font-size: 48px;
	font-family: var(--font-en);
}
.footer_contact .inner .tel_box p{
	text-align: center;
	padding-top: 2%;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.footer_contact{
		padding: 20% 0;
	}
	.footer_contact .en{
		font-size: 32px;
	}
	.footer_contact .inner{
		flex-wrap: wrap;
	}
	.footer_contact .inner .text_box{
		width: 100%;
	}
	.footer_contact .inner .text_box h2{
		font-size: 18px;
	}
	.footer_contact .inner .text_box p{
		padding: 3% 0 5%;
		font-size: 13px;
	}
	.footer_contact .more_btn a{
		font-size: 13px;
	}
	.footer_contact .more_btn a,
	.footer_contact .more_btn a:hover{
		background-size: 20px;
	}
	.footer_contact .inner .tel_box{
		width: var(--page-width);
		margin: 8% auto 0;
	}
	.footer_contact .inner .tel_box .box{
		border: 0;
	}
	.footer_contact .inner .tel_box .box .circle{
		width: 44px;
		height: 44px;
		line-height: 42px;
		border-radius: 22px;
		font-size: 11px;
	}
	.footer_contact .inner .tel_box .box dd{
		font-size: 24px;
	}
}


/* ----------------------------------------
	Main Footer
-------------------------------------------*/

#footer{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	padding-top: 5%;
	font-size: 14px;
	letter-spacing: .05em;
}
#footer .footer_info{
	width: 30%;
	margin-left: 3%;
	text-align: left;
}
.footer_info .logo{
	width: 150px;
	height: auto;
}
.footer_info p{
	padding: 20px 0;
	line-height: 2;
}
.footer_info .sns{
	display: flex;
	align-items: flex-start;
}
.footer_info .sns li{
	width: 22px;
	height: auto;
	margin-right: 26px;
}
.footer_info .sns li:nth-child(3){
	width: 20px;
}
.footer_info .sns li:nth-child(4){
	width: 24px;
}
.footer_info .sns li img{
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: middle;
}
#footer .footer_nav{
	width: 63%;
	margin-right: 3%;
	text-align: left;
	display: flex;
	flex-basis:auto;
	justify-content: space-between;
}
.footer_nav dl{
	width: 19%;
	line-height: 2.5;
}
.footer_nav a:hover{
	opacity: var(--hover);
}
.footer_nav dl:last-child{
	width: 23%;
}
.footer_nav dl dt,
.footer_nav dl dd{
	padding-bottom: 4px;
}
.footer_nav dl dt{
	font-weight: bold;
}
.footer_nav dl dd{
	font-size: 13px;
}
.footer_nav dl dd:last-of-type{
	padding-bottom: 10px;
}
.copyright{
	margin-top: 5%;
	width: 100%;
	padding: 2% 0;
	font-size: 10px;
	text-align: center;
	letter-spacing: .2em;
	border-top: 1px solid #eee;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	#footer{
		width: 100%;
		margin: 0 auto;
		padding-top: 15%;
		font-size: 12px;
		letter-spacing: .1em;
	}
	#footer .footer_info{
		width: var(--page-width);
		margin: 0 auto;
		text-align: center;
	}
	.footer_info .logo{
		width: 110px;
		margin: 0 auto;
	}
	.footer_info p{
		padding: 5% 0;
		line-height: 1.75;
	}
	.footer_info .sns{
		justify-content: center;
	}
	.footer_info .sns li{
		width: 20px;
	}
	.footer_info .sns li:nth-child(3){
		width: 18px;
	}
	.footer_info .sns li:nth-child(4){
		width: 22px;
	}
	#footer .footer_nav{
		display: none;
	}
	.copyright{
		margin-top: 15%;
		padding: 4% 0;
		letter-spacing: .15em;
	}
}