@charset "utf-8";
/*=============================
　common → 共通★骨組み
　style → 共通★修飾
　pagename* → 各ページ
　2020.09.07........... ver0.0
=============================*/

header {position: relative;}

#headerTop {
	width: 0;
	height: 0;}

#header {
  letter-spacing: 0;
	background: rgba(255, 255, 255, 0.7);
  background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,0.7) 100%);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;}
@media (min-width: 768px) {
  #header {
  	transition: .3s; }
}

#header > .container {
	display: flex;
	/*justify-content: space-between; ← 左右に分けたい時  */
	align-items: center;
	height: 7rem;}


#home:not(.open) #header {
	transform: translateY(-100%);}

#home:not(.open) #header.head_fix {
  transform: translateY(0);
/*  box-shadow: -10px 2px 10px rgba(0, 0, 0, 0.8);*/
}

.open #header.head_fix {
	transform: none;}

#header .header_logo {
	padding: 0 1rem;}
.header_logo_txt {
    display: block;
    font-size: 1rem;
    letter-spacing: .2rem;
    color: #fff;
    margin-top: -8px;}

.d_pc {	display: none;}
.d_sp {	display: block;}
@media only screen and (min-width: 992px) {
	.d_pc {
		display: block;	}
	.d_sp {
    display: none!important; }}

@media only screen and (min-width: 992px) {
	.header_right,
	.header_left { display: flex;}
}

@media only screen and (max-width: 991px) {
	#header .header_logo {
		width: calc(100% - 60px);}
}

.header_logo a {
  padding: 15px 0 0;
  width: 60%;
  height: 70px;}
.header_logo a img {
  height: 100%;}
@media (min-width: 992px) { 
  .header_logo a {
    width: 100%;}
}


/* == Gloval Nav ===================================*/

#gNav {
  display: flex;
  justify-content: space-between;}

#gNav a,
#gNav label {
	color: #fafafa;
	font-size: 1.5rem;
}
@media (max-width: 575px) {
#gNav a {
  font-size: 1.4rem;}
}
#gNav a:hover {
	text-decoration: none;
}

#gNav a:focus {
	color: #fafafa;
	text-decoration: none;
}

@media only screen and (min-width: 992px) {
	nav {
		display: flex;
	}
	#gNav_btn {
		display: none!important;
	}
	.gNav_menu {
		padding: 0;
		display: flex;
		justify-content: flex-end;
    align-items: center;
		flex-wrap: wrap;	}
	.gNav_menu > li {
		vertical-align: top;
		margin: 0;
		padding: 0;	}
	.gNav_menu a,
  .gNav_menu label {
		text-decoration: none;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
		display: block;
		margin: 0;
		padding: 0 2rem;
    line-height: 40px;
		cursor: pointer;
		position: relative;	}
	.gNav_menu .txt_hv a::after {
		content: '';
		width: 0;
		height: 1px;
		background: #fafafa;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		transition: .5s;	}

	.gNav_menu .txt_hv a:hover::after {
		width: 5rem;	}
}


.gNav_contact a::before {
  content: 'ご予約・お問い合わせ';
  font-size: 14px;
  text-align: center;
  position: absolute;
  top: -7px;
  left: 0;
  right: 0;
  letter-spacing: 1.2px;}
@media only screen and (max-width: 991px) {
  .menu_sub {
    position: relative;
    top: 0;
    padding: 0;
    width: auto;}
  .menu_sub li {
    width: auto;
    height: 0;
    overflow: hidden;
    transition: all 0.5s;}
  .gNav_contact a::before {
    background: none!important;}
}

#gNav a {opacity: .9;}
.gNav_contact a {
  position: relative;
  padding-top: 20px;
  padding-bottom: 10px;}

@media (min-width: 991px) {
  .gNav_contact.pc_only {
    display: flex;
    justify-content: end;
    margin-left: auto;
    width: 200px;
    padding: 10px;
    height: 74px;
    font-size: 2.2rem;
    text-align: center;}
  .gNav_contact a {
    color: #333;
  }
  .gNav_contact a::before {
      top: 4px;}}



.gNav_contact.pc_only a {
  width: 100%;
  background-color: rgba(255,254,254,0.6);
}

.gNav_contact.sp_only a {
  color: #fafafa;
	font-size: 1.1rem;
  padding-left: 1em;
  line-height: 40px;
	position: relative;
  display: block;	}






