@charset "UTF-8";

:root {
  --primary-color: #3aa088;
  --primary-dark: #2f6f62;
  --text-color: #333333;
  --bg-light: #ffffff;
  --bg-grey:#f2f2f2;
  --title-gr: #777777;
}

html { overflow-x: clip; }
body {
  font-family: "Noto Sans JP", 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: var(--text-color); margin: 0; padding: 0; width: 100%; overflow-x: clip; background-color: var(--bg-light);
}

/* ==========================================
   1. グローバルナビゲーション（共通ベース構造）
========================================== */
.main-header {
  width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  box-sizing: border-box;
}

.header-left { display: flex; align-items: center; }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 0.8rem; }
@media (min-width: 768px) { .header-right { gap: 1.2rem; } }

.main-header .logo-text { font-size: 1.5rem; font-weight: bold; letter-spacing: 0.15em; text-decoration: none; }
.main-header .logo-text svg { width: 80px; }

.sticky-ticker-container { flex-grow: 1; max-width: 45%; overflow: hidden; margin: 0 0.5rem; }
.ticker-swiper { height: 24px; line-height: 24px; }
.ticker-swiper .swiper-slide { text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-swiper a { text-decoration: none; font-size: 0.75rem; font-weight: 500; }
@media (min-width: 768px) { .ticker-swiper a { font-size: 0.85rem; } }

.header-icon-link { font-size: 1.2rem; text-decoration: none; display: flex; align-items: center; }
@media (min-width: 768px) { .header-icon-link { font-size: 1.3rem; } }

.menu-toggle-btn { background: none; border: none; font-size: 1.6rem; cursor: pointer; padding: 0; line-height: 1; display: flex; align-items: center; }
@media (min-width: 768px) { .menu-toggle-btn { font-size: 1.8rem; } }

/* ==========================================
   2. フルスクリーンメニュー（共通）
========================================== */
.fullscreen-menu { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100dvh; 
  background-color: var(--primary-color); 
  z-index: 2000; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.4s ease, visibility 0.4s ease; 
}
.fullscreen-menu.active { 
  opacity: 1; 
  visibility: visible; 
}

/* --- ヘッダー位置と完全同期させる上部バー --- */
.fullscreen-menu .menu-header-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.7rem 0.5rem 0.6rem 0.5rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .fullscreen-menu .menu-header-bar {
    padding: 0.7rem 0rem 0.6rem 0rem;
  }
}

