@charset "UTF-8";

/* ==========================================================================
   リセット & 共通定数設定
   ========================================================================== */
:root {
  --color-bg-dark: #0c2b1a;   /* 特徴的な和のディープグリーン */
  --color-bg-light: #f9f8f3;  /* 上品で柔らかなニュアンスホワイト */
  --color-gold: #c5a059;      /* 格式高さを添えるゴールド */
  --color-red: #a42c25;       /* 印象的な朱赤 */
  --color-text-main: #222222;
  --color-text-sub: #666666;
  --font-serif: "Anise Beautiful Mincho", "Times New Roman", "Noto Serif JP", "游明朝", serif;
  --font-sans: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.8;
  letter-spacing: 0.06em;
  overflow-x: hidden;
}

html, body, main {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* 共通コンテナ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-bg-dark);
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover { opacity: 0.7; }

img { max-width: 100%; height: auto; }

/* ==========================================================================
   固定追従ヘッダー（背景色なし・透明）
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 9999;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* TOP動画を過ぎたら付与されるクラス（深緑の帯） */
.site-header.is-active {
  background-color: #12502b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding: 0 5%;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ?ハンバーガーメニューボタン（絶対最前面化） */
.accordion-trigger-hamburger {
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 11000 !important; /* 他のどのレイヤーよりも上に配置 */
}

/* 3本線の共通スタイル */
.accordion-trigger-hamburger .hamburger-icon,
.accordion-trigger-hamburger .hamburger-icon::before,
.accordion-trigger-hamburger .hamburger-icon::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px; /* 視認性向上のため少し太く修正 */
  background-color: #ffffff; /* 白線で確実に目立たせる */
  transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
}

.accordion-trigger-hamburger .hamburger-icon {
  display: block;
  position: relative;
  background-color: #ffffff;
}
.accordion-trigger-hamburger .hamburger-icon::before { top: -8px; left: 0; }
.accordion-trigger-hamburger .hamburger-icon::after { top: 8px; left: 0; }

/* ?「×」印アニメーション（開いている時） */
.accordion-trigger-hamburger.is-open .hamburger-icon {
  background-color: transparent !important;
}
.accordion-trigger-hamburger.is-open .hamburger-icon::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #ffffff !important;
}
.accordion-trigger-hamburger.is-open .hamburger-icon::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #ffffff !important;
}

/* 言語切り替えドロップダウン */
.lang-dropdown {
  position: relative;
  z-index: 10000;
}

.lang-dropdown-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 0;
}

.lang-dropdown-btn::after {
  content: "";
  display: inline-block;
  width: 8px;  
  height: 8px; 
  border-right: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease;
}

.lang-dropdown-btn.is-open::after {
  transform: translateY(2px) rotate(-135deg);
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--color-bg-dark);
  border: 1px solid rgba(197, 160, 89, 0.3);
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 1100;
}

.lang-dropdown-menu button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0.8rem 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-dropdown-menu button:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.lang-dropdown-menu button.active {
  color: var(--color-gold);
  font-weight: bold;
  pointer-events: none;
}

/* ==========================================================================
   スマホ用 全画面メニュー
   ========================================================================== */
.sp-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9998; /* ボタンの邪魔をしない重なり順 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.sp-menu-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/menu.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.sp-menu-inner-box {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 380px;
  height: 80vh;
  background-color: rgba(18, 80, 43, 0.95);
  padding: 20px;
  box-sizing: border-box;
}

.sp-menu-border-frame {
  border: 2px solid rgba(251, 226, 197, 1);
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.sp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav-list > li {
  margin-bottom: 24px;
}
.sp-nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Yu Mincho", "YuMincho", serif;
  display: block;
}

.menu-item-main {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.menu-item-sub {
  list-style: none;
  padding-left: 5px;
  margin-top: 5px;
}
.menu-item-sub a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
	font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

.menu-item-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 1);
  margin-top: 4px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

.sp-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.sp-instagram-link {
  color: #ffffff;
}

.sp-menu-logo {
  height: 130px; /* ?枠内に綺麗に収めるために少しコンパクトに調整 */
  width: auto;
  object-fit: contain;
  margin-bottom: 0 !important; /* ?悪さをしていた余白を完全にゼロにリセット */
}

