@charset "utf-8";

/*********************
 base
*********************/
 
*{ padding:0; margin:0; }
*, *: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;
}
html,body{ height:100%; }
body{
	-webkit-text-size-adjust: 100%;
	width:100%;
	font-family: Noto Sans Japanese,Noto Sans JP,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", arial, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	font-size:14px;
	line-height:1.8em;
	letter-spacing: .09em;
	color:#333;
	background-color:#fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
h1, h2, h3, h4, h5{font-size:1em; font-weight:normal;}
.mincho{ font-family: "Noto Serif JP",serif; }
.en{ font-family: 'Lato', sans-serif; }
img{ vertical-align:middle; }
ul{ list-style-type: none; }
a{ transition:.2s; }

/*********************
 flexbox
*********************/
.flexbox{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flexbetween{
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flextop{
	-webkit-box-align: flex-start;
	-webkit-align-items: flex-start;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}
.flexstretch{
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.flexreverse{
	flex-direction:row-reverse;
}
/*********************
 link opacity
*********************/
.op{ transition:0.3s; }
.op:hover{ opacity:0.7; }

/*********************
 header
*********************/
header{
	width:100%;
	max-width:1200px;
	display:block;
	margin:0 auto;
	position: fixed;
	top:0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 999;
}
header .logo_btn img{
	height:60px;
	margin:15px 5px 15px 10px;
}
/** menu button **/
header .menu_list{
	background: rgba(255,255,255,0.85);
	position:absolute;
	top:0;
	right:0;
}
header .menu_list li a{
	text-decoration:none;
	color:#333;
	margin:0 25px;
}
header .menu_list li:nth-child(2) a{
	margin-left:50px;
}
header .menu_list li:nth-last-child(2) a{
	margin-right:50px;
}
header .menu_list li:last-child a{
	margin:0;
}
header .menu_list li a:hover{
	text-decoration:underline;
}
header .menu_list li:last-child{
	background:#fff;
}
header .menu_list .submenu{
	position: relative;
}
header .menu_list .submenu ol{
	display:none;
	position: absolute;
	font-size:0.9em; 
	white-space:nowrap;
	bottom:0;
	left:50%;
	transform: translateX(-50%) translateY(100%);
}
header .menu_list .submenu ol.active{
	display:block;
}
header .menu_list .submenu ol li{
	display:block;
	padding:15px 8px;
	background: rgba(255,255,255,0.85) !important;
}
header .menu_list .submenu ol li a{
	margin:5px 10px;
	display:block;
	line-height:1em;
}
header .menu_list .submenu ol li a:before{
	content: '';
	display: inline-block;
	background-image: url(/img/submenu-arrow.png?2025);
	background-size: contain;
	vertical-align: middle;
	width:10px;
	height:10px;
	margin:-2px 5px 0 0;
}
header .menu_list li a.head_btn{
	margin-right:0;
	cursor:pointer;
}
header .menu_list li a.head_btn img{
	height:90px;
}
header .menu_list li a p {
	display:none;
}

/*********************
 footer
*********************/
footer{
	width:100%;
	max-width:1200px;
	margin:120px auto 0;
	text-align:center;
	font-size:0.9em;
	line-height:1.6em;
	padding:15px 0 0;
	color:#fff;
	background:#905822;
}
footer section{
	padding:0;
	text-align:center;
	max-width:1024px;
	margin:0 auto 30px;
}
footer section article{
	padding:30px 0;
	border-bottom:1px solid #fff;
	margin:0 auto 15px;
}
footer section article img{
	margin:0 auto;
}
footer section article div#access{
	width:50%;
	text-align:left;
}
footer section article div#access .tel{
	display:inline-block;
	background:#fff;
	padding:0 20px;
	height:36px;
	line-height:36px;
	font-size:1.2em;
	margin:0 0 0 15px;
	color:#333;
	border-radius:18px;
	text-decoration:none;
}
footer section article div#access .tel:before{
	content: '';
	display: inline-block;
	background-image: url(/img/tel_icon.png);
	background-size: contain;
	vertical-align: middle;
	width:14px;
	height:14px;
	margin:-2px 5px 0 0;
}
footer section div#links {
	line-height:2.4em;
}
footer section div#links a{
	color:#fff;
	text-decoration:none;
	display:inline-block;
	margin-right:50px;
}
footer section div#links a:hover{
	text-decoration:underline;
}
footer section div#links a.none{
	margin-right:0px;
}
footer div#copy{
	background:#7b7063;
	padding:15px 0;
	font-size:0.8em;
}
footer div#copy a{
	color:#fff;
}
footer a.head_btn{
	cursor:pointer;
}


