@charset "utf-8";
/* ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
	file name : base.css
 : :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* ********************************************************************************
 * Link
 * ******************************************************************************** */
a {
	outline: none;
}
/* a:link */
a:link {
	color: #333;
	text-decoration: none;
}
/* a:active */
a:active {
	color: #333;
	text-decoration: none;
}
/* a:visited */
a:visited {
	color: #333;
	text-decoration: none;
}
/* a:hover */
a:hover {
	color: #333;
	opacity: .5;
}
.nolink {
	opacity: 0.4;
}
/* ********************************************************************************
 * Base Layout
 * ******************************************************************************** */
/* body */
body {
	min-width: 1250px;
	position: relative;
	line-height: 1.5;
	overflow-x: hidden;
}
main {
    display: block;
	width: 100%;
	padding: 0 0 30px;
}
.popup main{padding: 90px 0 30px;}
/* ********************************************************************************
 * div#header
 * ******************************************************************************** */
* {
	outline: none;
}
strong {
	font-weight: 600;
}

header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
    z-index: 1;
	width: 100%;
	height: 80px;
	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;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.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: 320px;
	padding-top: 20px;
}
.head_bar h1,
.head_bar h1 a {
	width: 100%;
}
.head_bar h1 img {
	width: 300px;
}
.head_bar .linkBox {
	width: calc(100% - 320px);
    padding-right: 60px;
}
.head_bar .linkBox ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.head_bar .header_award{
    width: 300px;
    padding-top: 20px;
}
.head_bar .header_award img{
    width: 100%;
}
.head_bar .linkArea {
	padding-top: 20px;
    margin-left: 20px;
}
.head_bar .linkArea a {
	display: block;
	color: #fff;
	padding-right: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.head_bar .requestArea {
	width: 120px;
}
.head_bar .reservArea {
	width: 120px;
}
.head_bar .requestArea img,
.head_bar .reservArea img {
	display: block;
	width: 100%;
}
#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: 30px;
  height: 22px;
  vertical-align: middle;
    position: absolute;
    top: -20px;
    right: 0;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
#nav-open p.nav_ico{
    position: absolute;
    color: #fff;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','メイリオ', Meiryo,sans-serif;
    bottom: -20px;
    font-size: 10px;
    letter-spacing: .075em;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: #14143c;
  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: #0d0015;/*背景色*/
    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 3% 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: #BF7497;
}
/*
#nav-container:focus-within #nav-content {
	transform: none;
}
*/
/* header end
============================================*/
footer {
	width: 100%;
	padding-top: 0px;
	margin: 0px;
	color: #fff;
}
footer .footer_cvArea {
	width: 100%;
	background: url(../img/bg_reservation.jpg) no-repeat center / cover;
	padding: 90px 0;
}
footer .footer_cvArea ul {
	width: 94%;
	max-width: 1200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    margin: auto;
}
footer .footer_request {
	width: 465px;
	margin-right: 30px;
}
footer .footer_request a {}
footer .footer_request img,
footer .footer_reserve img {
	width: 100%;
}
footer .footer_reserve {
	width: 465px;
}
footer .footer_reserve a {}
footer .footer_telArea {
	background: #0d0015;
	padding: 75px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
footer figure {
	width: 94%;
	max-width: 480px;
	margin: auto;
}
footer figure a {}
footer figure img {
	width: 100%;
}
.footer_bnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 75px;
}
.footer_bnr li {
    width: 240px;
    height: 80px;
}
.footer_bnr li:last-child{
    margin-left: 20px;
}
.footer_bnr a {
    display: block;
    width: 100%;
    height: 100%;
}
.footer_bnr img {
    width: 100%;
}
footer .footer_bottom {
	width: 100%;
	background: #14143c;
	font-size: 12px;
	height: 80px;
	padding: 12px 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
footer .footer_bottom .right{font-size: 10px;}
footer .footer_bottom ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 94%;
	max-width: 1200px;
	margin: auto;
}
.footer_bottom ul .left {
	width: 75%;
}
footer dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
footer dt {}
footer dt img {
	width: 215px;
	margin-right: 20px;
	padding-top: 8px
}
footer dt span {
	margin-right: 20px;
}
.footer_bottom ul .right {
	width: 35%;
	text-align: right;
	padding-top: 35px;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* page tpo link
===========================================*/
#page-top {
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 2000;
	width: 60px;
	display: none;
}
#page-top a {
	display: block;
	width: 60px;
}
#page-top a img {
	width: 100%;
	height: auto;
}
@media screen and (min-width: 481px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
	#page-top a:hover {
		opacity: 0.5;
	}
	#nav-content ul.cvArea{
		display: none;
	}
    .spBTN{
        display: none;
    }
}
@media screen and (max-width:480px) {
	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	header {
		width: 100%;
		padding: 0 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.head_bar .logoBox {
		width: calc(100% - 140px);
		max-width: 280px;
        padding-top: 0px;
	}
	.head_bar h1 img {
		width: 100%;
        max-width: 120px;
	}
	.head_bar .linkBox {
		display: none;
	}
    .button{
        right: 10px;
    }
    .sp.menu01{
        display: block;
        width: 90px;
        position: fixed;
        right: 45px;
        top:20px;
    }
    .sp.menu01 ul,
    .sp.menu01 ul li{
        width: 100%;
    }
    .sp.menu01 ul li a{
        display: block;
        width: 100%;
        color: #fff;
		font-size: 12px;
		letter-spacing: .075em;
    }
	#nav-content ul{
		height: auto;
	}
	#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%;
		padding: 0 3%;
		-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{
        border-bottom: 0;
    }
	#nav-content ul.cvArea li img{
		width: 100%;
	}
