@charset "utf-8";
img {
}
.smp-on {
    /* スマホで表示、PCで非表示 */
    display: block;
}

.smp-off {
    /* スマホで非表示、PCで表示 */
    display: none;
}
.sp-space{
	display: block;
    width: 100%; 
    height: 1rem;
}
/*======================================================================================
●共通
========================================================================================*/
/*********************ヘッダー*********************/
header{
}
/*********************上・ロゴ**********************/
.header-warp{
	padding: 0;
}
.header-warp2{
	padding: 0;
}
.header-area{
    background: #232D43;
	height: 5.3rem;
}
.header-inner{
    width: 90%;/*幅の指定*/
    max-width: 100%;
    height:100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
	padding: 0;
	margin: 0 auto;
}
.logo-area{
    display: flex;
    height: 4.375rem;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    justify-content: flex-start;
    align-items: center;
}
.logo-text-area {
    align-items: center;
}
.logo{
	margin: 1.5rem 0 0 2rem;
}
.logo img{
	width: 3rem;
}

.br-sp {
	 /* PCで改行しない、スマホで改行 */
    display: inline;
}
.header-info {
    display: none;
}
.reserve {
  border: none;
  font-size: 0.8rem;
}
.logo-text .nihon {
    font-size: 1rem;
	margin-right: 0.5rem;
}
.info-hours .bar, .footer-hours .bar {
    display: none;
  }
  .info-hours .holiday {
    display: block;
    margin-top: 1em;
	text-align: center;
	font-size: 0.75rem;
  }
.logo-text a {
    display: flex;
    align-items: center;
}
/*********************ナビゲーション*********************/
.globalnavi{display: none}
.sp-globalnavi{display: block}

header nav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -100%; /* 調整 (例: -100%) */
	width: 100%;
	height: 100vh;
	background: #FFF;
	transition: right 0.6s; /* all より対象プロパティを明示する方がベター */
	opacity: 0.95;
    overflow-y: auto; /* nav自体にスクロールを持たせることも検討 */
}

header nav.panelactive {
	right: 0;
	/* position: fixed; は header nav で指定済みなので不要 */
	/* transition: all 0.6s; も同様 */
}

/* header nav.panelactive ul のスタイルは削除またはコメントアウト */

header nav ul.sp-menu {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin: 3.125rem 0; /* このマージンでulの位置を調整 */
	/* overflow: scroll; はnavに持たせるか、ulに持たせるか明確に。
	ulがposition:absoluteでないなら、navにoverflow-y:autoが良いことが多い */
	position: absolute; /* これがnav内での配置基準になる */
	top: 0; /* marginと競合するため、どちらかで位置を決める。例：top: 3.125rem; left:0; right:0; bottom: 3.125rem; margin:0; */
	left: 0;
	width: 100%; /* navの幅に合わせる */
	/* height: calc(100% - 6.25rem); 親のnavに対して100%の高さからマージン分を引くなど */
	overflow-y: auto; /* ulがスクロールする場合 */
	-webkit-overflow-scrolling: touch;
}
header nav ul.sp-menu li {
	border-bottom: 0.0625rem dashed #000;
}

header nav ul.sp-menu li a {
	padding: 1rem 0;
	border-radius: unset; /* デフォルトでunsetなので指定不要な場合が多い */
	font-size: 1.25rem;
	font-weight: 700;
	display: block; /* inline-blockから変更 */
	width: 100%;
	text-align: center;
	letter-spacing:0.0625rem;
	color: #333; /* 文字色を指定 */
	text-decoration: none; /* 下線を消す */
}

header nav ul.sp-menu li a:hover {
	background-color: #f0f0f0; /* ホバー時の背景色（例） */
}
.top-images-main img:first-child {
    display: block;
    height: auto;
    width: 100%;
    height: 30vh;
    object-fit: cover;
}
.logo-overlay {
    max-height: 80%
}
  /* smp-nav */
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    top: 1.6rem;
    z-index: 9999; /*ボタンを最前面に*/
    right: 1.2rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
  }

  .openbtn p {
    font-size:0.55rem;
    font-weight: 700;
    color: #FFF;
    position: absolute;
    top: -0.875rem;
    left: 0.85rem;
	  transition: color 0.4s; /* 色が滑らかに変わるアニメーションを追加 */
  }
  /* activeクラスがついた時に文字色を黒にする */
  .openbtn.active p {
    color: #000;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0.875rem;
    height: 0.1875rem;
    background-color: #FFF;
    width: 70%;
  }
/* activeクラスがついた時に線の色を黒にする */
  .openbtn.active span {
    background-color: #000;
  }
  .openbtn span:nth-of-type(1) {
    top: 0.9375rem;
  }

  .openbtn span:nth-of-type(2) {
    top: 1.4375rem;
  }

  .openbtn span:nth-of-type(3) {
    top:1.9375rem;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 1.125rem;
    left: 1.125rem;
    transform: translateY(0.375rem) rotate(-45deg);
    width: 50%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 1.875rem;
    left: 1.125rem;
    transform: translateY(-0.375rem) rotate(45deg);
    width: 50%;
  }