/* プルダウンメニュー */

.menu_sub {
  position: absolute;
  left: 0;
  top: 50px;
  /*padding: 0 0 0 30%;*/
  line-height: 1.2;
  width: 100vw;
  background-color: rgba(1,107,211,0.7);
  list-style: none;
  /*visibility: hidden;*/
  z-index: 9999;
  transition: .5s ease-out;
}
@media (min-width: 992px) { 
  .menu_sub {
    /*padding: 10px 0 0 0;*/
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: left;}
  
  .menu_sub li {
    height: 0;
    overflow: hidden;
    width: 30em;
    transition: .3s;}
  /*#gNav .accordion:checked + ul li,*/
  #gNav .menu_sub_box:hover .menu_sub li {
    height: 4rem;
    overflow: visible;} 
}

.menu_sub li a.text-white {
  line-height: 4rem;
  transition-duration: 0!important;
}
.menu_sub li a.text-white:hover,
.menu_sub li a.text-white:checked {
  color: #093387!important;
}
input { display: none;}
label { cursor :pointer;}



/*SP Gloval Nav */

@media only screen and (max-width: 991px) {
		/*背景固定
	html.bk_fixed {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}*/
	#gNav .d_sp {
		display: block;	}
	#gNav_btn {
		height: 27px;
		padding: 0;
		margin: 0;
		border: 0;
		background-color: transparent;
		position: absolute;
		top: 2rem;
		right: 1.5rem;
		z-index: 1500;
		cursor: pointer;	}
	.open #gNav_btn {
		position: fixed;	}
	#gNav_btn > div {
		width: 30px;
		height: 27px;
		position: relative;	}
	#gNav_btn > div > span {
		width: 100%;
		height: 3px;
		background: #fff;
		left: 0;
		display: block;
		position: absolute;
		-webkit-transition: all .5s;
		transition: all .5s;	}
	#gNav_btn > div > span:nth-of-type(1) {
		top: 0;	}
	#gNav_btn > div > span:nth-of-type(2) {
		top: calc(50% - 2px);	}
	#gNav_btn > div > span:nth-of-type(3) {
		bottom: 0;	}
	.open #gNav_btn > div > span:nth-of-type(1) {
		-webkit-transform: translateY(12px) rotate(45deg);
		-ms-transform: translateY(12px) rotate(45deg);
		transform: translateY(12px) rotate(45deg);	}
	.open #gNav_btn > div > span:nth-of-type(2) {
		opacity: 0;	}
	.open #gNav_btn > div > span:nth-of-type(3) {
		-webkit-transform: translateY(-12px) rotate(-45deg);
		-ms-transform: translateY(-12px) rotate(-45deg);
		transform: translateY(-12px) rotate(-45deg);	}
	#gNav {
		text-align: center;
		background: rgba(61, 18, 18, 0.8);
		display: flex;
		flex-direction: column;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 990;
		visibility: hidden;
		opacity: 0;
		-webkit-transition: all .1s;
		transition: all .1s;	}
	body.open #gNav {
		visibility: visible;
		opacity: 1;	}
	#gNav > nav {
		text-align: left;
		background: linear-gradient(to top, rgba(0,0,0,.2) 0%, rgba(0,0,0,.7) 60%, rgba(0,0,0,0.8) 100%);
		width: 100%;
		overflow: auto;
		/*スクロール時メニュー固定*/
	}
	#gNav > nav::-webkit-scrollbar {
		display: none;	}
	#gNav > nav .d_sp:first-child {
    width: 30%;
    margin: 4rem auto 1rem;  }
	#gNav a,
  #gNav label {
    line-height: 5rem;
		text-align: center;
		text-decoration: none;
		display: block;
		position: relative;	}
  .gNav_menu > li {
		border-top: 1px solid rgba(213, 213, 213, .3);  }
	#gNav a:hover {
		opacity: 0.5;	}
	.gNav_menu {
		width: 100%;
		margin-bottom: 0;	}
	body.open {
		/*背景固定*/
		overflow: hidden;
		/*position: fixed;*/
	}
	#gNav .gNav_contact {
		width: 100%;
		height: auto;
		padding: 1rem;
		background: #000;	}
	#gNav .gNav_contact a {
		max-width: 100%;
		margin: 0 auto;
    color: #fafafa;
    font-size: 2.4rem;
    font-weight: bold;}
  
	/*TOP ファーストビュー用*/
	#home header:not(.head_fix) #gNav_btn {
		transform: translateY(calc(200% + 15px));	}
	#home.open header:not(.head_fix) #gNav_btn {
		transform: translateY(0);	}
  
  /* 三 ハンバーガーメニューの色 三 */
	#home:not(.open) header:not(.head_fix) #gNav_btn > div > span {
		background: rgba(255,255,255,0.8);
	}


}