/* --- 閉じるボタンのスタイル --- */
.menu-close-btn { 
  background: none; 
  border: none; 
  color: #fff; 
  font-size: 1.6rem;
  cursor: pointer; 
  padding: 0; 
  line-height: 1; 
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { 
  .menu-close-btn { 
    font-size: 1.8rem;
  } 
}

.fullscreen-menu .menu-logo { color: #fff; font-size: 2.2rem; font-weight: bold; letter-spacing: 0.25em; margin-bottom: 3rem; }
.fullscreen-menu ul { list-style: none; padding: 0; text-align: center; margin-top: 2rem; }
.fullscreen-menu ul li { margin: 1.2rem 0; }
.fullscreen-menu ul li a { font-weight:700; color: #fff; font-size: 1.3rem; text-decoration: none; letter-spacing: 0.15em; transition: opacity 0.3s; }
.fullscreen-menu ul li a:hover { opacity: 0.7; }

/* ==========================================
   3. フッター（共通・SPファースト設計）
========================================== */
.main-footer-green { 
  background-color: var(--primary-color); 
  color: #fff; 
  padding: 3rem 0 4rem 0; 
}

/* ロゴ下部の余白（スマホ表示） */
.footer-huge-logo { 
  font-size: 4rem; 
  font-weight: bold; 
  letter-spacing: 0.2em; 
  line-height: 1; 
  margin-bottom: 1rem; 
}

.footer-huge-logo svg { 
  width: 150px; 
  max-width: 50vw;
  height: auto;
}

/* ブランドコンセプトテキスト（Noto Serif JP） */
.footer-concept-tagline {
  font-family: "Noto Serif JP", serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #ffffff;
  opacity: 0.95;
  margin: 0;
  line-height: 1.6;
}

/* 電話注文ブロック（SP） */
.footer-tel-box {
  margin-top: 1.8rem;
  margin-bottom: 0.5rem;
  padding: 1.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.footer-tel-lead {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  opacity: 0.95;
}

.footer-tel-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.footer-tel-number i {
  font-size: 1.35rem;
  margin-right: 0.55rem;
  position: relative;
  top: -1px;
}

.footer-tel-number:hover {
  opacity: 0.8;
  color: #ffffff;
}

.footer-tel-hours {
  font-size: 0.68rem;
  margin: 0.75rem 0 0 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* 住所情報の余白（スマホ表示） */
.foot-address { 
  margin-top: 1.8rem; 
  font-size: 0.75rem; 
  line-height: 1.8; 
  margin-bottom: 2.5rem; 
  opacity: 0.9;
}

.footer-info-text { 
  font-size: 0.9rem; 
  opacity: 0.85; 
  line-height: 1.8;
}

/* メインリンク：SP時は押しやすい2列グリッド */
.footer-bottom-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 8px;
  padding: 0 1rem;
}

.footer-bottom-links a { 
  color: #fff; 
  text-decoration: none; 
  font-size: 0.85rem; 
  opacity: 0.9; 
  font-weight: 700;
  display: block;
  padding: 8px 4px 8px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15); 
  text-align: left;
}
.footer-bottom-links a:hover { opacity: 1; text-decoration: underline; }

/* サブリンク：SP時 */
.footer-bottom-links-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.footer-bottom-links-sub a {
  font-size: 0.7rem;
  font-weight: 400;
  border-bottom: none; 
  padding: 4px 4px 4px 8px;
  text-align: left;
  display: block;
}

/* ==========================================
   フッター PC表示用メディアクエリ（上書き設定）
========================================== */
@media (min-width: 992px) {
  .main-footer-green {
    padding: 1rem 0 3rem 0;
  }

  .footer-huge-logo { 
    margin-bottom: 0.9rem; 
  }

  .footer-huge-logo svg { 
    width: 11vw; 
    max-width: none;
  }

  .footer-concept-tagline {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
  }

  /* 電話注文ブロック（PC） */
  .footer-tel-box {
    margin-top: 2.2rem;
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
  }

  .footer-tel-lead {
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
  }

  .footer-tel-number {
    justify-content: flex-start;
    font-size: 2.05rem;
    cursor: default;
    pointer-events: none;
  }

  .footer-tel-number i {
    font-size: 1.55rem;
    margin-right: 0.6rem;
  }

  .footer-tel-hours {
    font-size: 0.7rem;
    margin-top: 0.7rem;
    white-space: nowrap;
  }

  .foot-address { 
    margin-top: 2rem;
    margin-bottom: 3.5rem; 
    font-size: 0.7rem;
    line-height: 200%;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
  }

  .footer-bottom-links a {
    display: inline-block;
    margin-right: 1.5rem;
    padding: 0;
    border-bottom: none;
    text-align: right;
  }

  .footer-bottom-links a:last-child {
    margin-right: 0;
  }

  .footer-bottom-links-sub {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
    margin-top: 0;
  }

  .footer-bottom-links-sub a {
    margin-right: 1.5rem;
    padding: 0;
    font-size: 0.6rem;
  }
  
  .footer-bottom-links-sub a:last-child {
    margin-right: 0;
  }
}
/* ==========================================
   4. ABOUT US セクション（共通）
========================================== */
.aboutus-section { background-color: #f2f2f2; padding:8rem 0 10rem;}

.about-column {
  padding-top: 5px;
  display: block;
  transition: opacity 0.3s ease;
}

.about-column:hover {
  opacity: 0.85;
  cursor: pointer;
}

.about-col-title {
  color: var(--primary-color);
  font-family: Poppins, sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.05em;
}

.about-divider {
  position: relative;
  width: 100%;
  height: 2px; 
  background-color: var(--primary-color);
  border: none;
}

.about-divider::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.about-column:hover .about-divider::after {
  transform: translate(4px, -50%) rotate(45deg);
}