body {
    font-family: 'Noto Sans JP', sans-serif;
        margin: 0;
    padding: 0;
    color: #2B2A2A;
    box-sizing: border-box;
    background-color: #FBFCF5;
}
html, body {
    overflow-x: hidden;
}


main{
    background-color: #FBFCF5;
    background-size: cover;
}

.container{
    max-width: 1200px!important;
    width: 100%; /* 幅を100%に設定 */

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



/* ヘッダー全体のスタイル */
/* ヘッダー全体 */
.desktop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.desktop-header .logo img {
    height: 40px;
    margin-right: 20px;
}

.desktop-header nav {
    flex-grow: 1;
}

.menu-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    margin: 0 10px;
}

.menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu-item a:hover {
    color: #a4627a; /* ホバー時のアクセントカラー */
}

/* ドロップダウンメニュー */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 200px; /* サブメニューの幅を設定 */
}

.submenu li {
    padding: 5px 20px;
}

.submenu li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: background-color 0.3s ease;
}

.submenu li a:hover {
    background-color: #f5f5f5;
}

.menu-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* アイコン */
.icons {
    display: flex;
    gap: 15px;
}

.icons i {
    font-size: 18px;
    color: #333;
    cursor: pointer;
}
/* モバイルヘッダー */
.mobile-header {
    display: none;
    flex-direction: column;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.mobile-header .menu-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-header .menu-icons .logo img {
    height: 40px;
}

.mobile-header .menu-icons i {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* モバイルメニュー */
.mobile-header .menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 20px;
    overflow-y: auto;
    padding-top: 4rem;
}

.menu-open {
    display: flex !important;
}

.mobile-header .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* メニューを縦並びに設定 */
}

.mobile-header .menu-item {
    margin-bottom: 15px;
}

.mobile-header .menu-item a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-header .menu-item a:hover {
    color: #9b9b9b;
}
/* モバイル用サブメニュー */
.submenu_SP {
    display: none; /* 初期状態では非表示 */
    flex-direction: column;
    margin-top: 10px;
    padding-left: 2rem;
    border-left: 2px solid #ffffff;
    overflow: hidden; /* スライドアニメーション用 */
    max-height: 0; /* 初期の高さを0に設定 */
    transition: max-height 0.3s ease; /* スライドアニメーション */
}

/* サブメニューが開いたとき */
.menu-item.open .submenu_SP {
    display: flex; /* 開くときに表示 */
    max-height: 300px; /* 必要な高さに調整 */
}

/* サブメニュー内のリンク */
.submenu_SP a {
    text-decoration: none;
    color: #fff; /* モバイルメニュー内のリンクカラー */
    font-size: 16px;
    padding: 5px 0;
}

.submenu_SP a:hover {
    text-decoration: underline;
    color: #dddddd; /* ホバー時のアクセントカラー */
}



.mobile-header .menu-item.open .submenu {
    display: flex; /* 開く時に表示 */
    max-height: 300px; /* サブメニューが見えるように高さを設定 */
}


.mobile-header .submenu a {
    font-size: 16px;
    color: #fff;
    padding: 5px 0;
}

.mobile-header .submenu a:hover {
    text-decoration: underline;
}
/* FOLLOW US セクション */
.follow-us {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.follow-us p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons_mobile  a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons_mobile a:hover {
    color: #aeaeae; /* ホバー時のアクセントカラー */
}

/* バナー画像 */
.banner-section {
    margin-top: 20px;
    text-align: center;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.05); /* ホバー時に少し拡大 */
}


/* 閉じるボタン */
.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }
}

/* ==============================
   HERO
============================== */
.page-hero.fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  text-align: center;
  background: url('../img/mv1.jpg') center/cover no-repeat;
  color: #fff;
}
.page-hero.fv::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}
.page-hero__copy {
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.page-hero__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.5rem;
  line-height: 1.6;
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* PC時 */
@media (min-width: 768px) {
  .page-hero.fv { min-height: 55vh; }
  .page-hero__title { font-size: 2rem; }
}

/* ==============================
   REVIEW × CONTRIBUTION
============================== */
.review-contribution {
  margin: 2.5rem auto;
}

.review-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff; /* 淡いブランドカラー */
  border-radius: 14px;
  padding: 1.5rem;
}

