@charset "utf-8";

/* =========================================================
   基本フォント・リセット
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Hiragino Sans", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

h1, h2, h3, h4 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  letter-spacing: .04em;
  color: #333;
}

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

ul { list-style: none; }
a { text-decoration: none; color: #444; transition: .3s; }
img { max-width: 100%; display: block; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =========================================================
   Layout
========================================================= */
#wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
}

#contents {
  padding: 0 0 50px;
}

/* =========================================================
   Top Info Bar
========================================================= */
#top-info-bar {
  width: 100%;
  background: #A3CDBA;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 3000;
  padding: 4px 0 !important; /* PC/Tab Padding */
  transition: opacity .3s, transform .3s;
}

#top-info-bar.hide {
  opacity: 0;
  transform: translateY(-20px);
}

.top-info-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: .05em;
  white-space: nowrap;
}

#site-catch.sitecatch-mobile {
  display: none;
}

/* =========================================================
   Header (PC Base)
========================================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1500;
}

.header-inner {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  width: 120px;
}

/* ロゴがh1になってもデザインを変えない設定 */
h1.header-logo {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

/* 念のため画像サイズも再指定（既存CSSがあれば不要ですが安全策として） */
h1.header-logo img {
  width: 120px; /* PCでのサイズ */
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  h1.header-logo img {
    width: 82px; /* スマホでのサイズ */
  }
}



/* --- PC Navigation --- */
#pc-nav {
  flex: 1;
  margin: 0 30px;
}

#pc-nav .gnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

#pc-nav .gnav-list > li {
  position: relative;
}

#pc-nav .gnav-list > li > a {
  padding: 10px 8px;
  font-size: 15.5px; /* 少し大きめに */
  letter-spacing: .05em;
}

#pc-nav .has-dropdown:hover .dropdown-panel {
  display: block;
}

/* --- Dropdown 共通 --- */
.dropdown-panel {
  display: none;
  position: absolute;
  top: 34px;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  padding: 20px 24px;
  white-space: nowrap;
  z-index: 2000;
}

/* Large Dropdown */
.dropdown-panel.large-panel {
  padding: 20px 22px !important;
}
.dropdown-panel.large-panel .dropdown-inner {
  display: flex;
  gap: 24px !important;
  padding: 0 4px;
}

.nav-column { min-width: 150px; }
.nav-column h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
  padding-left: 2px;
}

.nav-column ul {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.nav-column ul li {
  margin-bottom: 7px;
}
.nav-column ul li a {
  font-size: 13px;
  color: #555;
  padding-left: 2px !important;
  display: inline-block;
}
.nav-column ul li a:hover {
  color: #6ca889;
}
.dropdown-panel.large-panel .nav-column:last-child h3 {
  margin-top: 0;
}

/* Small Dropdown */
.dropdown-panel.small-panel ul li {
  margin-bottom: 8px;
}
.dropdown-panel.small-panel a {
  font-size: 14px;
}


/* --- Header Icons --- */
.header-icons .icon-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.icon-capt a {
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
}
.icon-capt a:hover { color: #6ca889; }

.icon-svg {
  width: 26px; /* PCサイズ */
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}
.icon-svg svg {
  width: 26px;
  height: 26px;
}

.icon-label {
  font-size: 10px !important;
  letter-spacing: .03em;
  text-align: center;
}

/* --- 検索窓の表示・非表示デザイン --- */
.header-icons {
  position: relative;
}

.search-box-area {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  width: 320px;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  z-index: 2000;
}

.search-box-area.show {
  display: block;
  animation: fadeInDown 0.3s ease;
}

.header-search-form {
  display: flex;
  gap: 8px;
}

.header-search-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fdfdfd;
  outline: none;
  transition: .3s;
}
.header-search-input:focus {
  border-color: #A3CDBA;
  background: #fff;
}

.header-search-submit {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.header-search-submit:hover {
  background: #A3CDBA;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .search-box-area {
    width: 94vw;
    right: -50px;
    top: 60px;
  }
}

/* =========================================================
   SIDR（スマホメニュー）
========================================================= */
.sidr {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80vw;
  max-width: 320px;
  height: 100%;
  background: #faf9f6;
  overflow-y: auto;
  overflow-x: hidden !important;
  z-index: 999999;
  transition: right .35s ease;
  -webkit-overflow-scrolling: touch;
}

html.sidr-open, body.sidr-open {
  position: fixed;
  overflow: hidden !important;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.sidr, .sidr * {
  max-width: 100%;
  box-sizing: border-box;
}

.sidr-main-menu {
  padding: 16px 0;
  font-size: 15px;
  line-height: 1.7;
}

.sidr-main-menu > li {
  padding: 14px 28px;
  border-bottom: 1px solid #e4e4e4;
}

.sidr-main-menu .section-title {
  font-weight: 450;
  letter-spacing: .08em;
  padding: 16px 28px;
  background: #f3f3f1;
}

.sidr-main-menu .toggle {
  cursor: pointer;
  padding: 14px 28px;
  font-weight: 450;
  letter-spacing: .06em;
}
.sidr-main-menu .toggle.small {
  padding: 10px 32px;
  opacity: .9;
}

.sidr-main-menu .child {
  display: none;
  background: #f8f8f6;
}
.sidr-main-menu .child.opened {
  display: block;
}

.sidr-main-menu .child li {
  padding: 0;
}
.sidr-main-menu .child li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
}

.sidr-main-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
}
.sidr-main-menu .menu-item .menu-icon svg {
  width: 22px;
  height: 22px;
}
.sidr-main-menu .menu-item .menu-label {
  font-size: 15px;
}