/* メニューに .is-active クラスがついている時、その中や後ろにある予約ボタンを消す */
.sp-menu-overlay.is-active ~ .hero-reserve-btn,
body:has(.sp-menu-overlay.is-active) .hero-reserve-btn {
  display: none !important;
}

/* ==========================================================================
   1. TOP動画セクション
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  overflow: hidden !important; 
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  width: 100%;      
  padding: 0 20px;
}

.hero-logo-img {
  width: 20%;        
  min-width: 120px;  
  height: auto;
  margin: 0 auto 2rem auto;
  display: block;    
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .hero-reserve-btn {
    position: fixed !important; 
    bottom: 30px !important;    
    right: 5% !important;       
    z-index: 9999 !important;   
    display: block !important;
    width: 140px; 
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

.hero-reserve-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-reserve-btn:hover {
  transform: translateY(-3px); 
}

/* ==========================================================================
   2. 導入（こだわり）セクション
   ========================================================================== */

/* 言語属性が「en（英語）」または「zh（中国語）」の時、縦書きを解除して通常の横書きに戻す */
html[lang="en"] .intro-body-vertical .body-vertical-wrapper,
html[lang="zh"] .intro-body-vertical .body-vertical-wrapper {
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  height: auto !important;
  max-height: none !important;
  text-align: center !important; /* 横書き時は中央揃えが見やすい */
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 各段落（pタグ）の間の余白 */
  padding: 0 20px;
}

/* 横書きに戻った時のテキスト個別の調整 */
html[lang="en"] .intro-body-vertical .body-vertical-wrapper p,
html[lang="zh"] .intro-body-vertical .body-vertical-wrapper p {
  writing-mode: horizontal-tb !important;
  text-align: center !important;
  line-height: 1.6;
  margin: 0 !important;
}

.intro-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 6rem 0;
  background-color: transparent !important;
  background-image: url('image/bg1.jpg');
  background-size: 100% 100% !important;   
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.intro-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.intro-lead-vertical {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
}

.intro-lead-vertical .vertical-wrapper {
  display: inline-block;
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  line-height: 2;
}

.intro-lead-vertical .vertical-line-1 { margin: 0; }
.intro-lead-vertical .vertical-line-2 { margin: 0; padding-top: 7em; }

.intro-image-top1 {
  max-width: 600px; 
  margin: 0 auto 4rem auto; 
  padding: 0 20px;
}

.intro-image-top1 img {
  display: block;
  width: 80%;               
  margin: 0 auto;           
  height: auto;
}

/* 英語表示時：intro-lead-vertical を横書きに変更 */
html[lang="en"] .intro-lead-vertical .vertical-wrapper {
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.05em !important; /* 英語のみ文字間隔を縮める */
  padding: 0 20px; /* 左右の余白を確保 */
  width: 100%;
  box-sizing: border-box;
}

/* 縦書き用の余白をリセット */
html[lang="en"] .intro-lead-vertical .vertical-line-2 {
  padding-top: 0 !important;
}

/* 英語表示時：intro-lead-vertical を横書きに変更 */
html[lang="en"] .intro-lead-vertical .vertical-wrapper {
  writing-mode: horizontal-tb !important;
  -webkit-writing-mode: horizontal-tb !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem; /* 行間の調整 */
}

/* 縦書き用の余白をリセット */
html[lang="en"] .intro-lead-vertical .vertical-line-2 {
  padding-top: 0 !important;
}

