﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url(reset.css);

body {
	font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #231815;
	-webkit-font-smoothing: antialiased;
}
img{
	vertical-align: bottom;
	width: 100%;
	height: auto;
}
.pc {
	display: block;
}
.sp {
	display: none !important;
}
.column {
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-box-lines:multiple;
		-moz-box-lines:multiple;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
}
* {
	box-sizing: border-box;
}
.inner {
	width: 900px;
	margin: 0 auto;
}
header{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}
#headLogo img {
	width: 190px;
	filter: drop-shadow(0px 0px 2px #fff);
}
#headLogo a {
	display: inline-block;
	padding: 20px 40px;
}
#footerLogo img {
	width: 200px;
}
#footerLogo a {
	display: inline-block;
	padding: 20px 0 20px 40px;
}
footer {
	height: 22vh;
}
footer .contArea li {
	line-height: 2;
	display: flex;
}
footer .contArea ul {
	justify-content: center;
	align-items: center;
}
small {
	height: 4vh;
	width: 100%;
	display: block;
	color: #fff;
	background: #000;
	padding: 0.5% 0;
	font-size: 0.7vw;
}
footer .telArea li {
	list-style: none;
	font-size: 2.6vmin;
	line-height: 1.7;
}
footer li:first-child {
	margin-left: 0;
}
footer li.contactBtn {
	width: 250px;
}
footer li.contactBtn a {
	color: #333;
	border: 1px solid #000;
	font-size: 2vmin;
	display: inline-block;
	width: 280px;
	height: 60px;
	padding: 8px 0 8px 40px;
}
footer .telArea {
	margin: 0 40px;
}
address {
	margin-right: 60px;
	font-style:normal;
	font-size: 16px;
}
footer li.privacyBtn a {
	color: #333;
	font-size: 16px;
}
/*menu*/
.menu{
	height: 41px;
	position: absolute;
	right: 40px;
	top: 30px;
	width: 50px;
	z-index: 99;
	cursor: pointer;
}
.menu__line{
	background: #333;
	display: block;
	height: 5px;
	position: absolute;
	transition:transform .3s;
	width: 100%;
}
.menu__line--center{
	top: 18px;
}
.menu__line--bottom{
	bottom: 0;
	width: 80%;
}
.menu__line--top.active{
	top: 15px;
	transform: rotate(33deg);
}
.menu__line--center.active{
	transform:scaleX(0);
}
.menu__line--bottom.active{
	width: 100%;
	bottom: 22px;
	transform: rotate(-32deg);
}
/*gnav*/
.gnav{
	background: #ccc;
	display: none;
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: 98;
}
.gnav__wrap{
	align-items:center;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}
.gnav__menu__item{
	margin: 40px 0;
	text-align: center;
}
.gnav__menu__item a{
	color: #333;
	font-size: 3em;
	font-weight: bold;
	padding: 40px;
	transition: .5s;
}
.gnav__menu__item a:hover{
	color: #666;
}
/*  -- pagetop --  */
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
	z-index: 99999;
}
#page-top a {
	background: #666;
	text-decoration: none;
	color: #fff;
	width: 70px;
	height: 70px;
	padding: 10px;
	text-align: center;
	display: block;
	border-radius: 90px;
}
#page-top a:hover {
	text-decoration: none;
	background: #999;
}

@media print, screen and (max-width: 768px){
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	footer {
		height: 36vh;
	}
	footer .contArea ul {
		flex-direction: column;
		align-items: center;
	}
	footer .contArea li {
		margin: 3% 0 0;
		line-height: 1;
	}
	footer .contArea li:first-child {
		line-height: 1;
	}
	address {
		margin: 0;
	}
	#footerLogo a {
		padding: 0;
	}
	footer li.contactBtn a {
		font-size: 2.5vmin;
	}

}
@media print, screen and (max-width: 414px){
	body {
		font-size: 13px;
	}
	footer li.contactBtn a {
		width: 220px;
		height: 48px;
		font-size: 15px;
		padding: 6% 0 5% 12%;
	}
	#footerLogo img {
		width: 170px;
	}
	address {
		font-size: 14px;
	}
	footer .contArea li {
		font-size: 18px;
	}
	footer li.privacyBtn a {
		font-size: 14px;
	}
	small {
		padding: 2% 0;
		font-size: 10px;
	}
}