/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --font-family-base: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', Meiryo, 'メイリオ', sans-serif;
    --primary-color: #69B079;
    --primary-color-rgb: 105, 176, 121;
    --secondary-color: #FF9800;
    --accent-color: #03A9F4;
    --text-color: #333333;
    --text-color-light: #555555;
    --bg-color: #FFFFFF;
    --bg-color-alt: #f7f9f7;
    --border-color: #e0e0e0;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
    --container-width: 1100px;
    --font-size-base: 17px;
    --line-height-base: 1.7;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover, a:focus {
    color: var(--secondary-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75em;
    color: var(--text-color);
}
h1 { font-size: 2.8rem; margin-bottom: 1rem;}
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1.2em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.text-center { text-align: center; }
.margin-top-large { margin-top: 2.5rem; }

/* Buttons */
.button, .button-primary, .button-secondary, .button-tertiary
 {
    display: inline-block;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 700;
    padding: 0.7em 1.7em;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.2;
}
.button-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.button-primary:hover, .button-primary:focus {
    background-color: #589c68;
    border-color: #589c68;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.button-secondary {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}
.button-secondary:hover, .button-secondary:focus {
    background-color: #e68900;
    border-color: #e68900;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.button-tertiary {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-block;
    padding: 0.3em 0;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    background-color: transparent;
    border: none;
}
.button-tertiary:hover, .button-tertiary:focus {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    text-decoration: none;
    background-color: transparent;
}


/* Header */
.site-header {
    background-color: var(--bg-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    line-height: 1;
    display: flex; /* For logo image and text */
    align-items: center;
}
.logo-image {
    height: 40px; /* Adjust as needed */
    width: auto;
    margin-right: 10px;
    border-radius: 0; /* Override default img radius if logo is square */
}
.logo .sub-logo {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-color-light);
    margin-top: 4px;
    margin-left: 17px;
}
/* --- Header 修正版 --- */

.global-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

/* aタグへの指定（WordPressはliの中にaを生成する） */
.global-nav ul li a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 8px 0;
    position: relative;
    text-decoration: none;
    display: inline-block; /* 判定範囲を安定させる */
}

/* 下線のエフェクト (::after) */
.global-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

/* ホバー時とカレントページ（現在地）の指定 */
.global-nav ul li a:hover::after,
.global-nav ul li.current-menu-item a::after,  /* WPが自動付与する現在地クラス */
.global-nav ul li.current_page_item a::after {
    width: 100%;
}

.global-nav ul li a:hover,
.global-nav ul li.current-menu-item a,
.global-nav ul li.current_page_item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}
.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Main Content */
main {
    flex-grow: 1;
}
section {
    padding: 30px 0;
}
section:nth-child(even) {
    background-color: var(--bg-color-alt);
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: -0.5em;
}

/* Hero Section (Home) */
.hero-section {
    padding: 0;
    position: relative;
    color: #fff;
    height: 70vh;
    min-height: 350px;
    max-height: 600px;
    overflow: hidden;
}
.hero-slider .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 20px;
}
.hero-slider .hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.4);
}
.hero-caption {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-caption h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-caption h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-caption p {
    font-size: 1.4rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.hero-button {
    font-size: 1.1rem;
}
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    padding: 0 20px;
}
.hero-slider-nav button {
    background-color: rgba(0,0,0,0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.hero-slider-nav button:hover {
    background-color: rgba(0,0,0,0.6);
}
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.hero-slider-dots .dot.active {
    background-color: #fff;
}

/* Introduction Section (Home) */
.introduction-section h2 {
    text-align: center;
}

/* Category Section (Home) */
.category-section h2 { text-align: center; }
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.category-card {
    display: block;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}
.category-card:hover, .category-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    color: var(--text-color);
    text-decoration: none;
}
.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.category-card-content {
    padding: 20px;
}
.category-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.3em;
}
.category-card-content p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    margin-bottom: 0;
}