.sidr-close-btn-wrap {
  padding: 14px 22px 12px;
  text-align: right;
  border-bottom: 1px solid #e4e4e4;
  background: #faf9f6;
}
.sidr-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #555;
}
.sidr-close-btn:hover { color: #6ca889; }
.sidr-close-icon svg { width: 24px; height: 24px; display: block; }


/* =========================================================
   Mobile Optimization (Header & Top Bar)
   ※ 複数の重複定義を整理し、最新の「コンパクト設定」に統合
========================================================= */
@media (max-width: 768px) {
  /* Top Info Bar */
  #top-info-bar {
    padding: 5px 0 !important;
    text-align: center;
    font-size: 13px;
  }
  .top-info-inner { display: block; padding: 0; }
  .top-left { display: none !important; }
  .top-right {
    display: block; width: 100%; text-align: center; margin: 0;
    font-size: 13px; font-weight: 500;
  }

  /* Site Catch (Mobile Only) */
  #site-catch.sitecatch-mobile {
    display: block;
    text-align: center;
    padding: 6px 0 8px !important;
    margin: 0 !important;
    font-size: 12px !important;
    color: #666;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  /* Hide PC Nav */
  #pc-nav { display: none !important; }

  /* Header Header */
  .site-header { border-bottom: 1px solid #eee; }
  
  /* Compact Header Inner */
  .header-inner {
    padding: 6px 14px; /* コンパクト化 */
    min-height: 58px;
  }

  /* Logo */
  .header-logo img {
    width: 82px; /* スマホ最適サイズ */
    height: auto;
  }

  /* Icons Area */
  .header-icons .icon-nav {
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    align-items: center;
  }
  .header-icons .icon-nav li {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Icon Button */
  .icon-capt a {
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Icon SVG */
  .icon-svg {
    width: 22px;
    height: 22px;
    margin-bottom: 1px;
  }
  .icon-svg svg {
    width: 22px;
    height: 22px;
  }

  /* Icon Label */
  .icon-label {
    font-size: 10px !important;
    white-space: nowrap;
    line-height: 1.1;
  }
}

/* 小画面（360px以下）の微調整 */
@media (max-width: 360px) {
  .header-icons .icon-nav { gap: 10px; }
  .icon-capt a { min-width: 36px; }
}


/* =========================================================
   Footer (New Layout)
========================================================= */
#footer {
  background: #f9f8f5;
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid #e6e6e6;
}

/* 全体枠：PCは左右レイアウト */
.footer-layout-new {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* 左側：ブランドエリア */
.footer-brand-side {
  width: 28%;
  min-width: 240px;
  padding-right: 20px;
}
.footer-logo img {
  width: 130px;
  margin-bottom: 15px;
}
.footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
}

/* SNSアイコン */
.footer-sns-nav {
  display: flex;
  gap: 16px;
}
.sns-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.9rem;
  text-decoration: none;
  transition: .3s;
}
.sns-link:hover {
  color: #A3CDBA;
  opacity: 0.8;
}
.sns-link svg {
  width: 24px;
  height: 24px;
  color: #333;
  transition: .3s;
}
.sns-link:hover svg {
  color: #A3CDBA;
  transform: translateY(-2px);
}
.sns-label {
  font-family: sans-serif;
  letter-spacing: 0.05em;
}

/* 右側：リンク集エリア */
.footer-links-side {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 10px;
}

/* 各カラム */
.footer-col {
  width: 23%;
  min-width: 140px;
  margin-bottom: 0;
  border: none;
}

/* 見出し */
.footer-col h4.footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
  letter-spacing: 0.05em;
}

