@charset "utf-8";
/* CSS Document */

/* 基本設定： ページ全体 */

img[src$=".svg"] {
    width: 100%;
	line-height: 0;
	font-size: 0;
}

img {
    width: 100%;
	line-height: 0;
	font-size: 0;
	vertical-align: middle;
}

* {-webkit-box-sizing: border-box;
   -ms-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -o-box-sizing: border-box;
   box-sizing: border-box;
  }
 
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:0.9em;
	line-height: normal;
	color:#333;
	width:100%;
	-webkit-text-size-adjust: 100%;
	background-color:#F0EBE9;
}

body.fade-out {
  opacity: 0;
}

a.anchor{ display: block; padding-top: 200px; margin-top: -200px;}

/*----clearfix----*/
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix {
	display: inline-table;
	min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */
/*----clearfix----*/

/*----文字の装飾・マージン等----*/
.font-30 { font-size:30% !important;}
.font-40 { font-size:40% !important;}
.font-50 { font-size:50% !important;}
.font-60 { font-size:60% !important;}
.font-70 { font-size:70% !important;}
.font-80 { font-size:80% !important;}
.font-90 { font-size:90% !important;}
.font-110 { font-size:110% !important;}
.font-120 { font-size:120% !important;}
.font-130 { font-size:130% !important;}
.font-140 { font-size:140% !important;}

.margintop-1 { margin-top: 1% !important;}
.margintop-2 { margin-top: 2% !important;}
.margintop-3 { margin-top: 3% !important;}
.margintop-4 { margin-top: 4% !important;}
.margintop-5 { margin-top: 5% !important;}
.marginbottom-1 { margin-bottom: 1% !important;}
.marginbottom-2 { margin-bottom: 2% !important;}
.marginbottom-3 { margin-bottom: 3% !important;}
.marginbottom-4 { margin-bottom: 4% !important;}
.marginbottom-5 { margin-bottom: 5% !important;}
.marginbottom-6 { margin-bottom: 6% !important;}
.marginbottom-7 { margin-bottom: 7% !important;}
.marginbottom-8 { margin-bottom: 8% !important;}
.marginbottom-9 { margin-bottom: 9% !important;}
.marginbottom-10 { margin-bottom: 10% !important;}

.line-height-110 {line-height: 110%}
.line-height-120 {line-height: 110%}

.redText { color: #C00;}
.pinkText { color: #EB5A9F;}
.bold { font-weight: bold;}

/*----header----*/
header {
	background-color: #000;
	color: #fff;
	position: sticky;
	top: 0;
	z-index: 2;
	transition: 0.3s;
}

.header-inner {
	position: relative;
	padding: 3% 5%;
	display: flex;
	flex-direction: row;
	align-items: center; /* 上下中央に揃える */
	justify-content: flex-end;
	font-size: 90%;
}

.header-logo {
	position: absolute;
	top: 0%;
	left: 5%;
	display: flex;
	flex-direction: row;
	align-self: flex-start; /* 上下中央に揃える */
}

.header-logo img {
	width: 150px;
	margin-right: 20px;
	transition: 0.3s;
}

/* スクロール後 */
header.shrink .header-logo img {
  width: 100px;
}

.header-text {
}

.g-menu {
	display: flex;
	  flex-direction: column;
	flex: 1;
	padding: 20px;
}

.g-menu li{
	margin-right:0;
	margin-bottom: 20px;
}

/* ハンバーガー */
.hamburger {
  display: block;
  width: 30px;
  cursor: pointer;
  z-index: 200;
  position: relative;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
}

/* × */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

li.reserve-btn {
	color: #fff;
	background: #d80c18;
	font-weight: bold;
	font-size: 110%;
	width: 100%;
	font-family: 
	"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",
	"BIZ UDPGothic",
	Meiryo,
	sans-serif;
	align-items: center;
	text-align: center;
	padding: 0;
	border-radius: 0;
}

li.reserve-btn a{
	color: #fff;
}

/* ナビ */
nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #000;
  transition: 0.3s;
  z-index: 100;
  padding-top: 60px;
}

nav.active {
  right: 0;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 50;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}


/*----main----*/
main {
}

/*----footer----*/

/* 地図全体をモノトーンやセピアにする */
.custom-map iframe {
    filter: grayscale(60%);
}

footer {
	background-image: url("../img/common/bag.jpg");
	background-color: #fff;
}

.footer-inner {
	padding: 50px 30px 20px;
}

footer h2 {
	font-size: 150%;
	margin-bottom: 20px;
}

.footer-add {
	margin-right: 0;
}

.footer-add dl {
	margin: 0 0 10px;
}

.footer-add dt {
	font-weight: bold;
}

.footer-add dd {
	font-weight: 700;
}

.footer-inner-inner {
	display: flex;
	flex-direction: column;
}


.footer-menu {
	margin: 50px 0 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
	
.footer-menu li {
	margin-left: 0;
}

.phone-btn-footer {
	background-color: #000;
	padding: 5px;
	border-radius: 20px;
	text-align: center;
}

.phone-btn-footer img{
	width: 25px;
}

.reserve-btn-footer {
	background-color: #d80c18;
	padding: 5px;
	border-radius: 20px;
	text-align: center;
	font-size: 140%;
	color: #fff;
}

.reserve-btn-footer a {
	color: #fff;
}

.copyright {
	padding: 2px;
	background: #cec9bf;
	text-align: center;
	font-size: 80%;
}

/* PC・スマホ */
.pc-view { display: none;}
.sp-view { display: block;}

/* =====================
   PC
===================== */
@media (min-width: 768px) {

/* PC・スマホ */
.pc-view { display: block !important;}
.sp-view { display: none !important;}
	
/* スクロール後 */
header.shrink .header-logo img {
  width: 200px;
}

.header-logo img {
	width: 200px;
}

.header-inner {
	padding: 0 5%;
}

/* ハンバーガー */
  .hamburger {
    display: none;
  }

  nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
  }

  .g-menu {
    flex-direction: row;
	  align-items: center;
  }

.g-menu li{
	margin-right: 30px;
	margin-bottom: 0;
  }
	
  .g-menu li:last-child {
    margin-right: 0;
  }
	
  .g-menu li img {
	  width: 30px;
  }
	
.reserve-btn {
  background: #d80c18;
  color: #fff;
  font-weight: bold;
  font-size: 110%;
	width: 80px;
	margin-top: -20px!important;
	margin-bottom: -20px!important;
  align-self: stretch; /* 親の高さに合わせる */
  display: flex;       /* 中のaを中央揃えするなら */
  align-items: center;
	padding: 5px;
	border-radius: 20px;
}
	
.reserve-btn a {
	color: #fff;
	margin: 0 auto;
}

  .overlay {
    display: none;
  }

/* footer */
.footer-inner {
	padding: 50px 100px;
}
	
.footer-inner-inner {
	flex-direction: row;
	justify-content: space-between;
}
	
.footer-add {
	margin-right: 30px;
}

}

@media (min-width: 1000px) {
	
.footer-menu {
	flex-direction: row;
	gap: 0;
}
	
.footer-menu li {
	margin-left: 30px;
}
	
.footer-menu li:first-child {
	margin-left: 0;
}
	
}