/* Featured Stores (Home) / Store List Grid (Search Page) */
.featured-stores-section h2, .search-results-section #search-results-heading {
    text-align: center;
    margin-bottom: 40px;
}
.store-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.store-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.store-card:hover, .store-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.store-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.store-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.store-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.store-card-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.3em;
}
.store-card-category {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-bottom: 0.5em;
    font-weight: 700;
}
.store-card-category .rating-display {
    font-size: 0.85em;
    color: var(--secondary-color);
    margin-left: 8px;
    font-weight: bold;
}
.store-card-excerpt {
    font-size: 1rem;
    color: var(--text-color-light);
    margin-bottom: 1em;
    flex-grow: 1;
}


/* Generic Page Header (Search, About, Deals) */
.page-header-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    margin:0 -5px;
    text-align: center;
}
.page-header-section h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.2em;
}
.page-header-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Search Page Specific Controls */
.search-controls-section {
    padding: 40px 0 20px;
    background-color: var(--bg-color-alt);
}
.search-filters-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    background-color: var(--bg-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}
.search-filters-modern .filter-item {
    flex-grow: 1;
}
.search-filters-modern input[type="text"],
.search-filters-modern select {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family-base);
}
.search-filters-modern input[type="text"] { min-width: 250px; }
.search-filters-modern select { min-width: 200px; }
.search-filters-modern .search-submit-button {
    padding: 12px 25px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.search-filters-modern .search-submit-button svg {
    margin-right: 5px;
}
.sort-options {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
    font-size: 0.95rem;
    color: var(--text-color-light);
}
.sort-label { font-weight: 700; }
.sort-button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color-light);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.sort-button:hover, .sort-button:focus {
    background-color: var(--bg-color-alt);
    border-color: var(--primary-color);
}
.sort-button.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    font-weight: bold;
}
.filter-checkbox-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.filter-checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}
.no-results-modern {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color-light);
    padding: 40px 20px;
    background-color: var(--bg-color-alt);
    border-radius: var(--border-radius);
    margin-top: 30px;
}


/* About Page & Deals Page Specific Styles */
.about-content-section .narrow-container,
.deals-content-section .narrow-container {
    max-width: 800px;
}
.about-story h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.3em;
    margin-bottom: 0.8em;
}
.about-story h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 2.0em;
    margin-bottom: 0.6em;
}
.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
}
.about-story .highlight {
    font-weight: bold;
    color: var(--secondary-color);
}
.about-story strong {
    color: var(--primary-color);
    font-weight: 700;
}
.about-image {
    margin: 2em 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.about-image img {
    border-radius: 0;
}
.about-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin-top: 0.5em;
    font-style: italic;
}
.about-image.align-right {
    float: right;
    width: 40%;
    max-width: 300px;
    margin-left: 2em;
    margin-top: 0.5em;
    margin-bottom: 1em;
}
.author-signature {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid var(--border-color);
    text-align: right;
}
.author-signature p {
    margin-bottom: 0.3em;
    font-size: 1rem;
    line-height: 1.5;
}
.author-signature p:first-child {
    font-weight: bold;
    font-size: 1.1rem;
}
.about-story::after {
    content: "";
    clear: both;
    display: table;
}

.deals-introduction h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8em;
}
.deals-introduction p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5em;
}
.status-message {
    background-color: var(--bg-color-alt);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--accent-color);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2em;
}
.status-message .status-icon {
    color: var(--accent-color);
    margin-bottom: 15px;
}
.status-message h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5em;
}
.status-message p {
    font-size: 1.05rem;
    color: var(--text-color-light);
    line-height: 1.7;
    margin-bottom: 1em;
}
.status-message.preparing-message {
    border-left-color: var(--secondary-color);
}
.status-message.preparing-message .status-icon {
    color: var(--secondary-color);
}