/*********************トップページ*********************/
.swiper-slide img {
    aspect-ratio: 4 / 5; /* アスペクト比 4:5 */
	height: 70vh;
	height: 70dvh;
}
.tel {
  font-size: 1.6rem;
}
.reserve {
    margin-right: 0;
}

.top-images-main {
    margin-top: 5.3rem;
}
/*********************店主あいさつ*********************/
.greeting-box {
    padding: 0 0 2rem 0;
}
.greeting-wrapper {
    width: 86%;
	padding: 3rem 0 1rem 0;
}
.catchphrase {
    font-size: 1.4rem;
	font-weight: bold;
	color: #DDB447;
}
.sp-only {
    display: inline;
  }
.greeting-text p {
    line-height: 2.5rem;
    margin: 0;
}
.greeting-photo {
    flex-direction: column;
}
.greeting-photo img {
    width: 100%;
}
/*********************ご昼食*********************/
.lunch-wrapper {
    padding: 2.5rem 0;
	text-align: center;
}
p.course-catch{
	width: 80%;
	margin: 0 auto;
    line-height: 1.75rem;
}
h2.course-title{
	text-align: center;
    margin: 1.5rem 0 0.5rem 0;
	font-size: 1.2rem;
}
.lunch-box img, .dinner-box img {  /*昼食・夕食共通*/
    display: block;
    height: 30vh;
    width: 100%;
    object-fit: cover;
}
.label-wrapper,.label-wrapper-dinner {  /*昼食・夕食共通*/
	display: none;
}
.lunch-flex, .dinner-flex {  /*昼食・夕食共通*/
    display: flex;
    gap: 0;
    width: 86%;
    flex-direction: column;
}
.label-text-sp, .label-text-sp-dinner{
	text-align: center;
    color: #7E6626;
    font-size: 2rem;
    line-height: 1.2;
    font-family: 'Yuji Syuku', serif;
	display: block;
}
.label-text-sp-dinner{
	color: #DDB447;
}
.course-line, .course-line-bento {  /*昼食・弁当共通*/
    justify-content: flex-end;
	display: block;
	text-align:center;
}
.course-note {
    width: 86%;
    margin: 0 auto;
}
/*********************ご弁当*********************/
.bento-box {
    margin: 1.2rem 1rem;
	border: 0.3rem solid #7E6626;
}
.course-line-bento{
	padding: 0;
}
/*********************料理長おすすめ極上コース*********************/
.special-wrapper {
	width: 86%;
}
.photo-note {
    text-align: center;
}
h2.course-title-special {
    padding: 0.5rem 0;
}
.special-wrapper {
    padding-bottom: 1rem;
}
.special-menu-label {
    width: 86%;
}
.special-box {
    padding: 2rem 0 3rem 0;
}
/*********************ご利用案内*********************/
.guide-box {
    margin: 0 auto 1.5rem auto;
    width: 86%;
}

/*********************下・フッター・インフォメーション*********************/
.footer-hours{
	width: 86%;
	margin: 0 auto;
}
.footer-title {
    padding-top: 1rem;
}
/*********************下・ナビゲーション*********************/
#fnavi {
	width:100%;
	margin: 1.25rem auto 0.25rem auto;
	padding:0;
}
#fnavi ul{
	margin: 0 auto;
	padding: 0.625rem 0;
	flex-direction: column;
	margin-bottom: -0.3rem;
	}
#fnavi ul li{
	border-bottom: solid 0.0625rem #A3A3A3;
	border-right: none;
	font-size:1rem;
	display: block;
	margin:0;
	padding: 0;
	}
#fnavi ul li a{
	margin: 0;
	padding:1.25rem;
	display: block;
	font-size: 1rem;
	}	
#fnavi ul .noborder{
	padding:0 0 0 0.5rem;}
.privacy{
	text-align: center;
	padding: 0 0 1rem 0;
}	
.address{
	height:4.375rem;
	line-height:4.375rem;
	margin:0;
	font-size:0.75rem;/*文字の大きさ指定*/
}
.instagram-text {
  display: inline;
}
.instagram-icon {
  display: none;
}
#fnavi ul li:last-child {
  border-bottom: none;
}
/******************************---------共通　終---------******************************/ 

/* 記事内の画像end */

/* ページリンク */

.news-blog-area span.oldpage	{}

.news-blog-area span.newpage	{}

.news-blog-area p.pagelink a	{
}
.news-blog-area p.pagelink	{
}
.news-blog-area .old-icon,.new-icon{
}
/* ページリンクend */

.news-blog-inner .news-btn{
	width: 70%;
	margin:2.5rem auto 1.5rem  auto;
}
.news-blog-inner .news-btn a{
	font-size:1rem;
	padding:1.375rem;
	letter-spacing: 0.09375rem;
}