.review-image img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.review-text { text-align: left; }
.review-title {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0.75rem 0 1rem;
}
.review-title .highlight {
  color: #a4627a;
  font-size: 1.4em;
  font-weight: 700;
}
.badge-line {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cfa9b7;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .review-box {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
  .review-image, .review-text {
    flex: 1;
  }
  .review-text { padding-left: 2rem; }
}


/* ==============================
   FILTER CHIPS
============================== */
.filter-row {
  margin: 1.5rem 0;
}
.filter-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
/* チップボタンの基本スタイル */
.chip {
  display: inline-block;
  padding: 6px 12px;
  margin: 4px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #f9f9f9;
  color: #333;              /* ← テキスト色を指定して青リンク色を上書き */
  font-size: 14px;
  text-decoration: none;    /* ← リンクっぽい下線を消す */
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ホバー/フォーカス時 */
.chip:hover,
.chip:focus {
  background-color: #e0e0e0;
  outline: none;
}
.chip:hover, .chip.active {
  background: #a4627a;
  color: #fff;
  border-color: #a4627a;
}
/* キーボードフォーカス */
.chip:focus-visible{
  outline:2px solid #a4627a;            /* 既存アクセントに合わせたフォーカスリング */
  outline-offset:2px;
}

/* 件数表示のスタイル（共通） */
.match-count{
  font-size:.9rem;
  color:#6b6b6b;
}

/* ドロワーの件数を右寄せにしたい場合 */
.drawer-header .match-count{
  margin-left:auto;
}

/* ==============================
   PRODUCT LIST
============================== */
.product-section {
  margin: 3rem 0;
}
.product-section h4 {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.product-section h4 span {
  background: #FBFCF5;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}
.product-section h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #333;
  z-index: 0;
}

/* PRODUCT CARD */
/* 商品リスト：SPファースト（2カラム） */
.product-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr); /* スマホでは2カラム */
}

/* 商品カード */
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); }

/* PC以上は4カラム */
@media (min-width: 768px) {
  .product-list {
    grid-template-columns: repeat(4, 1fr); /* PCでは4カラム */
  }
}