/* Footer */
.site-footer {
    background-color: #333333;
    color: #e0e0e0;
    padding: 40px 0 20px;
    margin-top: auto;
}
.site-footer a {
    color: var(--primary-color);
}
.site-footer a:hover {
    color: var(--secondary-color);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-about, .footer-links {
    flex-basis: calc(50% - 15px);
    min-width: 280px;
}
.site-footer h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1em;
}
.footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8em;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.5em;
}
.footer-links a {
    font-size: 0.95rem;
}
.copyright {
    text-align: center;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #444;
}


/* --- 記事本文内のスタイル調整 --- */

/* 見出し（H2, H3）の上の余白を広げる */
.post-main-content h2 {
    margin-top: 1.5rem; /* 前の要素との間隔を広く */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--primary-color);
}

.post-main-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

/* 箇条書き（ul）のデザイン */
.post-main-content ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
    list-style: none; /* デフォルトの黒丸を消す */
}

.post-main-content ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.6;
}

/* 緑の丸を作成（疑似要素） */
.post-main-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em; /* 文字の高さに合わせて微調整 */
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* 番号付きリスト（ol）もデザインを整える場合 */
.post-main-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
    color: var(--text-color);
}

.post-main-content ol li {
    margin-bottom: 0.8em;
    padding-left: 0.5em;
}



/* --- 目次のスタイル --- */
.post-toc {
    background-color: var(--bg-color-alt); /* 薄い緑系の背景色 */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 40px;
}

.toc-title {
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color); /* テーマカラーの緑 */
}

.post-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-toc ul li {
    margin-bottom: 8px;
    padding-left: 0;
}

.post-toc ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.post-toc ul li a::before {
    content: "・";
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: bold;
}

.post-toc ul li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


/* --- ブラッシュアップ版：告知バナー --- */
.post-promotion-banner {
    margin: 80px 0; /* 前後のセクションとの大きな余白 */
    padding: 60px 20px;
    background-color: var(--bg-color-alt); /* 以前設定した薄い緑系の背景 */
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    text-align: center;
}

.banner-inner {
    max-width: 650px; /* 横幅を絞って中央に視線を集める */
}

.banner-sub-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 25px !important; /* 既存のh3マージンを上書き */
}

.banner-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 35px;
}

