@charset "UTF-8";

/* =========================================
   1. Variables (色や設定の定義)
   ========================================= */
:root {
    --m-green: #88C953;
    --m-green-dark: #6BA33C;
    --m-green-light: #E8F5E9;
    --m-brown: #795548;
    --m-brown-light: #D7CCC8;
    --m-orange: #FFA726;
    --m-orange-dark: #F57C00;
    --m-bg: #FFFBF0;
    --m-text: #4E342E;
}

/* =========================================
   2. Reset & Base (全体的な初期設定)
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    color: var(--m-text);
    background-color: var(--m-bg);
    background-image: radial-gradient(var(--m-brown-light) 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
p {
    margin-top: 0;
}
/* スクロールバー */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #FFFBF0; }
::-webkit-scrollbar-thumb { background: var(--m-brown-light); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--m-green); }

/* =========================================
   3. Layout (共通レイアウト)
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.container-sm {
    max-width: 896px;
}
.container-xs {
    max-width: 768px;
}
.main-content {
    flex-grow: 1;
    padding-top: 64px; /* Headerの高さ分 */
}

/* =========================================
   4. UI Components (部品)
   ========================================= */
/* ボタン */
.btn-pop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.1s ease;
    text-align: center;
    border-style: solid;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 6px;
    text-decoration: none;
    border-color: transparent;
}
.btn-pop:active {
    transform: translateY(6px);
    border-bottom-width: 0px;
    margin-bottom: 6px;
}
.btn-pop:hover { filter: brightness(1.1); }
.btn-pop svg { width: 24px; height: 24px; }

.btn-orange { background-color: var(--m-orange); color: white; border-color: var(--m-orange-dark); }
.btn-green { background-color: var(--m-green); color: white; border-color: var(--m-green-dark); }
.btn-brown { background-color: var(--m-brown); color: white; border-color: var(--m-text); }
.btn-brown:hover { background-color: var(--m-text); filter: none; }

.btn-large { padding: 16px 40px; font-size: 1.25rem; border-radius: 999px; }
.btn-full { width: 100%; padding: 16px; font-size: 1.25rem; }

/* セクション見出し */
.section { padding: 80px 16px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--m-brown);
    background-color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 999px;
    border: 4px solid var(--m-brown-light);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin: 0 0 8px 0;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-title-icon {
    background-color: var(--m-orange);
    color: white;
    padding: 6px;
    border-radius: 8px;
    display: flex;
}
.section-title-icon svg { width: 20px; height: 20px; }
.section-title-icon.black { background-color: black; }
.section-desc {
    color: var(--m-brown-light);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 8px 0 0 0;
}

/* =========================================
   5. Header & Footer
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 251, 240, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 4px solid rgba(121, 85, 72, 0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--m-green-dark);
    font-weight: 700;
    font-size: 1.5rem;
}
.logo-icon {
    background-color: white;
    padding: 4px;
    border-radius: 50%;
    border: 2px solid var(--m-green-dark);
    display: flex;
}
.logo-icon svg { width: 24px; height: 24px; color: var(--m-green); }
.menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--m-brown);
    background-color: white;
    border-radius: 12px;
    border: 2px solid var(--m-brown-light);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background-color 0.3s;
}
.menu-btn:hover { background-color: var(--m-green-light); }
.menu-btn span { display: none; }
@media (min-width: 640px) { .menu-btn span { display: inline; } }

.footer {
    background-color: var(--m-text);
    color: var(--m-bg);
    padding: 48px 16px;
    margin-top: auto;
    border-top: 8px solid var(--m-green-dark);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-info { text-align: center; }
@media (min-width: 768px) { .footer-info { text-align: left; } }
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.875rem;
    color: var(--m-green);
    margin-bottom: 12px;
}
@media (min-width: 768px) { .footer-logo { justify-content: flex-start; } }
.footer-logo-icon {
    background-color: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 50%;
    display: flex;
}
.footer-logo-icon svg { width: 32px; height: 32px; fill: currentColor; }
.footer-address { color: var(--m-brown-light); font-weight: 700; margin: 0; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    font-weight: 700;
    color: var(--m-brown-light);
}
.footer-links a:hover { color: white; transition: color 0.3s;}
.footer-copy {
    margin-top: 48px;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(215, 204, 200, 0.5);
    font-weight: 700;
}

/* =========================================
   6. Mobile Menu Overlay
   ========================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background-color: var(--m-bg);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0iI0Q3Q0NDOCIvPjwvc3ZnPg==');
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.menu-open { transform: translateX(0); }
.mobile-menu.menu-closed { transform: translateX(100%); }
.menu-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 12px;
    color: var(--m-brown);
    background-color: white;
    border-radius: 50%;
    border: 2px solid var(--m-brown-light);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
}
.menu-close-btn:hover { background-color: #ef4444; color: white; border-color: #ef4444; }
.menu-close-btn svg { width: 32px; height: 32px; }
.mobile-nav {
    width: 100%;
    max-width: 448px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile-nav-link {
    display: block;
    background-color: white;
    border: 4px solid var(--m-brown-light);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    color: var(--m-brown);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s;
}
.mobile-nav-link svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
    margin-bottom: 4px;
}
.mobile-nav-link:hover { border-color: var(--m-green); color: var(--m-green); }
.mobile-nav-action { margin-top: 32px; text-align: center; }

/* =========================================
   7. Top Page Specific
   ========================================= */