/*  
    ============================  */
	body {
		min-width: 320px;
		position: relative;
	}
	.wrap {
		width: 94%;
		margin: auto;
	}
	#content {}
	.imgFix,
	.imgFix img {
		max-width: 100%;
		height: auto;
	}
	/*footer bottom floatmenu
	=================================*/
	.spBTN {
		display: block;
		width: 100%;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 0;
		clear: both;
	}
	.spBTN li.shiryoBTN {
		width: 33.3%;
		float: left;
	}
	.spBTN li:nth-of-type(1).shiryoBTN
	/*a*/
		{
		/*	display: block;
	width: 100%;
*/
		padding: 5px 0;
			background: rgba(13, 0, 21,.85);
		/*opacity: 0.3;*/
		font-size: 16px;
		line-height: 30px;
		letter-spacing: 2px;
		color: #fff;
		text-align: center;
	}
	.spBTN li:nth-of-type(2).shiryoBTN a {
		display: block;
		width: 100%;
		padding: 5px 0;
		background: rgba(177, 165, 111, .85);
		font-size: 16px;
		line-height: 30px;
		letter-spacing: 2px;
		color: #fff;
		text-align: center;
	}
	.spBTN li:nth-of-type(3).shiryoBTN a {
		display: block;
		width: 100%;
		padding: 5px 0;
		background: rgba(101, 126, 212, .85);
		font-size: 16px;
		line-height: 30px;
		letter-spacing: 2px;
		color: #fff;
		text-align: center;
	}
	.spBTN li.shiryoBTN a:hover {
		text-decoration: none;
	}
	/*.spBTN li.shiryoBTN a::before{
	display: inline-block;
	content: "";
	border-left: 12px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-right: 10px;
	margin-bottom: -1px;
}
*/
	/* footer */
	footer {
		width: 100%;
		padding-top: 0px;
		margin: 0px;
		color: #fff;
	}
	footer .footer_cvArea{
		padding: 30px 0;
	}
	footer .footer_cvArea ul{
		display: block;
	}
	footer .footer_request{
		width: 80%;
		margin: 0 auto 20px;
	}
	footer .footer_reserve{
		width: 80%;
		margin: auto;
	}
	footer .footer_telArea{
		padding: 40px 0 20px;
	}
	footer .footer_bottom{
		height: auto;
	}
	footer .footer_bottom ul{
		display: block;
		padding-bottom: 90px;
	}
	.footer_bottom ul .left{
		width: 100%;
	}
	footer dl{
		display: block;
		font-size: 10px;
	}
	footer dt{
		width: 100%;
		text-align: center;
	}
	footer dd{
		width: 100%;
		text-align: center;
		margin: 10px auto;
	}
	.footer_bottom ul .right{
		width: 100%;
		padding: 0;
		text-align: center;
	}
	/* パンクズ */
	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;
	}

	.sp {
		display: block;
	}
	.pc {
		display: none;
	}
	.fiximg img {
		width: 100%;
		height: auto;
	}
	#page-top,#page-top a {
		display: none;
	}
}
/* hover  */
.fade a:hover img {
	filter: alpha(opacity=50);
	-moz-opacity: 0.50;
	opacity: 0.50;
}
