@charset "UTF-8";
/*------------------------------------------------------------------------
フォント共通
------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;700&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.min.css");

/*------------------------------------------------------------------------
共通
------------------------------------------------------------------------*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.pc {
    display: block;
}

.sp {
    display: none;
}


.wrapper {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 960px;
}

.wrapper::after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}


@media (max-width: 767px) {
.pc {
        display: none;
    }

.sp {
        display: block;
    }
}

/* -------------------------------------------
ボディ
-------------------------------------------*/
body {
    margin: 0;
    padding: 0;
	font-family:"Hiragino Sans","メイリオ","meiryo","游ゴシック","YuGothic", sans-serif;
    font-weight: 400;
	line-height: 2rem;
    color: #606060;
 }

/* -------------------------------------------
テキストリンクU
-------------------------------------------*/
a:link,
a:visited{
	color: #606060;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}



/* -------------------------------------------
イメージ
-------------------------------------------*/
.fig {
    display: block;
    padding: 0;
    margin: 0px auto 20px auto;
    max-width: 600px;
}

.fig img {
    display: block;
    width: 100%;
    height: auto;
}

.photo {
    display: block;
    overflow: hidden;
    padding: 0;
    margin: 0 auto 10px auto;
}

.photo img {
    display: block;
    width: 100%;
    height: auto;
}

/* -------------------------------------------
ヘッダー　ナビゲーション
-------------------------------------------*/

/* -- 上部固定 個別ページ --*/
#header{
	height: 150px;/*高さ指定*/
	width:100%;/*横幅指定*/
	position: fixed;/*fixedを設定して固定*/
	z-index: 999;/*最前面へ*/
	opacity: 1;
}
/* -- 上部固定 TOP用 --*/
#header.top_h{
	opacity: 0;
}

/*　上に上がる動き　*/
#header.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0.9;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove{
	animation: DownAnime 1s forwards;
}

#header.top_h.DownMove{
	animation: DownAnimeTop 1s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0px);
  }
  to {
  	opacity: 0.9;
	transform: translateY(0);
  }
}


@keyframes DownAnimeTop{
  from {
  	opacity: 1;
	transform: translateY(-100px);
  }
  to {
  	opacity: 0.9;
	transform: translateY(0);
  }
}

header a:link {
	color:#fff;
	font-weight: 400;
} 
header a:visited {
	color:#DDDDDD;
}
header a:hover {
	color:#B9A583; 
	font-weight: 400;
}

header .reserve {
    display: inline;
	position: relative;
}
header .reserve a::before{
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../img/common/reservemark.svg");
  background-size: contain;
  vertical-align: middle;
  margin: 0 5px 0 0;
}
header .reserve a:link{
    display: block;
    padding: 5px 0 5px 0;
    margin: 3px 0 0 0;
	width: 100%;
    text-decoration: none;
	font-size: 0.9em;
	font-weight: 400;
	vertical-align: middle;
	text-align: center;
	color: #fff;
	border: solid 1px #fff;
}
header .reserve a:hover{
    text-decoration: none;
	color: #fff;
	border: solid 1px #fff;
	filter: opacity(60%);
	transition : 1s;
}
header.headcol{
	position:relative;
	background-color: #222529;
	margin: 0;    
	padding: 10px 0 0 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	color: #fff;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.4));
}
header.headcol a:hover{
  filter: opacity(60%);
  transition : 1s;
}
header.headcol h2{
	color: #fff;
	font-size: 0.7em;    
}
header.headcol h2 br{
	display: none;
}
.navbar-brand {
	position: relative;
	display: block;
    padding: 0;
    margin: 0 auto 0 auto;
	width: 130px;
	height: auto;
	float: left;
}
.navbar-brand img {
    display: block;
    width: 100%;
    height: auto;
	margin: 0 0 0 10px;
}

.navbar-left{
	}
.navbar-right{
	}
.navbar-nav {
	justyify-content:flex-end;
	margin: 0 10px 0 auto;
}
.nav-item,
.dropdown-item{
	font-size: 0.9em;
}

.navbar .navbar-toggler,
.navbar .navbar-toggler	{
  border-color: rgba(0,0,0,0);
	}
.navbar .navbar-toggler-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(239,239,239,1.00)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}

@media (max-width: 959px) {
.navbar-right{
	padding: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	}
}
@media (max-width: 767px) {
#header{
	height: auto;
}
header.headcol h2 br{
	display:block;
}
header .reserve a::before{
  width: 15px;
  height: 15px;
  margin: 0 5px 3px 0;
}
header .reserve a:link{
    margin: 3px 0 0 0;
	padding: 0;
	width: 90%;
	float: right;
}	
.navbar-toggler:focus {
   box-shadow: none !important;
}

.navbar-brand img{
	max-width: 100px;
	}
.navbar-left{
	width: 50%;
	}		
.navbar-right{
	}
.dropdown-menu {
	text-align: center;
	}
li.dropdown {
	line-height: 1.2rem;
	}
li.dropdown-menu {
	line-height: 1.2rem;
	}
.navbar-nav {
	margin: 0;
}
.nav-item,
.dropdown-item{
	display: block;
}
}

/* -------------------------------------------
フッター
-------------------------------------------*/

footer a:link {
	color:#fff;
	font-weight: 400;
} 
footer a:visited {
	color:#DDDDDD;
}
footer a:hover {
	color:#B9A583; 
	font-weight: 400;
} 

footer {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 50px 0 20px 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    background: -moz-linear-gradient(top, #222529, #0C0A0A);
    background: -webkit-linear-gradient(top, #222529, #0C0A0A);
    background: linear-gradient(to bottom, #222529, #0C0A0A);
	color: #fff;
	opacity: 0.9;
}


footer .telno {
    display: inline;
}
footer .reserve {
    display: inline;
}
footer .telno a::before{
  content: '';
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("../img/common/telmark.svg");
  background-size: contain;
  vertical-align: middle;
  margin: 0 10px 3px 0;
}
footer .reserve a::before{
  content: '';
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url("../img/common/reservemark.svg");
  background-size: contain;
  vertical-align: middle;
  margin: 0 10px 3px 0;
}

footer .telno a:link,
footer .reserve a:link{
    display: block;
    padding: 12px 10px 10px 10px;
    margin-bottom: 1rem;
    text-decoration: none;
	font-size: 1.8em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #fff;
	border: solid 1px #fff;
}
footer .telno a:hover,
footer .reserve a:hover{
    text-decoration: none;
	color: #fff;
	border: solid 1px #fff;
	filter: opacity(60%);
	transition : 1s;
}


footer p {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
    font-size: 1em;
    font-style: normal;
}
footer p a:link,
footer p a:visited{
		color: #fff;
}

footer p.adress {
    font-size: 1em;
}

footer .logo {
    width: 150px;
}
footer copyright {
    display: block;
    padding: 0;
    margin: 30px 0 30px 0;
    font-size: 0.6em;
    font-style: normal;
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

@media (max-width: 767px) {

}


/* -------------------------------------------
ページトップリンク
-------------------------------------------*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#7E4142;
	border-radius: 10px;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.5em;
	transition:all 0.3s;
	opacity: 0.8;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpArrow{
	animation: UpAnime2 0.5s forwards;
}
@keyframes UpAnime2{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownArrow{
	animation: DownAnime2 0.5s forwards;
}
@keyframes DownAnime2{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}