@charset "utf-8";
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
	file name : base.css
 : :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
a {
	outline: none;
}
/* a:link */
a:link {
	color: #000;
	text-decoration: none;
}
/* a:active */
a:active {
	color: #000;
	text-decoration: none;
}
/* a:visited */
a:visited {
	color: #000;
	text-decoration: none;
}
/* a:hover */
a:hover {
	color: #000;
	opacity: .5;
}
.nolink {
	opacity: 0.4;
}
body {
	/*min-width: 1024px;*/
	position: relative;
	line-height: 1.5;
	overflow-x: hidden;
}
main {
    display: block;
	width: 100%;
    color: #fff;
    background: #000;
	margin-top: 80px;
}
img{
	max-width: 100%;
}
.popup main{
	padding: 90px 0 30px;
}
* {
	outline: none;
}
/* header
============================================*/
header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
    z-index: 1;
	width: 100%;
	height: 80px;
	background: #000;
	padding: 0 3%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.popup header{
	background: #14143c;
}
.head_bar {
	width: 100%;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.head_bar .logoBox{
	width: 262px;
}
.head_bar .linkBox {
	width: calc(100% - 262px);
    padding-right: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.head_bar .linkBox ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.head_bar .header_award{
    width: 300px;
    padding-top: 20px;
}
.head_bar .header_award img{
    width: 100%;
}
.head_bar .linkArea a {
	display: block;
	color: #fff;
	margin-right: 20px;
}
.head_bar .linkArea .small {
	display: inline-block;
	font-size: 8px;
}
.head_bar .requestArea {
	width: 120px;
	margin-right: 10px;
}
.head_bar .reservArea {
	width: 120px;
}
#nav-container {
	position: fixed;
	height: 100vh;
	width: 100%;
	pointer-events: none;
}
#nav-container .bg {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	height: calc(100% - 70px);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .3s;
	transition: .3s;
	background: #000;
}
#nav-container:focus-within .bg {
	visibility: visible;
	opacity: .6;
}
/*ヘッダーまわりはサイトに合わせて調整してください*/
#nav-drawer {
  position: relative;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 40px;
	height: 30px;
	vertical-align: middle;
	position: absolute;
	top: -15px;
	right: 0;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 40px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -12px;
}
#nav-open span:after {
  bottom: -24px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #000;/*背景色*/
    color: #fff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(200%);
  transform: translateX(200%);/*左に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  -webkit-box-shadow: 6px 0 25px rgba(0,0,0,.15);
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-content ul {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
    padding:90px 5% 0;
}
#nav-content li a {
    color: #fff;
	padding: 10px 5px;
    font-size: 16px;
    letter-spacing: .1em;
    border-bottom: dotted 1px #fff;
	display: block;
	text-transform: uppercase;
	-webkit-transition: color .1s;
	transition: color .1s;
}
#nav-content li a:hover {
	color: #ccc;
}
#nav-content li a .kana{
	display: inline-block;
	font-size: 12px;
	margin-left: 10px;
}

#nav-content .cvArea{display:none;}
#nav-content .snsArea{display:none;}

/* footer
============================================*/
footer{
	width: 100%;
	padding: 60px 5% 10px;
	box-sizing: border-box;
	color: #fff;
	background: #000;
}
.footer_telArea{
	margin-bottom: 60px;
}
.footer_telArea a{
	display: block;
	color: #fff;
}
.footer_telArea_txt{
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 20px;
}
.footer_telArea_figure{
	max-width: 557px;
	margin: 0 auto 20px;
}
.footer_telArea_txt02{
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 10px;
}
.footer_telArea_txt03{
	font-size: 10px;
	line-height: 1.4;
	text-align: center;
}
.footer_bnrArea{
	margin-bottom: 60px;
}
.footer_bnrArea ul{
	max-width: 810px;
	margin: auto;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.footer_bnrArea li{
	width: 240px;
}
.footer_bottom{
	max-width: 990px;
	margin: auto;
	font-size: 10px;
}
.footer_bottom dl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
}
.footer_bottom dt{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 20px;
}
.footer_bottom dt span{
	display: inline-block;
	min-width: 90px;
	font-size: 16px;
	margin-right: 10px;
}
.footer_bottom dt a{
	display: block;
	max-width: 215px;
}
.footer_bottom .copy{
	text-align: center;
}
/* snsBox
===========================================*/
#snsBox .snsBoxInner{
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events: none;
}
.snsBoxInner > *{
	pointer-events: auto;
}
.snsBoxInner ul{
	width: 80px;
	height: 280px;
	background: #000;
	border-radius: 40px 0 0 40px;
	padding: 30px 0 30px 5px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.snsBoxInner li{
	width: 40px;
	height: 40px;
}
@media screen and (min-width: 751px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
    .spBTN{
        display: none;
    }
}
@media screen and (max-width:1024px) {
	header {
		width: 100%;
		height: 60px;
		padding: 0 3%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	main{
		margin-top: 60px
	}	
	.head_bar .logoBox {
		width: 180px;
	}
	.head_bar .linkBox {
		display: none;
	}
    .button{
        right: 10px;
    }
	#nav-content ul {
		height: auto;
		padding-top:10px;
	}
	#nav-content ul.cvArea{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		height: auto;
		padding: 20px 5%;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	}
    #nav-content ul.cvArea li{
		width: 48%;		
	}
    #nav-content ul.cvArea li a{
		padding: 10px 0;
        border-bottom: 0;
    }
	#nav-content ul.snsArea{
		display: none;
	}
	.sp.menu01{
        display: block;
        position: fixed;
        right: 80px;
    }
    .sp.menu01 a{
        display: block;
        width: 100%;
        color: #fff;
		font-size: 12px;
		letter-spacing: .075em;
    }
	.sp.menu01 .small{
		font-size: 10px;
	}
	.footer_bnrArea li{
		margin: 0 auto 10px;
	}
}
@media screen and (max-width:750px) {
	body {
		min-width: 320px;
		position: relative;
	}
	.wrap {
		width: 94%;
		margin: auto;
	}	
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	.head_bar .logoBox {
		width: 50%;
	}
	.head_bar .logoBox img{
		max-height: 50px;
	}	
	.imgFix,
	.imgFix img {
		max-width: 100%;
		height: auto;
	}
	#nav-content ul.snsArea{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		width: 100%;
		padding: 70px 15% 0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
	}	
    #nav-content ul.snsArea li{
		width: 20%;		
	}
    #nav-content ul.snsArea li a{
		padding: 10px 0;
        border-bottom: 0;
    }		
	.sp.menu01 {
		right: 16%;
	}
	#snsBox{
		display: none;
	}
	.spBTN {
		display: block;
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 0;
		clear: both;
	}
	.spBTN li{
		width: 25%;
		float: left;
		text-align: center;
	}
	.spBTN li a{
		display: block;
		padding: 5px 0;	
	}
	.spBTN li a img{
		max-height: 55px;
	}	
	.spBTN .remoteBTN{
		background: rgba(120, 120, 120,.85);
	}
	.spBTN .shiryoBTN{
		background: rgba(48, 20, 84,.85);
	}
	.spBTN .requestBTN{
		background: rgba(177, 165, 111,.85);
	}
	.spBTN .telBTN{
		background: rgba(0, 0, 0,.85);
	}	
	footer{
		padding: 40px 5% 75px;	
	}
	.footer_telArea{
		margin-bottom: 40px;
	}
	.footer_telArea_txt{
		font-size: 14px;
	}
	.footer_telArea_txt02{
		font-size: 12px;
	}
	.footer_bnrArea{
		margin-bottom: 40px;
	}
	.footer_bnrArea ul{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.footer_bottom dl{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.footer_bottom dt{
		margin: 0 auto 10px;
	}
	.footer_bottom dt span{
		font-size: 12px;
		min-width: auto;
	}
	/* パンクズ */
	div.pankuzu {
		width: 100%;
		height: 30px;
		background: rgba(255, 255, 255, 0.8);
	}
	div.pankuzu ul {
		width: 94%;
		margin: 0 auto;
	}
	div.pankuzu li {
		display: inline-block;
		font-size: 12px;
		line-height: 30px;
	}
	div.pankuzu li a {
		color: #282828;
		text-decoration: none;
	}
	div.pankuzu li a:hover {
		text-decoration: underline;
	}
	.fiximg img {
		width: 100%;
		height: auto;
	}
}