/* リンク */
.footer-col ul li { margin-bottom: 0; }
.footer-col ul li a {
  display: block;
  padding: 6px 0;
  color: #666;
  font-size: 0.88rem;
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #A3CDBA;
  padding-left: 4px;
}

/* コピーライト・PAGE TOP */
.footer-copy {
  text-align: center;
  font-size: .85rem;
  color: #666;
  margin-top: 15px;
}
.footer-pagetop {
  text-align: center;
  margin-top: 10px;
}
.footer-pagetop a {
  color: #6ca889;
  font-size: .9rem;
}


/* Footer: タブレット・スマホ対応 */
@media (max-width: 900px) {
  .footer-layout-new {
    flex-direction: column;
  }
  .footer-brand-side {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    text-align: center;
  }
  .footer-logo img { margin: 0 auto 15px; }
  .footer-sns-nav { justify-content: center; }
  
  .footer-links-side { gap: 30px; }
  .footer-col { width: 45%; }
}

@media (max-width: 768px) {
  .footer-links-side { display: block; }
  .footer-col {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .footer-col h4.footer-title {
    margin: 0;
    padding: 14px 0;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
  }
  .footer-col h4.footer-title::after {
    content: "+";
    font-weight: 300;
  }
  .footer-col.open h4.footer-title::after {
    content: "-";
  }
  .footer-col ul {
    display: none;
    padding-bottom: 15px;
  }
  .footer-col.open ul {
    display: block;
  }
}

/* ======================================================
   フリーページ共通レイアウト (Free Page Layout)
====================================================== */
.free-page-container {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 60px 20px 0; /* ヘッダー被り防止の余白 */
  color: #444;
  line-height: 1.85;
}

/* --- 見出しデザイン --- */
.free-page-container h1 {
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  letter-spacing: 0.05em;
  color: #333;
}

.free-page-container h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 60px 0 24px;
  padding-left: 15px;
  border-left: 5px solid #A3CDBA; /* ブランドカラー緑 */
  color: #333;
  line-height: 1.4;
}

/* h3（小見出し） */
.free-page-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: 5px solid #A3CDBA; /* 緑の太線 */
  color: #333;
  line-height: 1.4;
  border-bottom: none;
}

/* センター揃えの見出し（h2等で使用） */
.center-heading {
  text-align: center;
  margin-bottom: 40px !important;
  padding-left: 0 !important;
  border-left: none !important;
}

/* --- 本文・リスト --- */
.free-page-container p { margin-bottom: 24px; font-size: 1rem; }

.free-page-container ul,
.free-page-container ol {
  margin-bottom: 30px;
  padding-left: 20px;
  background: #fafafa;
  padding: 20px 20px 20px 40px;
  border-radius: 4px;
}

.free-page-container li { margin-bottom: 8px; }

.free-page-container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 0 auto 30px;
}

/* アンカーリンクの位置調整（ヘッダー被り防止） */
.anchor-target {
  padding-top: 0;
  margin-top: 0;
  scroll-margin-top: 130px; /* 最新ブラウザ用 */
}

/* 汎用クラス */
.center-text { text-align: center; }
.no-border {
  border: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}
.text-link {
  text-decoration: underline;
  color: #333;
}
.link-text {
  text-decoration: underline;
  color: #333;
}
.small-note, .small-text {
  font-size: 0.9rem;
  color: #666;
}


/* =========================================
   【汎用パーツ】レイアウト・ボックス
========================================= */

