@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* =======================================
変数
======================================== */
:root {
  /* ブランドカラー */
  --red-color: #b84010;
}

/* =======================================
AOS
======================================== */

*[data-aos=fade-up] {
  transform: translateY(30px);/* 移動距離を指定 */
}

/* =======================================
共通
======================================== */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html {
  font-size: 20px;
  /* デフォルト16px → 20pxに変更 */
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  background-color: #fff;
  font-weight: 400;
  font-style: normal;
}

img {
  width: 100%;
}

a {
  transition: 0.7s;
  cursor: pointer;
}

.flex-box {
  display: flex;
}

@media (max-width: 768px) {
    html {
        font-size: .625vw;
    }
}


/* =======================================
ヘッダー
======================================== */
#header {
  width: 100%;
  position: fixed;
  height: 120px;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.7);
}

.header-inner {
  padding-left: 40px;
  padding-right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  width: 202px;
  transition: 0.7s;
}

.logo:hover {
  opacity: 0.6;
}

.logo a {
  display: block;
}

.logo h1 {
  font-size: 0;
}

#gNavi {
  margin-right: 30px;
}

.head_contents {
  display: flex;
  align-items: center;
}

.list-gnav {
  list-style: none;
  padding: 0;
  font-weight: 400;
  display: flex;
  flex-wrap: nowrap;
  /* ← 折り返しを防ぐ */
}

.list-gnav li {
  line-height: 1;
  position: relative;
  transition: 0.7s;
  padding: 0 12px;
  transition: 0.7s;
}

.list-gnav li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: block;
  line-height: 1;
}

.list-gnav li a:hover {
  color: var(--red-color);
}

.reservation-btn {
  background-color: var(--red-color);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  padding-left: 28px;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 35px;
  color: #fff;
  width: 180px;
  flex: 0 0 auto;
  text-align: right;
  background-repeat: no-repeat;
  background-size: 52px auto;
  background-position: left 19px center;
  background-image: url('../images/common/chopsticks-illust.svg');
}

.reservation-btn:hover {
  opacity: 0.7;
}


@media (max-width: 1350px) {
  #gNavi {
    margin-right: 10px;
}
.reservation-btn {
    background: none;
    background-color: var(--red-color);
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    padding-left: 15px;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 15px;
    color: #fff;
    width: 100px;
    flex: 0 0 auto;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 52px auto;
    background-position: left 19px center;
}
 #gNavi li:nth-child(7) {
  display: none;
 }
}

@media (max-width: 1170px) {
  #header {
    width: 1170px;
  }
}


/* =======================================
フッター
======================================== */
/* ===== Base ===== */
:root {
  --footer-bg: #333333;
  /* スクショに近い濃グレー */
  --footer-fg: #ffffff;
  --footer-line: rgba(255, 255, 255, .45);
  --footer-accent: #cfcfcf;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  font-feature-settings: "palt";
}

.site-footer a {
  color: var(--footer-fg);
  text-decoration: none;
}

/* ===== Layout ===== */
.footer-inner {
  width: 1280px;
  margin: 0 auto;
  padding: 72px 0 90px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  /* 左広め：右 */
  gap: 40px 64px;
}

/* 左カラム */
.footer-brand {
  margin-bottom: 60px;
}

.footer-brand a:hover {
  opacity: 0.6;
}

.footer-brand img {
  display: block;
  width: 318px;
  /* ロゴの見た目サイズは適宜調整 */
  height: auto;
}

.footer-address p {
  line-height: 2;
  font-style: normal;
  font-size: 18px;
}

.footer-address .tel {
  font-size: 27px;
  /* TELは大きく */
  font-weight: 600;
}

.footer-address .tel a {
  border-bottom: 0;
}

/* 右カラム：2カラムのメニュー */
.footer-right {
  padding-top: 40px;
}

.footer-nav {
  display: flex;
  gap: 0 70px;
}

.footer-col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  width: 280px;
}

.footer-col li a {
  display: block;
  padding-bottom: 15px;
  margin-bottom: 16px;
  line-height: 1;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-col li a:hover {
  color:var(--red-color);
}

.footer-col li:last-child a {
  margin-bottom: 0;
}

/* 下段：左にテキストリンク、右にボタン */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 20px;
  margin-top: 82px;
}

.footer-bottom-links {
  display: flex;
  gap: 0 40px;
  flex-wrap: wrap;
}


.footer-text-link {
  font-size: 18px;
}

.footer-text-link:hover {
  color:var(--red-color);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 15px 28px;
  line-height: 1;
  border: 1px solid var(--footer-fg);
  background: transparent;
  font-size: 18px;
  letter-spacing: .1em;
  transition: .25s ease;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, .08);
}

.line {
  margin-top: 5px;
}

.line img {
  width: auto;
} 

/* =======================================
Lightbox base
======================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;                 /* display:none を使わず、visibilityで制御 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  visibility: hidden;            /* 初期は見えない */
  opacity: 0;                    /* 初期は透明 */
  transition: opacity 0.7s ease, visibility 0s linear 0.7s; /* フェード用 */
}

/* 表示時（背景フェードイン） */
.lightbox.show {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.7s ease; /* 表示時は遅延を外す */
}

/* 画像だけズームアウトカーソル＋ドロップシャドウ */
.lightbox img {
  display: block; /* 余白ゼロに */
  width: 100%;
  height: auto;
  max-width: clamp(980px, 80vw, 1280px);
  max-height: 90vh;

  /* ← これを削除 */
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); */

  /* ← これを追加：画像輪郭に沿う影 */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45));
  /* Safari でもOK（必要なら） */
  -webkit-filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45));

  object-fit: contain;
  cursor: zoom-out;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* 表示時（画像がふわっと） */
.lightbox.show img {
  transform: scale(1);
  opacity: 1;
}

/* バツボタン */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.7s;
}
.lightbox-close:hover { opacity: 0.7; }

/* ギャラリー側はそのままでOK（任意のホバー効果） */
.facility-gallery img,
.sub-recipes-list img {
  cursor: zoom-in;
  transition: transform 0.7s ease;
  width: 100%;
  height: auto;
  display: block;
}
.facility-gallery img:hover,
.sub-recipes-list img:hover { 
  transform: scale(1.05); 
}

/* 間延びしないように中央固定 */
@media (min-width: 1600px) {
  .lightbox img {
    max-width: 1000px;
  }
}