.banner-button {
    padding: 1.2em 3em !important; /* ボタンを大きく、押しやすく */
    font-size: 1.1rem !important;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

/* 関連記事 */
.related-posts-section {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.related-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: center;
}



/* ヒーローセクション */
.hero-section-modern {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero-bg.webp'); /* 背景画像は用意してください */
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}
.hero-content h1 { color: #fff; font-size: 3rem; margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

/* サイト紹介 */
.site-intro-section { padding: 80px 0; background-color: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 50px; }
.benefit-item { text-align: center; }
.benefit-item .icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.benefit-item h3 { color: var(--primary-color); font-size: 1.3rem; }

/* 最新記事セクションの微調整 */
.home-posts-section { padding: 80px 0; background-color: var(--bg-color-alt); }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; }
.post-card-thumb { position: relative; height: 180px; overflow: hidden; border-radius: var(--border-radius) var(--border-radius) 0 0; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-label { position: absolute; top: 10px; right: 10px; background: var(--primary-color); color: #fff; padding: 2px 10px; font-size: 0.75rem; border-radius: 4px; }
.post-date { font-size: 0.85rem; color: var(--text-color-light); margin-bottom: 5px; }




/* 改行コントロール（PC/スマホ切り替え） */
.mobile-only { display: none; }
.pc-only { display: inline; }

@media (max-width: 768px) {
    .post-promotion-banner {
        padding: 40px 15px;
        margin: 60px 0;
    }
    .banner-title {
        font-size: 1.6rem;
    }
    .mobile-only { display: inline; }
    .pc-only { display: none; }
}

/* Responsive */
@media (max-width: 992px) {
    /* --- ヘッダーロゴのモバイル表示調整 --- */
    .site-header{
        padding: 10px 0px 7px 0px;
    }
    .logo a {
        font-size: 1.6rem; /* モバイル用に少し小さく */
        flex-direction: column; /* ロゴテキストとサブロゴを縦並びにする */
        align-items: flex-start; /* 左揃えにする */
        text-align: left; /* テキストも左揃え */
    }
    .logo-image { /* ロゴ画像がある場合 */
        margin-right: 0; /* 横並びではないのでマージン不要 */
        margin-bottom: 5px; /* ロゴテキストとの間に少しスペース */
        height: 35px; /* モバイル用に少し小さく */
    }
    .logo .sub-logo {
        font-size: 0.75rem; /* モバイル用に少し小さく */
        margin-top: 3px; /* メインのサイト名との間隔 */
        /* display: block; は既に設定されているので不要 */
        /* text-align: left; は親の a タグから継承されるはず */
    }
    :root { --font-size-base: 16px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-caption h1 { font-size: 2.8rem; }
    .hero-caption h2 { font-size: 2.2rem; }
    .hero-caption p { font-size: 1.2rem; }
    .hero-section {min-height: 100px; height: 300px;}
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-caption h1 { font-size: 2.2rem; }
    .hero-caption h2 { font-size: 1.8rem; }
    .hero-caption p { font-size: 1.1rem; }

    .global-nav {
        display: none;
        position: absolute;
        top: calc(100% + 3px);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 15px 0;
    }
    .global-nav.active {
        display: block;
    }
    .global-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .global-nav .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        border-bottom: 1px solid var(--border-color);
    }
    .global-nav .nav-link::after { display: none; }
    .global-nav li:last-child .nav-link { border-bottom: none;}

    .mobile-nav-toggle {
        display: block;
    }

    .search-filters-modern {
        flex-direction: column;
        align-items: stretch;
    }
    .search-filters-modern .search-submit-button {
        width: 100%;
        justify-content: center;
    }
    .sort-options {
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-about, .footer-links {
        flex-basis: auto;
    }
    .about-image.align-right {
        float: none;
        width: 80%;
        max-width: 400px;
        margin: 2em auto;
    }
}

@media (max-width: 480px) {
    /* ... (既存の h1, .hero-caption, .logo a (さらに小さくする場合) などのスタイル) ... */
    .logo a {
        font-size: 1.4rem; /* さらに小さい画面用に調整 */
    }
    .logo-image {
        height: 30px;
    }    /* ... (既存の h1, .hero-caption, .logo a (さらに小さくする場合) などのスタイル) ... */
    .logo a {
        font-size: 1.4rem; /* さらに小さい画面用に調整 */
    }
    .logo-image {
        height: 30px;
    }
    .logo .sub-logo {
        font-size: 0.7rem;
    }
    .logo .sub-logo {
        font-size: 0.7rem;
    }
    :root { --font-size-base: 15px; }
    h1 { font-size: 1.8rem; }
    .hero-caption h1 { font-size: 1.8rem; }
    .hero-caption h2 { font-size: 1.6rem; }
    .hero-caption p { font-size: 1rem; }
    .logo a { font-size: 1.5rem; }
    .logo .sub-logo { font-size: 0.7rem; }

    .store-list-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    /* 完全に消したい場合はこちら（SEOキーワードは残ります） */
    /* .benefit-grid { display: none; } */

    /* おすすめ：モバイルで見やすく1列にする設定 */
    .benefit-grid {
        grid-template-columns: 1fr; /* 1列にする */
        gap: 15px; /* 隙間を狭くする */
        margin-top: 20px;
    }
    .benefit-item {
        padding: 15px; /* 内側の余白を削る */
        text-align: left; /* 左寄せにして高さを抑える */
    }
    .benefit-item h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    .benefit-item p {
        font-size: 0.9rem;
    }
}