.intro-body-vertical {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.intro-body-vertical .body-vertical-wrapper {
  display: inline-block;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-family: var(--font-serif); 
  font-size: 0.95rem;             
  letter-spacing: 0.35em;          
  line-height: 2.4;               
  height: auto;
  max-height: 380px;              
  text-align: left;               
}

.intro-body-vertical .body-vertical-wrapper p:nth-of-type(3) {
  margin-left: 0 !important;
}
.intro-body-vertical .body-vertical-wrapper p:last-child {
  margin-left: 0;                 
}

/* ==========================================================================
   3. 歴史（History）セクション
   ========================================================================== */
.history-section {
  background-image: url('image/bg2.jpg');
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 6rem;
  position: relative;
}

.noren-divider {
  width: 100%;
  position: relative;
  top: -1px;
  z-index: 5;
}

.noren-divider img {
  display: block;
  width: 100%;
  height: auto;
}

.noren-divider .pc-noren { display: none; }
.noren-divider .sp-noren { display: block; }

.history-container {
  position: relative;
  z-index: 2;
}

.history-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: #12502b;
  text-align: left;
  letter-spacing: 0.08em;
  margin-top: 4rem;
  margin-bottom: 3rem;
  padding-left: 25px; 
}

.history-timeline {
  max-width: 100%;
  margin: 0 auto 4rem auto;
  padding: 0 45px 0 25px; 
}

.history-item {
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
}

.history-year-col {
  width: 55px;
  min-width: 55px;
  text-align: right;
  padding-right: 1rem;
  padding-top: 1.3rem;
}

.history-year-col .year-label {
  font-family: var(--font-sans); 
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
}	

.history-line-col {
  width: 2px;
  background-color: #12502b;
  position: relative;
}

.history-desc-col {
  flex: 1;
  padding-left: 1.2rem;
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.history-desc-col .event-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-main);
  margin-bottom: 0;
}

.history-desc-col .event-text.mt-sub {
  margin-top: 1rem;
}

.btn-area {
  text-align: right;    
  max-width: 100%;      
  padding-right: 45px;  
  margin-top: 2rem;     
}