/* A. グリッド（PC2列 / SP1列） */
.free-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0 60px;
}

/* 3列グリッド */
.free-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 60px;
}

/* B. 強調パネル（背景色付きの囲み） */
.free-panel {
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fdfbf7;
  border: 1px solid #efe8d8;
}

/* 白背景バリエーション */
.free-panel.white {
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.free-panel h3,
.free-panel h4 {
  margin: 0 0 15px !important;
  border: none !important;
  padding: 0 !important;
  text-align: center !important;
}

/* C. ステップボックス */
.free-step-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  position: relative;
}

.free-step-num {
  display: inline-block;
  background: #A3CDBA;
  color: #fff;
  font-family: serif;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* D. 商品カード（画像＋説明＋ボタン） */
.free-item-card {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  height: 100%;
}

.free-item-card .price {
  font-size: 0.9rem;
  color: #888;
  display: block;
  margin-bottom: 10px;
}

.free-item-card .desc {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* E. 画像とテキストの横並び (free-flex) */
.free-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.free-flex .free-img-box { flex: 1; }
.free-flex .free-txt-box { flex: 1; }
.free-flex.reverse { flex-direction: row-reverse; }
.free-flex.mb-30 { margin-bottom: 30px; }

/* F. 定義リスト */
.free-dlist dl {
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid #eee; padding: 20px 0;
}
.free-dlist dt {
  width: 25%; font-weight: bold; color: #333; padding-right: 20px;
}
.free-dlist dd {
  width: 75%; margin: 0;
}


/* =========================================
   【汎用パーツ】ボタン・ナビゲーション
========================================= */

/* メインボタン */
.free-btn-main {
  display: inline-block;
  padding: 12px 30px;
  background: #A3CDBA;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: .3s;
  border: 1px solid #666;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.free-btn-main:hover {
  background: #fff;
  color: #6ca889;
}

/* サブボタン */
.free-btn-sub {
  display: inline-block;
  padding: 8px 20px;
  background: #666;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  transition: .3s;
}
.free-btn-sub:hover { background: #444; }

/* タグボタン */
.free-tag-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}
.free-btn-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #A3CDBA;
  color: #A3CDBA;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: .3s;
}
.free-btn-tag:hover {
  background: #A3CDBA;
  color: #fff;
}


/* =========================================
   【ページ専用】たま茶について・ハーブ紹介
========================================= */

/* イントロダクション */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
}
.intro-lead {
  font-size: 1.1rem;
  line-height: 2.2;
  margin-bottom: 30px;
}
.intro-img-box {
  position: relative;
  margin-bottom: 20px;
}
.intro-img-box img {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.intro-en {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 25px;
}
.official-link {
  font-size: 0.95rem;
}
.official-link a {
  color: #6ca889;
  text-decoration: underline;
  font-weight: bold;
}

/* メッセージボックス（アート感） */
.message-box.elegant {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  color: #444;
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: transparent;
}

/* コンテンツボックス */
.highlight-box {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  color: #444;
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: transparent;
}

/* パネル関連 */
.welcome-panel {
  margin-bottom: 80px;
  padding: 40px 20px;
}
.story-panel {
  margin: 60px 0;
}
.insta-area {
  margin-top: 25px;
  border-top: 1px dashed #A3CDBA;
  padding-top: 20px;
  width: 100%;
}
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  color: #333;
  font-weight: bold;
}

/* アクセス */
.address-box {
  background: #fafafa;
  padding: 15px;
  border-radius: 4px;
  font-size: 0.95rem;
}
.address-box a {
  text-decoration: underline;
  color: #6ca889;
  font-weight: bold;
}
.map-container {
  width: 100%;
  height: 400px;
  background: #eee;
}

/* ハーブリスト（画像左＋テキスト右） */
.herb-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.herb-panel {
  flex-direction: row !important; /* PCでは横並び */
  align-items: flex-start !important;
  text-align: left !important;
  padding: 24px !important;
  gap: 24px !important;
}
.herb-img {
  flex: 0 0 80px;
}
.herb-img img {
  width: 100%;
  border-radius: 50%;
  display: block;
}
.herb-txt h3 {
  margin-top: 0 !important;
  font-size: 1.1rem !important;
  border-bottom: none !important;
  text-align: left !important;
  margin-bottom: 10px !important;
}
.herb-txt p {
  margin: 0 !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* パネルフッター */
.panel-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #dccdb4;
  width: 100%;
}
.footer-label {
  font-size: 0.9rem;
  margin-bottom: 10px !important;
}