@media only screen and (max-width: 767px) {
	#gNav_btn {
		top: 1.5rem;
		right: 1rem;
	}
}

@media (max-width: 575px) {
  #gNav > nav .d_sp:first-child {
    width: 45%;} 
}



/* == スクロールダウン ================== */

.main_img { position: relative;}

.scrolldown {
  opacity: .6;
  display: block;
  padding: 10px 10px 46px;
  overflow: hidden;
  color: #fafafa;
  font-size: 5px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .2em;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr; /* 縦書きにする */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 20%;}
.scrolldown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 40px;
  background: #fff;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;  }
.scrolldown:hover {
  color: #fff;
  opacity: .4;}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%; }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%; }}

.scroll { 
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3vh;
  margin: 0 auto;
  z-index: 11;
}



/* == ページトップ =================== */

.pagetop {
	position: fixed;
	bottom: 7rem;
	right: 0rem;
  z-index: 999;}

@media only screen and (max-width: 991px) {
	.pagetop {
		right: 0;
		bottom: 1.5rem;
/*		position: absolute;
		z-index: 100;*/
	}
}

.pagetop a {
	display: inline-block;
	position: relative;
	padding: 40px 10px 0;}

.pagetop a::before { /* 上に伸びる線かざり */
/*	content: '';*/
	width: 1px;
	height: 40px;
	background: #000;
	position: absolute;
	left: 50%;
	top: -10px;
	transition: .5s;}
/* ▲
.pagetop a::after {
	content: '';
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-bottom: 14px solid #000;
	position: absolute;
	left: 50.5%;
	top: -24px;
	transform: translatex(-50%);
	transition: .5s;
}*/

.pagetop a:hover::before {
	height: 70px;
	top: -40px;}
.pagetop a:hover::after {
	top: -54px;}
.pagetop img {
	width: 26px;
	height: auto;}
@media (max-width: 575px) {
  .pagetop img {
    width: 20px;}}
 

/* 最後に反転する白いページトップ */
.whitepagetop {
  display: none;}

@media only screen and (max-width: 668px) {
	.whitepagetop {
    display: block;
    position: absolute;
	  top: 20px;
		right: 0;
/*		position: absolute;
		z-index: 100;*/
	}
  .whitepagetop a {
    display: inline-block;
    position: relative;
    padding: 40px 10px 0;
  }
  .whitepagetop a::before {
    content: '';
    width: 1px;
    height: 40px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: -10px;
    transition: .5s;
  }
  .whitepagetop a:hover::before {
    height: 70px;
    top: -40px;
  }

  .whitepagetop a:hover::after {
    top: -54px;
  }

  .whitepagetop img {
    width: 11px;
    height: auto;
  }
}


/* =================================
 Footer
===================================*/

.title_box01 span {
  display: block;
  font-size: 1.2rem;}
.title_box01 {
  height: 80px;
  line-height: 2;
  margin-bottom: 0;
  position: relative;}
.contact_info .title_box01::after {
  content: '';
  background: url("../../images/bg_titlebuck.svg") no-repeat top center;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50%;
  left: 12%;}

.shop_logo {
  flex: 0 1 30%;
  padding: 0 0 0 10px;}
.shop_tell {
  flex: 0 0 70%;
  font-size: 2.6rem;
  padding: 0 10px;}

a.shop_tell {color: #fff;}
.shop_tell span {
  font-size: .6em;
  vertical-align: baseline;}
p.shop_info {
  letter-spacing: 0em;
  font-size: .8rem;
  text-align: center;}
@media (min-width: 576px) {
  p.shop_info {
    letter-spacing: .2em;}
 
}

.contact_info_box {
  width: 100%;
  height: 300px;
  margin-top: -150px;
  padding-top: 200px;}

#btn_contact.bg_pattern_01::before {
  content: none;}