.product-card:hover { transform: translateY(-3px); }
.product-image { border-radius: 5px; margin-bottom: 0.5rem; }
.product-card p { font-size: 0.85rem; margin-bottom: 0.5rem; }
.sub-catch { display: block; font-size: 0.75rem; color: #555; margin: 0.25rem 0; }
.product-card strong { color: #d23737; font-weight: 600; }

/* CTA */
.product-cta {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.btn-detail, .btn-review {
  flex: 1 1 auto;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-detail {
  border: 1px solid #333;
  color: #333;
  background: #fff;
}
.btn-detail:hover {
  background: #333; color: #fff;
}
.btn-review {
  border: 1px solid #a4627a;
  background: #a4627a;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(164,98,122,.2);
}
.btn-review:hover {
  filter: brightness(0.95);
}

/* PC時 */
@media (min-width: 768px) {
  .product-list { grid-template-columns: repeat(4, 1fr); }
}

/* ==============================
   CONTRIBUTION締めセクション
============================== */
.contribution {
  margin: 3rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 12px;
}
.contribution h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.contribution ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.contribution li { margin-bottom: 0.5rem; font-size: 0.85rem; }

/* ==============================
   FOOTER (すでに定義済みを調整可)
============================== */
.footer {
  background: #f9f9f9;
  padding: 2rem 1rem;
  font-size: 0.8rem;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-logo img { max-width: 140px; margin-bottom: 0.5rem; }
.footer-nav {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.7rem;
}

/* PC時 */
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* フッター全体 */
.footer {
    background-color: #f9f9f9;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* フッタートップ */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* レスポンシブ対応で折り返し可能に */
    margin-bottom: 30px;
}

/* ロゴとソーシャルメディア */
.footer-logo {
    flex: 1 1 20%; /* ロゴの幅を調整 */
    margin-bottom: 20px;
}

.footer-logo img {
    max-width:150px;
    margin-bottom: 10px;
    display: block;
}

.footer-logo p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #e57373; /* ホバー時に赤色 */
}

/* ナビゲーション */
.footer-nav {
    display: flex;
    flex: 3 1 70%; /* ナビゲーションの幅を調整 */
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 20%; /* 各カラムの幅を調整 */
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.footer-column li {
    margin-bottom: 5px;
}

.footer-column a {
    text-decoration: none;
    color: #333;
}

.footer-column a:hover {
    text-decoration: underline;
    color: #e57373; /* ホバー時に赤色 */
}

/* フッターボトム */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 12px;
    color: #666;
}

.legal-links {
    display: flex;
    flex-wrap: wrap; /* 折り返しを有効にする */
    justify-content: space-between; /* 均等配置 */
    gap: 10px; /* リンク間の余白 */
    padding: 0;
    margin: 0;
    list-style: none;
}

.legal-links a {
    text-decoration: none;
    color: #666;
    font-size: 12px;
}

.legal-links a:hover {
    color: #333;
}

@media (max-width: 768px) {
    /* 共通スタイル（SP用） */
    body {
        padding: 0;
    }

 
    .container {
        padding: 0 15px; /* モバイル用の横余白を追加 */
    }



    /* フッター */
    .footer {
        padding: 20px 10px; /* フッター全体の余白を調整 */
    }

       .footer-top {
        display: flex;
        margin-bottom: 30px;
        flex-direction: column;
        place-items: center;
    }

    .footer-column {
        flex: 2 2 50%; /* 1列レイアウト */
        max-width: 100%;
        text-align: center; /* テキストを中央揃え */
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column ul {
        text-align: center;
    }

    .footer-bottom {
        padding-top: 10px;
    }

    .legal-links {
        justify-content: space-between; /* 均等配置を維持 */
    }
    .legal-links li {
        flex: 1 1 calc(50% - 10px); /* スマホサイズで2列に */
    }
}
@media (max-width: 480px) {
    /* 共通スタイル */
    body {
        padding: 0;
        font-size: 14px; /* 全体的にフォントサイズを調整 */
    }


    .container {
        padding: 0 10px; /* 横余白を減らしてコンテンツを広げる */
    }


}

/* Concept Section */
.concept-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.concept-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  
  z-index: 0;
}

.concept-section .text-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.concept-section h1 {
  font-family: 'Bentham', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.concept-section .main-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.concept-section .sub-text {
  font-size: 1rem;
  line-height: 1.8;
  padding: 1rem;
  border-radius: 8px;
}

/* スマホファースト：縦並び */
.concept-section .row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* タブレット以上：横並びに切り替え */
@media (min-width: 768px) {
  .concept-section {
    padding: 5rem 2rem;
  }
  .concept-section .row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .concept-section .main-text {
    font-size: 2.4rem;
  }
  .concept-section .sub-text {
    font-size: 1.1rem;
    line-height: 2;
    background: transparent;
    padding: 0;
  }
}

/* ===== Sticky Filter Bar ===== */
.filter-stickybar{
  position: sticky;
  top: 56px; /* 固定ヘッダーの高さに合わせて調整 */
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .6rem .9rem;
  background:#FBFCF5;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.btn-filter-open{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.55rem .9rem; border:1px solid #333; background:#fff; color:#333;
  border-radius:999px; font-size:.95rem;
}
.btn-filter-open i{ font-size:.95rem; }
.match-count{ font-size:.9rem; color:#666; }

/* ===== Drawer ===== */
.filter-drawer{
  position: fixed;
  inset: 0 0 0 auto; /* 右から出す */
  width:min(92vw, 420px);
  background:#fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1001;
  display:flex; flex-direction:column;
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
}
.filter-drawer.is-open{ transform: translateX(0); }
.filter-drawer__header{
  display:flex; align-items:center; justify-content:space-between;
  padding:1rem 1rem; border-bottom:1px solid #eee;
}
.filter-drawer__header strong{ letter-spacing:.08em; }
.btn-filter-close{
  border:none; background:transparent; font-size:1.25rem; color:#333;
}
.filter-drawer__body{
  padding:1rem; overflow:auto; -webkit-overflow-scrolling:touch;
}
.filter-row{ margin-bottom:1.25rem; }
.filter-label{
  display:block; font-size:.9rem; color:#666; margin-bottom:.5rem;
}
.chip-group{ display:flex; flex-wrap:wrap; gap:.5rem; }
.chip{
  border:1px solid #ccc; background:#fff; color:#333;
  padding:.45rem .8rem; border-radius:999px; font-size:.9rem;
}
.chip.active{ border-color:#a4627a; background:#a4627a; color:#fff; }

.filter-drawer__footer{
  padding:.9rem; border-top:1px solid #eee; display:flex; gap:.6rem;
  position: sticky; bottom:0; background:#fff;
}
.btn-outline{
  flex:1; padding:.7rem 1rem; border:1px solid #bbb; background:#fff; color:#333; border-radius:12px;
}
.btn-primary{
  flex:1; padding:.7rem 1rem; border:1px solid #333; background:#333; color:#fff; border-radius:12px;
}

/* Backdrop */
.filter-backdrop{
  position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index:1000;
}

/* PC時：ドロワーはサイドバー風に少し広く */
@media (min-width: 992px){
  .filter-stickybar{ top: 72px; }
  .filter-drawer{ width: 480px; }
}