/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 8px solid var(--m-brown);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(78, 52, 46, 0.2) 0%, rgba(78, 52, 46, 0.6) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 48px 16px;
    width: 100%;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 16px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: var(--m-green);
    border: 4px solid var(--m-green-dark);
    color: white;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-title {
    /* font-size: 1.875rem; */
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 24px 0;
    text-shadow: 2px 4px 0px rgba(78,52,46,0.5);
}
@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
    /* .md-hidden { display: none; } */
}
@media (min-width: 1024px) {
    .hero-title { font-size: 3.75rem; }
}
.hero-subtitle {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    background-color: rgba(121, 85, 72, 0.4);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    margin: 0 0 40px 0;
    line-height: 1.5;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

/* Grid Layouts */
.grid-3 { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Farm Cards */
.card {
    background-color: white;
    border-radius: 32px;
    padding: 24px;
    border: 4px solid var(--m-brown-light);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.card-badge {
    position: absolute;
    top: -20px;
    left: -16px;
    background-color: var(--m-green);
    color: white;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 999px;
    border: 4px solid white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    font-size: 1.125rem;
    z-index: 10;
}
.card-badge.rotate-1 { transform: rotate(-3deg); }
.card-badge.rotate-2 { transform: rotate(2deg); }
.card-badge.rotate-3 { transform: rotate(-1deg); }

.card-img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 2px solid #f3f4f6;
}
.card-info {
    flex-grow: 1;
    background-color: rgba(255, 251, 240, 0.5);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(121, 85, 72, 0.1);
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
}
.card-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(121, 85, 72, 0.1);
}
.card-info-row:first-child {
  height: 70px;
}
.card-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.card-info-label {
    color: var(--m-brown);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 96px;
}
.card-info-label svg { width: 16px; height: 16px; }
.card-info-value { text-align: right; }
.price { font-weight: 700; color: var(--m-orange-dark); }
.price-tax { font-size: 0.75rem; font-weight: 400; color: var(--m-brown-light); margin-left: 4px; }
.card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.tag { padding: 6px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; border: 1px solid transparent; }
.tag-yellow { background-color: #fef9c3; color: #854d0e; border-color: #fef08a; }
.tag-blue { background-color: #dbeafe; color: #1e40af; border-color: #bfdbfe; }
.tag-pink { background-color: #fce7f3; color: #9d174d; border-color: #fbcfe8; }
.tag-orange { background-color: #ffedd5; color: #92400e; border-color: #fed7d7; }

/* News Section */
.news-section { background-color: white; border-top: 4px solid rgba(215, 204, 200, 0.5); border-bottom: 4px solid rgba(215, 204, 200, 0.5); }
.news-header { border-bottom: 4px solid var(--m-green-light); padding-bottom: 8px; margin-bottom: 32px; }
.news-header-title { font-size: 1.5rem; font-weight: 700; color: var(--m-brown); display: flex; align-items: center; gap: 8px; margin: 0; }
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 2px solid transparent;
    background-color: rgba(255, 251, 240, 0.3);
    transition: all 0.3s;
}
.news-item:hover { border-color: var(--m-green); background-color: rgba(232, 245, 233, 0.3); }
.news-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .news-img { width: 96px; height: 96px; } }
.news-content { flex-grow: 1; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.news-date { font-size: 0.75rem; color: var(--m-brown-light); font-weight: 700; }
.news-tag { font-size: 10px; color: white; padding: 2px 8px; border-radius: 999px; font-weight: 700; }
.news-tag-green { background-color: var(--m-green); }
.news-tag-orange { background-color: var(--m-orange); }
.news-title {
    font-weight: 700;
    color: var(--m-text);
    margin: 0;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}
.news-item:hover .news-title { color: var(--m-green-dark); }

/* Shop Section */
.grid-2 { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.shop-card {
    background-color: white;
    border-radius: 32px;
    border: 4px solid var(--m-brown-light);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.shop-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 16px;
    margin: 0;
}
.shop-header-orange { background-color: var(--m-orange); border-bottom: 4px solid var(--m-orange-dark); }
.shop-header-green { background-color: var(--m-green); border-bottom: 4px solid var(--m-green-dark); }
.shop-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .shop-body { padding: 32px; } }
.shop-img { width: 100%; height: 192px; object-fit: cover; border-radius: 16px; border: 2px solid #f3f4f6; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); }
.shop-info-box {
    background-color: var(--m-bg);
    padding: 16px;
    border-radius: 16px;
    border: 2px solid rgba(215, 204, 200, 0.5);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
@media (min-width: 640px) { .shop-info-box { flex-direction: row; justify-content: space-around; } }
.shop-info-item span:first-child { font-size: 0.75rem; font-weight: 700; color: var(--m-brown-light); display: block; margin-bottom: 4px; }
.shop-info-item span:last-child { font-size: 1.5rem; font-weight: 700; color: var(--m-brown); }
.shop-info-item span:last-child span { font-size: 0.875rem; display: inline; }
.shop-info-divider { display: none; width: 2px; background-color: rgba(215, 204, 200, 0.3); }
@media (min-width: 640px) { .shop-info-divider { display: block; } }
.shop-note { font-size: 0.75rem; font-weight: 700; color: var(--m-orange-dark); text-align: center; background-color: #fff7ed; padding: 8px; border-radius: 8px; margin: 0; }
.calendar-title { font-weight: 700; color: var(--m-brown); text-align: center; margin: 0 0 12px 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.calendar-title svg { width: 20px; height: 20px; color: var(--m-green); }
.calendar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 0.75rem; font-weight: 700; }
.cal-item { padding: 8px; border-radius: 12px; border: 1px solid; }
.cal-item span { display: block; margin-bottom: 4px; }
.cal-spring { background-color: #fdf2f8; border-color: #fce7f3; }
.cal-spring span { color: #ec4899; }
.cal-summer { background-color: #eff6ff; border-color: #dbeafe; }
.cal-summer span { color: #3b82f6; }
.cal-autumn { background-color: #fff7ed; border-color: #ffedd5; }
.cal-autumn span { color: #f97316; }
.cal-winter { background-color: #f9fafb; border-color: #e5e7eb; }
.cal-winter span { color: #6b7280; }
.shop-map { height: 160px; border-radius: 12px; overflow: hidden; border: 2px solid rgba(215, 204, 200, 0.5); }
.shop-map iframe { width: 100%; height: 100%; border: none; }

/* SNS Section */
.sns-section { background-color: white; border-top: 4px solid rgba(215, 204, 200, 0.5); }
.sns-header-wrap { text-align: center; margin-bottom: 32px; }
.sns-header-title { font-size: 1.5rem; font-weight: 700; color: var(--m-brown); display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin: 0; }
.sns-wrapper { background-color: var(--m-bg); border-radius: 24px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); border: 4px solid var(--m-brown-light); overflow: hidden; }
.sns-scroll { padding: 24px; display: flex; flex-direction: column; gap: 24px; max-height: 400px; overflow-y: auto; }
.sns-post { background-color: white; padding: 16px; border-radius: 16px; border: 2px solid #f3f4f6; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.sns-user { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--m-brown); }
.sns-avatar { width: 40px; height: 40px; background-color: var(--m-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.sns-avatar svg { width: 20px; height: 20px; }
.sns-username { font-weight: 700; font-size: 0.875rem; margin: 0; }
.sns-handle { font-size: 0.75rem; color: var(--m-brown-light); font-weight: 400; }
.sns-time { font-size: 10px; color: var(--m-brown-light); margin: 0; }
.sns-text { font-size: 0.875rem; font-weight: 500; line-height: 1.6; margin: 0; }

/* =========================================
   8. Sub Pages Specific
   ========================================= */
.page-header { text-align: center; margin-bottom: 40px; margin-top: 16px; }
.page-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--m-brown);
    background-color: white;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 999px;
    border: 4px solid var(--m-brown-light);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin: 0;
    width: 100%;
}
@media (min-width: 768px) { .page-title { width: auto; font-size: 1.875rem; } }
.page-subtitle { color: var(--m-brown-light); font-weight: 700; font-size: 0.875rem; margin: 16px 0 0 0; }

.info-box { background-color: white; padding: 24px; border-radius: 32px; border: 4px solid var(--m-brown-light); box-shadow: 0 1px 2px rgba(0,0,0,0.05); margin-bottom: 32px; }
@media (min-width: 768px) { .info-box { padding: 32px; } }
.info-box-title { font-size: 1.25rem; font-weight: 700; color: var(--m-green-dark); margin: 0 0 16px 0; display: flex; align-items: center; gap: 8px; }
.info-box-title svg { width: 24px; height: 24px; }
.info-box-content { background-color: rgba(255, 251, 240, 0.5); padding: 16px; border-radius: 16px; border: 1px solid rgba(121, 85, 72, 0.1); margin-bottom: 24px; font-size: 0.875rem; font-weight: 500; color: var(--m-text); }
@media (min-width: 768px) { .info-box-content { font-size: 1rem; } }
.info-box-content p { margin: 0 0 12px 0; }
.info-box-content p:last-child { margin: 0; }

.warning-box { background-color: #fff7ed; padding: 16px; border-radius: 16px; border: 2px solid #fed7aa; }
.warning-box-yellow { background-color: white; border-color: #fde047; display: flex; gap: 16px; align-items: flex-start; }
.warning-box-yellow svg { color: #eab308; width: 32px; height: 32px; flex-shrink: 0; margin-top: 4px; }
.warning-text { font-size: 0.75rem; font-weight: 700; color: #9a3412; margin: 0 0 8px 0; }
.warning-text-brown { color: var(--m-brown); font-size: 0.875rem; margin: 0; line-height: 1.6;}
.warning-link { font-size: 0.875rem; color: var(--m-orange-dark); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.warning-link:hover { text-decoration: underline; }
.warning-link svg { width: 12px; height: 12px; }

/* Forms */
.form-wrapper { background-color: white; padding: 24px; border-radius: 32px; border: 4px solid var(--m-green); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
@media (min-width: 768px) { .form-wrapper { padding: 32px; } }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: var(--m-brown); margin-bottom: 8px; }
.req-badge { font-size: 10px; background-color: var(--m-orange); color: white; padding: 2px 8px; border-radius: 999px; margin-left: 8px; }
.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--m-brown-light);
    background-color: var(--m-bg);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    outline: none;
}
.form-input:focus { border-color: var(--m-green); box-shadow: 0 0 0 4px rgba(136, 201, 83, 0.2); }
textarea.form-input { resize: vertical; }
select.form-input {
    appearance: none; cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23795548%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat; background-position: right 16px top 50%; background-size: 12px auto;
}
.form-consent { padding-top: 24px; border-top: 2px solid rgba(121, 85, 72, 0.1); margin-bottom: 24px; }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background-color: var(--m-bg);
    border-radius: 12px;
    border: 2px solid var(--m-brown-light);
    transition: border-color 0.3s;
}
.checkbox-label:hover { border-color: var(--m-green); }
.form-checkbox { width: 24px; height: 24px; cursor: pointer; accent-color: var(--m-green); }
.checkbox-text { font-size: 0.875rem; font-weight: 700; color: var(--m-brown); }
.checkbox-text a { color: var(--m-green-dark); text-decoration: underline; }


.wpcf7-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.25rem;
    background-color: var(--m-orange);
    color: white;
    border-color: var(--m-orange-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.1s ease;
    text-align: center;
    border-style: solid;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 6px;
    text-decoration: none;
    /* border-color: transparent; */
}
.Inquiry {
    width: 100%;
    background-color: var(--m-bg);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--m-brown-light);
    transition: 0.3s;
    outline: none;
}
/* Contact Form 7 のプレースホルダー色変更 */
.wpcf7-form-control::placeholder {
    color: #b1b1b1 !important;
    opacity: 1 !important;
}

/* Safari, Chrome等のWebkit系ブラウザ対応 */
.wpcf7-form-control::-webkit-input-placeholder {
    color: #b1b1b1 !important;
    opacity: 1 !important;
}

/* Firefox対応 */
.wpcf7-form-control::-moz-placeholder {
    color: #b1b1b1 !important;
    opacity: 1 !important;
}

/* IE, Edge（旧）対応 */
.wpcf7-form-control:-ms-input-placeholder {
    color: #b1b1b1 !important;
    opacity: 1 !important;
}
input[type="select"]::placeholder {
    color: #b1b1b1 !important;
    opacity: 1 !important;

}
/* Contact Form 7 の入力欄上部に余白（マージン）を設定 */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-textarea {
    margin-top: 8px !important; /* お好みに合わせて数値を変更してください */
}
/* Privacy */
.privacy-content { background-color: white; padding: 32px; border-radius: 32px; border: 4px solid var(--m-brown-light); box-shadow: 0 1px 2px rgba(0,0,0,0.05); color: var(--m-text); font-weight: 500; }
@media (min-width: 768px) { .privacy-content { padding: 48px; } }
.privacy-content p { margin: 0 0 24px 0; line-height: 1.6; }
.privacy-section { background-color: var(--m-bg); padding: 24px; border-radius: 16px; border: 2px solid rgba(121, 85, 72, 0.1); margin-bottom: 24px; }
.privacy-section h3 { font-weight: 700; font-size: 1.125rem; color: var(--m-green-dark); border-bottom: 2px solid var(--m-green-light); padding-bottom: 8px; margin: 0 0 12px 0; }
.privacy-section p { font-size: 0.875rem; margin-bottom: 8px; }
.privacy-section ul { list-style-type: disc; padding-left: 20px; font-size: 0.875rem; margin: 0; }
.privacy-section li { margin-bottom: 4px; }
.privacy-date { margin-top: 40px !important; text-align: right; font-size: 0.875rem; color: var(--m-brown-light); font-weight: 700; }

/* Toast Notification */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 70; display: flex; flex-direction: column; gap: 12px; }
.toast { background-color: var(--m-green); border: 4px solid var(--m-green-dark); color: white; padding: 16px 24px; border-radius: 16px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px; font-weight: 700; transform: translateY(40px); opacity: 0; transition: all 0.3s ease-out; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 24px; height: 24px; }

/* =========================================
　　9. Single Page Specific
   ========================================= */
.posts-single {
    width: 100%;
    height: auto;
    margin-top: 68px;
    padding: 0 16px;
    color: var(--m-brown); 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.post {
    max-width: 896px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 64px 0;
}
.thumbnail {
    max-width: 100%;
}
.post-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--m-brown); margin: 0 0 16px 0;
}
.post-date {
    font-size: 0.875rem;
    color: var(--m-brown-light);
    font-weight: 700;
    margin: 0 0 24px 0;
}
.post-content p {
    margin: 0 0 16px 0;
    line-height:1.7;
}