#btn_contact.bg_pattern_01::after {
  background-size: 6vw auto;
  transform: none;
  opacity: .3;}
@media (min-width: 576px) {
  #btn_contact.bg_pattern_01::after {
    background-size: 4vw auto;} 
}
@media (min-width: 992px) {
  #btn_contact.bg_pattern_01::after {
    background-size: 2vw auto;} 
}
.footer_info_box {
  background-color: rgba(107, 29, 0, 0.6);
  width: 100%;
  padding: 20px;
  color: #fff;
  text-align: center;}
.top_box a {
  width: 100%;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: .5rem;
  background-color: #382900;
  display: block;}

@media (min-width: 576px) {
  .footer_info_box .row {
    justify-content: center;}
  .footer_info_box .shop_logo {
    padding: 0 0 20px 10px;
    width: 15%;}
  .footer_info_box .shop_logo,
  .footer_info_box .shop_tell {
    flex: inherit; }
 
}



footer {
  font-size: 1.6rem;
  letter-spacing: 0;
  background: linear-gradient(45deg, #000, #260505, #151314);
  color: #fff;
  position: relative;}
footer a {
  color: rgba(255, 255, 255, 1);}
footer a:hover {
  opacity: .9!important;
  color: rgba(174, 174, 174, 0.8)!important;}
footer .container {
  padding-bottom: 30px;
}


.footer_nav.row {
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 20px;}
.footer-logo-inner {
  padding: 15px;
  width: 50%;}
.footer-contact {
  font-size: 1.2rem;
  padding: 15px;
  width: 100%;}
.footer-contact-nav { margin: 0;}
.footer-contact-nav li {
  padding-right: 2em;
  padding-bottom: 1em;}
@media (min-width: 576px) {
  .footer-logo-inner {
    width: 20%;}
  .footer_nav.row {
    flex-direction: row;}
  .footer-contact {
    width: 80%;}
  .footer-contact-nav.row {
    justify-content: space-between; }
  
 
}


.copyright {
  background-color: #fafafa;
  text-align: center;
  color:#282828;
  font-size: 13px;
  padding: 1rem;}

@media (max-width: 320px) {
  .shop_tell {
    font-size: 2.2rem;}
  .copyright,
  .footer-contact {
    font-size: 1rem;}
}

footer iframe{ filter: grayscale(50%);}





/* == ページトップ =================== */

.pagetop {
	position: fixed;
	bottom: 7rem;
	right: 0rem;
  z-index: 999;}

@media only screen and (max-width: 991px) {
	.pagetop {
		right: 0;
		bottom: 1.5rem;
/*		position: absolute;
		z-index: 100;*/
	}
}

.pagetop a {
	display: inline-block;
	position: relative;
	padding: 40px 10px 0;}

.pagetop a::before { /* 上に伸びる線かざり */
/*	content: '';*/
	width: 1px;
	height: 40px;
	background: #000;
	position: absolute;
	left: 50%;
	top: -10px;
	transition: .5s;}
/* ▲
.pagetop a::after {
	content: '';
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-bottom: 14px solid #000;
	position: absolute;
	left: 50.5%;
	top: -24px;
	transform: translatex(-50%);
	transition: .5s;
}*/

.pagetop a:hover::before {
	height: 70px;
	top: -40px;}
.pagetop a:hover::after {
	top: -54px;}
.pagetop img {
	width: 26px;
	height: auto;}
@media (max-width: 575px) {
  .pagetop img {
    width: 20px;}}
 

/* 最後に反転する白いページトップ */
.whitepagetop {
  display: none;}

@media only screen and (max-width: 668px) {
	.whitepagetop {
    display: block;
    position: absolute;
	  top: 20px;
		right: 0;
/*		position: absolute;
		z-index: 100;*/
	}
  .whitepagetop a {
    display: inline-block;
    position: relative;
    padding: 40px 10px 0;
  }
  .whitepagetop a::before {
    content: '';
    width: 1px;
    height: 40px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: -10px;
    transition: .5s;
  }
  .whitepagetop a:hover::before {
    height: 70px;
    top: -40px;
  }

  .whitepagetop a:hover::after {
    top: -54px;
  }

  .whitepagetop img {
    width: 11px;
    height: auto;
  }
}





