.btn-more-history {
  display: inline-block;
  font-family: var(--font-sans); 
  background-color: #b83538;
  color: #ffffff;
  padding: 0.8rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-more-history::after {
  content: " \2192";
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* --- 歴史セクション内の写真と説明文の調整 --- */
.medal-top-img {
  margin: 3rem auto 1.5rem auto !important;
  width: 100%;
  max-width: 750px;
  text-align: center;
}

.history-medal-desc {
  max-width: 750px;
  margin: 0 auto 3rem auto; /* ?上下のスペースを少し広めに */
  padding: 0 45px 0 35px;
  box-sizing: border-box;
}

/* ?タイトルだけを中央表示 */
.history-medal-desc .medal-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.1rem; /* タイトルと本文の間のスペース */
  color: var(--color-text-main);
  font-size: 0.95rem;
}

/* ?本文は左寄せにし、行間スペースを広めに設定 */
.history-medal-desc .medal-body {
  text-align: left;
  font-size: 0.95rem;
  line-height: 2.0; /* ?行間を2.0（広め）に調整 */
}

/* PC表示時の調整 */
@media screen and (min-width: 768px) {
  .medal-top-img {
    margin: 4rem auto 2.5rem auto !important;
  }
  .history-medal-desc {
    margin: 0 auto 4rem auto;
    padding: 0 20px;
  }
  .history-medal-desc .medal-title {
    font-size: 1.1rem;
  }
  .history-medal-desc .medal-body {
    font-size: 0.95rem;
    line-height: 2.2; /* ?PCではさらにゆったり広めに */
  }
}

/* ==========================================================================
   4. メニュー画像 & タイトルセクション
   ========================================================================== */


.sushi-menu-section {
  margin-top: 0;
  padding-top: 0;
}
.sushi-hero-container {
  margin-top: 0;
  padding-top: 0;
  line-height: 0;
  width: 100%;
  text-align: center; 
}
.sushi-top-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.sushi-title-section {
  width: 100%;
  padding: 4rem 25px 2rem 45px; 
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  text-align: right;     
}

.sushi-main-title {
  font-family: var(--font-serif); 
  font-size: 4.2rem;              
  letter-spacing: 0.05em;
  text-align: right;              
  width: 100%;
  margin: 0 0 0.8rem 0;   
  line-height: 1;
  color: #1e4620; 
}
.sushi-main-title span { color: #b73a3f; }

.sushi-title-section .sushi-intro-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;      
  font-weight: 700;       
  line-height: 1.7;
  color: var(--color-text-main);
  text-align: right;      
  max-width: 90%;         
  width: 100%;
  margin: 0;
}

.sushi-title-section .sushi-intro-text p {
  margin: 0 0 0.5rem 0;
  text-align: right;
  white-space: nowrap;    
}

.sushi-intro-container {
  width: 100%;
  margin: 0; 
  padding: 0 25px; /* 左右の余白を確保 */
  z-index: 10;
  display: flex;       /* flexを使用 */
  justify-content: flex-start; /* 左寄せ */
  margin-bottom: 2rem;
}

.sushi-badge-wrap {
  position: relative; /* absoluteを解除 */
  top: auto;          /* top指定を無効化 */
  left: auto;         /* left指定を無効化 */
  width: 100%;
}

.sushi-badge {
  width: 110px;
  margin: 0;    
  display: block;
}

/* スマホ表示時、テキストの下に自然に配置されるように調整 */
.sushi-title-section {
  padding-bottom: 1rem; /* ボタンとの距離を確保 */
}

.sushi-badge img { width: 100%; height: auto; display: block; }

.sushi-slider-outer {
  margin-top: 120px; 
  position: relative;
  width: 100%;
  padding: 0; 
  box-sizing: border-box;
}

/* ==========================================================================
   5. 横スクロール・スライダー（Swiper）セクション
   ========================================================================== */
.sushi-menu-section-content {
  width: 100%;
  background-color: #f7f4eb; 
  padding: 9rem 0 5rem 0; 
  box-sizing: border-box;
  color: #2b2b2b;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: calc(35% - 80px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #b73a3f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background-color: rgba(247, 244, 235, 0.85); 
  transition: all 0.3s;
}
.swiper-button-prev-custom { left: 4%; border-color: #b73a3f; color: #b73a3f; }
.swiper-button-next-custom { right: 4%; border-color: #1e4620; color: #1e4620; }

.sushi-slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.sushi-img-box {
  width: 100%;
  max-width: 100%; 
  margin-bottom: 2rem;
}
.sushi-img-box img { width: 100%; height: auto; display: block; }

.sushi-detail-box {
  text-align: center;
  width: 100%;
  padding: 0 45px; 
  box-sizing: border-box;
}

.sushi-name {
  font-family: var(--font-serif); 
  font-size: 2rem;
  font-weight: normal;
  margin: 0 0 0.1rem 0; 
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.sushi-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.8rem 0; 
}
.sushi-divider .line {
  width: 250px;
  height: 2px;
  background-color: #b73a3f;
}
.sushi-divider .dot-left,
.sushi-divider .dot-right {
  width: 9px;
  height: 9px;
  border: 2px solid #1e4620;
  transform: rotate(45deg); 
  background-color: #f7f4eb;
}
.sushi-divider .dot-left { margin-right: -3px; }
.sushi-divider .dot-right { margin-left: -3px; }

.sushi-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.8;     
  margin: 0;
}

/* ==========================================================================
   6. ラストセクション
   ========================================================================== */
.sushi-last-section {
  width: 100%;
  display: flex;
  flex-direction: column;
	margin-top: 80px;
}
.sushi-last-visual { width: 100%; }
.sushi-last-visual img { width: 100%; height: auto; display: block; }

.sushi-last-content {
  width: 100%;
  background-color: #f7f4eb; 
  padding: 4rem 0;          
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sushi-last-badge {
  display: block;
  width: 70%;             
  max-width: 350px;       
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.sushi-last-badge:hover { opacity: 0.85; }
.sushi-last-badge img { width: 100%; height: auto; display: block; }

/* ==========================================================================
   7. フッターセクション
   ========================================================================== */
.sushi-footer {
  background-color: #0d4d2b;
  color: #ffffff;
  padding: 3.5rem 2rem 4rem 2rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

.footer-container {
  max-width: 500px; 
  margin: 0 auto;
}

.footer-shop-info { margin-bottom: 2rem; }
.footer-shop-info .shop-name {
  font-size: 1.15rem; 
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-shop-info p {
  font-size: 0.7rem; 
  line-height: 1.6;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.footer-shop-info .shop-tel a { color: #ffffff; text-decoration: none; }

.footer-map-wrap {
  width: 100%;
  position: relative;
  padding-top: 70%; 
  margin-bottom: 2rem;
  overflow: hidden;
}
.footer-map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.footer-access { margin-bottom: 2.5rem; }
.footer-access .access-title {
  font-size: 0.8rem; 
  font-weight: normal;
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.footer-access .access-list { list-style: none; padding: 0; margin: 0; }
.footer-access .access-list li {
  font-size: 0.75rem; 
  line-height: 1.7;
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: flex-start;
  letter-spacing: 0.05em;
}
.footer-access .access-list li .station { width: 55%; display: inline-block; }
.footer-access .access-list li .route { width: 45%; display: inline-block; }

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  position: relative;
}

.instagram-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.85rem; 
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.instagram-link .insta-icon { width: 22px; height: 22px; margin-right: 0.6rem; }

.footer-logo-daiki { width: 70px; }
.footer-logo-daiki img { width: 100%; height: auto; display: block; }

.copyright {
  font-size: 0.65rem; 
  color: #ffffff;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ==========================================================================
   7. フェードインアニメーション
   ========================================================================== */
.fade-in-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.fade-in-target.is-visible { opacity: 1; transform: translateY(0); }
.fade-in-target.delay-animation { transition-delay: 0.2s; }

.history-title.fade-in-target,
.sushi-main-title.fade-in-target {
  opacity: 0;
  transform: translateY(15px); 
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.history-title.fade-in-target.is-visible,
.sushi-main-title.fade-in-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PC表示時の画像ズームアニメーション設定 */
.hero-slider .swiper-slide {
  overflow: hidden; /* 拡大した画像が外にはみ出ないようにする */
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 5秒かけてゆっくり等倍から拡大する設定 */
  transition: transform 7s ease-out; 
  transform: scale(1.0);
}

/* 表示されているアクティブなスライドだけを拡大させる */
.hero-slider .swiper-slide-active img {
  transform: scale(1.08); /* 1.15倍までゆっくり近づく */
}

/* ==========================================================================
   8. PC向けグローバルメディアクエリ
   ========================================================================== */
@media screen and (min-width: 768px) { 
  .container { max-width: var(--max-width); padding-left: 2%; padding-right: 2%; }
  .section-title { font-size: 3.2rem; margin-bottom: 3.5rem; }

  .hero-logo-img { 
    width: 20%; 
    max-width: 160px; 
    min-width: 140px; 
  } 
  
  .hero-tagline { font-size: 1.3rem; }
  .intro-section { padding: 9rem 0 !important; }
  
  .intro-lead-vertical .vertical-wrapper {
    font-size: 2.4rem; 
    gap: 2.2rem;       
  }

  .intro-body-vertical .body-vertical-wrapper {
    font-size: 1.25rem;           
    line-height: 2.6;             
    max-height: 520px;            
  }
  
  .intro-body-vertical .body-vertical-wrapper p {
    margin-left: 2.5rem;          
  }
  .intro-body-vertical .body-vertical-wrapper p:nth-of-type(3) {
    margin-left: 0 !important;
  }	

  .intro-desc-en { font-size: 1.15rem; }

  /* 歴史 PC */
  .history-section { background-image: url('image/pcbg2.jpg'); }
  .noren-divider .sp-noren { display: none; }
  .noren-divider .pc-noren { display: block; }	
	
  .history-title {
    font-size: 4rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding-left: 40px;
  }
  
  .history-timeline {
    max-width: 750px;
    margin: 0 auto 4rem 100px;
    padding: 0 20px;
  }

  .history-year-col {
    width: 90px;
    min-width: 90px;
    padding-right: 2rem;
  }
  .history-year-col .year-label { font-size: 1.4rem; }
  .history-desc-col { padding-left: 2.5rem; }
  .history-desc-col .event-text { font-size: 1.05rem; }

  .btn-area {
    max-width: 750px;   
    margin: 2rem auto 0 100px; 
    padding-right: 20px; 
  }

  /* メニュー画像 PC用 */
  .sushi-top-img {
    width: 50%;
    margin: 0 auto; 
  }
	
  .sushi-title-section + .sushi-menu-section .sushi-badge-wrap {
    top: -6.0rem; 
    left: 40px; 
  }

  .sushi-title-section + .sushi-menu-section .sushi-badge {
    width: 180px; 
  }	

  .sushi-title-section {
    max-width: 750px; 
    margin: 0 auto;
    padding: 6rem 20px 3rem 20px;
  }
  
  .sushi-main-title { font-size: 3.5rem; }
  .sushi-menu-section { padding: 4rem 0 7rem 0; }
  
.sushi-intro-container {
    max-width: 750px;
    margin: 0 auto 4rem auto;
    justify-content: flex-start; /* PCでも左寄せで安定させる */
  }
	
	.sushi-badge {
    width: 180px;
  }
  
  .sushi-slider-outer { max-width: 850px; margin: 0 auto; }

  /* ==========================================================================
     予約ボタンのPC追従設定
     ========================================================================== */
  .hero-reserve-btn {
    position: fixed !important;
    bottom: 100px;
    right: 40px;
    width: 140px;
    height: auto;
    z-index: 99999 !important;
    display: block !important;
  }
  .hero-reserve-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  .hero-reserve-btn img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ==========================================================================
     フッター：左右2カラムレイアウト（PC版）
     ========================================================================== */
  .sushi-footer {
    padding: 5rem 3rem 3rem 3rem;
  }

  .footer-container {
    max-width: 1100px; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-shop-info .shop-name {
    font-size: 1.5rem; 
    margin-bottom: 1.5rem;
  }
  .footer-shop-info p {
    font-size: 1.05rem; 
    margin-bottom: 0.5rem;
  }

  .footer-access .access-title {
    font-size: 1.3rem; 
    margin-bottom: 1.5rem;
    border-bottom-width: 2px; 
  }
  .footer-access .access-list li {
    font-size: 1.05rem; 
    margin-bottom: 0.6rem;
  }

  .footer-shop-info,
  .footer-access {
    width: 45%;
    margin-bottom: 2.5rem;
  }

  .footer-map-wrap {
    width: 50%;
    padding-top: 38%;
    margin-bottom: 0;
    order: 2;
  }

  .footer-bottom-content {
    width: 100%;
    order: 3;
    margin-top: 3rem;     
    margin-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255); 
    padding-top: 2.5rem;
  }

  .instagram-link { font-size: 1.1rem; }
  .instagram-link .insta-icon { width: 26px; height: 26px; }
  .footer-logo-daiki { width: 90px; }
  
  .copyright {
    width: 100%;
    order: 4;
    text-align: left;
    font-size: 0.85rem;
  }

  .sushi-menu-section {
    margin-top: 80px !important; 
  }
	
	.sp-only { display: none !important; }
  .pc-only { display: block !important; }
  
  .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

/* ==========================================================================
     全画面メニュー：PC版背景切り替え
     ========================================================================== */
  .sp-menu-overlay .sp-menu-background {
    /* PCのときは背景画像を pcmenu.jpg に切り替える */
    background-image: url('image/pcmenu.jpg');
    
    /* PCの大画面に合わせて、ブラー（ぼかし）や明るさを微調整したい場合はここを調整 */
    filter: brightness(0.6) blur(2px); 
  }	
	
}

/* スマホ表示時 */
@media screen and (max-width: 767px) {
  .sp-only { display: block !important; }
  .pc-only { display: none !important; }
}

/* ==========================================
   ページ遷移のスムーズなアニメーション
   ========================================== */
body {
  animation: fadeInPage 0.4s ease-out forwards;
}
@keyframes fadeInPage {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

body.is-slide-out {
  animation: fadeOutPage 0.3s ease-in forwards;
}
@keyframes fadeOutPage {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