/* 注意書きメッセージ */
.info-message {
  margin-top: 60px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #666;
}
.info-message p { margin: 0; }


/* =========================================
   【ページ専用】ブレンドの選び方
========================================= */

/* 味覚（テイスト）カード */
.taste-grid {
  align-items: stretch;
}
.taste-card {
  display: block;
  text-decoration: none !important;
  color: #444;
  border: 1px solid #dccdb4;
  padding: 25px 20px;
  transition: all 0.3s;
  background: #fff;
  height: 100%;
}
.taste-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.taste-card.fruity { border-top: 5px solid #cc7a7a; }
.taste-card.tea-like { border-top: 5px solid #a68a6d; }
.taste-card.gentle { border-top: 5px solid #d9bd62; }

.taste-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.taste-header h3 {
  margin: 0 !important;
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  font-family: 'Hiragino Mincho ProN', serif !important;
  border: none !important;
  padding: 0 !important;
  text-align: left !important;
}
.taste-card.fruity h3 { color: #cc7a7a; }
.taste-card.tea-like h3 { color: #a68a6d; }
.taste-card.gentle h3 { color: #d9bd62; }

.taste-header h3 span {
  font-size: 0.9rem;
  color: #444;
  font-weight: normal;
  font-family: sans-serif;
  display: block;
}
.taste-header .arrow {
  font-weight: bold;
  font-size: 1.2rem;
}
.taste-card.fruity .arrow { color: #cc7a7a; }
.taste-card.tea-like .arrow { color: #a68a6d; }
.taste-card.gentle .arrow { color: #d9bd62; }

.taste-desc {
  font-size: 0.85rem;
  margin: 0 !important;
  line-height: 1.6;
  color: #666;
  text-align: left;
}

/* 機能・目的選択ボックス */
.function-select-box {
  border: 1px solid #dccdb4;
  border-radius: 8px;
  padding: 30px 20px;
  background: #fff;
}
.function-row {
  margin-bottom: 30px;
  border-bottom: 1px dashed #dccdb4;
  padding-bottom: 30px;
}
.function-row.no-border {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.function-row h3 {
  margin-top: 0 !important;
  color: #6ca889 !important;
  font-size: 1rem !important;
  margin-bottom: 15px !important;
  border: none !important;
  padding: 0 !important;
}
.function-row .free-tag-nav {
  justify-content: flex-start !important;
}

/* パッケージサイズリスト */
.size-list {
  list-style: none;
  padding: 0 !important;
  background: transparent !important;
  margin-bottom: 0 !important;
}
.size-list li {
  margin-bottom: 20px;
  border-bottom: 1px solid #dccdb4;
  padding-bottom: 10px;
}
.size-list li.no-border {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.size-list strong {
  font-size: 1.1rem;
  color: #6ca889;
  display: block;
  margin-bottom: 4px;
}
.size-list span {
  font-size: 0.9rem;
  color: #666;
  display: block;
  margin-top: 4px;
}
.size-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
}

/* 分量目安ボックス */
.size-guide-box {
  background: #fdfbf7;
  padding: 25px;
  border: 1px solid #dccdb4;
  border-radius: 8px;
  margin-top: 30px;
}
.size-guide-box h3 {
  margin-top: 0 !important;
  color: #444 !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1.1rem !important;
}
.size-guide-box p {
  margin-bottom: 15px !important;
  color: #555;
}
.limit-info {
  font-size: 0.9rem;
  border-top: 1px dashed #dccdb4;
  padding-top: 15px;
  color: #555;
}


/* =========================================
   【ページ専用】ギフト・ご利用案内
========================================= */

/* アンカーリンク調整 */
.anchor-nav {
  justify-content: flex-start !important;
  margin-bottom: 50px;
}

/* アラートパネル */
.alert-panel {
  text-align: left !important;
  padding: 20px !important;
  border-left: 4px solid #A3CDBA;
  background: #fff;
}
.alert-link {
  font-size: 0.9rem;
  text-decoration: underline;
  color: #6ca889;
  font-weight: bold;
}

/* 配送目安ボックス */
.shipping-note {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.shipping-note h4 {
  margin-top: 0 !important;
}
.shipping-note ul {
  margin: 0 !important;
  padding-left: 20px !important;
  background: none !important;
}
.shipping-note p {
  font-size: 0.9rem;
  margin: 10px 0 0 !important;
  color: #666;
}

/* 配送カード */
.shipping-grid {
  margin-top: 20px;
  gap: 20px;
}
.shipping-card.post { border-top: 4px solid #A3CDBA; }
.shipping-card.pack { border-top: 4px solid #c78938; }

.shipping-card h4 {
  margin-top: 0 !important;
}
.shipping-price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
}
.shipping-card.post .shipping-price { color: #A3CDBA; }
.shipping-card.pack .shipping-price { color: #c78938; font-size: 1.2rem; }
.shipping-price span {
  font-size: 0.9rem;
  color: #333;
  font-weight: normal;
}

.shipping-details {
  text-align: left;
  font-size: 0.9rem;
}
.shipping-details ul {
  padding: 10px 10px 10px 20px !important;
  background: #f4f4f4 !important;
  margin-bottom: 0 !important;
}
.area-title {
  margin-top: 10px !important;
  margin-bottom: 5px !important;
  font-weight: bold;
}
.area-list {
  font-size: 0.85rem;
  padding: 10px !important;
  background: none !important;
}

.free-shipping-badge {
  color: #fff;
  padding: 5px;
  margin-top: 15px;
  font-weight: bold;
  font-size: 0.9rem;
  text-align: center;
}
.free-shipping-badge.post { background: #A3CDBA; }
.free-shipping-badge.pack { background: #c78938; }

/* インボイス */
.invoice-panel {
  text-align: left !important;
}
.invoice-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  color: #555;
  margin: 15px 0;
}
.invoice-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0 !important;
}

/* キャンセルボックス */
.cancel-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
}
.cancel-box h4 {
  margin-top: 0;
  font-size: 1rem;
  border-left: 3px solid #ddd;
  padding-left: 10px;
}
.cancel-box h4:nth-of-type(2) {
  margin-top: 20px;
}
.cancel-box p {
  font-size: 0.9rem;
  color: #555;
}
.cancel-btn-area {
  text-align: center;
  margin-top: 20px;
}

/* ギフトナビ */
.gift-nav-panel {
  padding: 30px 20px !important;
}
.gift-nav-panel.recommend {
  background: #fdfbf7;
  border: 1px solid #efe8d8;
}
.gift-nav-panel h3 {
  font-size: 1.3rem !important;
  margin-top: 0 !important;
  border: none !important;
  padding: 0 !important;
}
.gift-nav-panel p {
  font-size: 0.95rem;
  margin-bottom: 20px !important;
}

/* STEPボックス内 */
.gift-step-box h3 {
  margin-top: 0 !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1.2rem !important;
}
.step-guide-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  margin-top: 20px;
}
.step-guide-box p {
  margin-bottom: 10px !important;
  font-weight: bold;
  font-size: 0.95rem;
}

/* ギフトアイテムカード */
.gift-item-grid {
  margin: 20px 0;
}
.gift-item-card.simple { border-top: 4px solid #A3CDBA; }
.gift-item-card.box { border-top: 4px solid #6ca889; }
.gift-item-card img { margin-bottom: 10px; }
.gift-item-card h4 { margin-top: 0 !important; font-size: 1.1rem; }

/* 熨斗オプション */
.noshi-option-box {
  background: #fdfdfd;
  border: 1px dashed #ccc;
  padding: 20px;
  margin-top: 20px;
  border-radius: 6px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.noshi-txt {
  flex: 1;
  min-width: 280px;
}
.noshi-txt h5 {
  font-size: 1rem;
  margin: 0 0 5px 0;
  font-weight: bold;
}
.noshi-txt p {
  font-size: 0.9rem;
  margin: 0 !important;
}
.noshi-btn {
  background: #888 !important;
}

/* 記入例 */
.example-box {
  background: #fff3cd;
  padding: 20px;
  border-radius: 4px;
  font-size: 0.95rem;
  border: 1px solid #ffeeba;
  color: #856404;
}

/* リンクリスト */
.link-list {
  background: none !important;
  padding-left: 20px !important;
}
.link-list a {
  text-decoration: underline;
}

/* 熨斗テーブル */
.table-scroll {
  overflow-x: auto;
}
.noshi-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.noshi-table thead tr {
  background: #f9f9f9;
  border-bottom: 2px solid #ddd;
}
.noshi-table th {
  padding: 12px;
  text-align: left;
}
.noshi-table tbody tr {
  border-bottom: 1px solid #eee;
}
.noshi-table td {
  padding: 12px;
}
.noshi-table td span {
  font-size: 0.8rem;
  color: #666;
}


/* =========================================
   【ページ専用】淹れ方・保存方法
========================================= */

/* ピクトグラムエリア（共通化されたパーツ） */
.pict-heading {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.5rem !important;
  color: #6ca889 !important;
  margin: 0 0 40px !important;
  border: none !important;
  padding: 0 !important;
  letter-spacing: 0.05em;
}
.pict-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.pict-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}
.pict-circle {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 2px solid #A3CDBA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(163, 205, 186, 0.2);
}
.pict-val-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #444;
}
.pict-val-wrap .val {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.pict-val-wrap .unit {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.95rem;
  font-weight: 500;
}
.pict-desc {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.pict-sub-desc {
  font-size: 0.80rem;
  color: #888;
  font-family: sans-serif;
  white-space: nowrap;
}

/* ピクトグラム下の注釈 */
.pict-note-area {
  margin-top: 40px;
  text-align: center;
}
.note-text {
  margin-bottom: 20px !important;
  color: #666;
  font-size: 0.85rem;
}
.hint-box {
  display: inline-block;
  text-align: left;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 15px 25px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #555;
}
.hint-title {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
}
.hint-box ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.6;
  background: none !important;
}
.hint-box li {
  margin-bottom: 4px;
}

/* 準備 */
.tool-flex {
  margin-top: 40px;
  margin-bottom: 40px !important;
}
.amount-guide {
  background: #fafafa;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ティーバッグの淹れ方 */
.teabag-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed #ccc;
}
.teabag-guide {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 8px;
  align-items: flex-start !important;
}
.teabag-guide ol {
  margin: 0 !important;
  padding-left: 20px !important;
  line-height: 1.8;
  background: none !important;
}
.teabag-guide li {
  margin-bottom: 15px;
}
.highlight {
  color: #c78938;
  font-weight: bold;
}

/* TIPSボックス */
.tips-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.tips-box h3 {
  margin-top: 0 !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1.1rem !important;
}
.tips-box p {
  margin-bottom: 0 !important;
}

/* 区切り線 */
.section-divider {
  margin: 60px 0;
  border: none;
  border-top: 1px solid #eee;
}

/* 保存方法 */
.save-flex {
  margin-top: 30px;
  margin-bottom: 40px !important;
}

/* 夏場のアラート */
.summer-alert-panel {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: left;
}
.summer-alert-panel h3 {
  color: #856404 !important;
  margin-top: 0 !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1.1rem !important;
}
.alert-box {
  font-weight: bold;
  background: #fff;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 4px;
  margin: 10px 0;
}
.small-alert {
  font-size: 0.9rem;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
}


/* =========================================
   スマホ対応・レスポンシブまとめ (Max 768px)
========================================= */
@media (max-width: 768px) {
  /* グリッド・レイアウト */
  .free-grid-2, .free-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* ボックス */
  .free-step-box { padding: 20px; }
  
  /* 横並び解除 (Flex) */
  .free-flex, .free-flex.reverse { display: block; }
  .free-flex .free-img-box { margin-bottom: 20px; }
  
  /* 定義リスト */
  .free-dlist dl { display: block; }
  .free-dlist dt {
    width: 100%; margin-bottom: 8px;
    border-left: 3px solid #A3CDBA; padding-left: 10px;
  }
  .free-dlist dd { width: 100%; }

  /* ハーブリスト・パネル */
  .herb-panel {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .herb-txt h3 {
    text-align: center !important;
    margin-top: 10px !important;
  }

  /* ピクトグラム（2列に折り返す） */
  .pict-grid { gap: 30px 15px; }
  .pict-item { width: 45%; }
}
