/* ========================================
   Google Fonts
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&family=Shippori+Mincho:wght@400;500;600&family=Kiwi+Maru:wght@300;400;500&display=swap');

/* ========================================
   CSS変数
======================================== */
:root {
    --ocean-soft: #a8c9d4;
    --ocean-gentle: #b8d8e0;
    --ocean-mist: #d4e8ed;
    --ocean-foam: #e8f4f7;

    --pink-soft: #e8b5b5;
    --coral-gentle: #f5c9b8;
    --peach-soft: #ffd9c4;

    --beige-warm: #f5f0e8;
    --beige-cream: #faf7f2;
    --beige-light: #fcfaf6;

    --text-primary: #5a5a5a;
    --text-secondary: #8a8a8a;
    --text-light: #ababab;
    --white: #ffffff;
    --border-color: #e1e8ed;

    --shadow-soft: 0 4px 20px rgba(168, 201, 212, 0.15);
    --shadow-gentle: 0 6px 25px rgba(168, 201, 212, 0.2);
    --shadow-warm: 0 8px 30px rgba(232, 181, 181, 0.18);
}

/* ========================================
   基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Maru Gothic', 'Kiwi Maru', sans-serif;
    color: var(--text-primary);
    line-height: 1.9;
    background: var(--beige-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* ========================================
   ヘッダー（商品詳細・カテゴリページ用）
======================================== */
.simple-header {
    padding: 20px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    width: 80px;
    height: auto;
}

/* ========================================
   FV - ファーストビュー
======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ocean-foam) 0%, var(--beige-cream) 100%);
}

.hero-decoration {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.4;
}

.decoration-1 {
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, var(--pink-soft), transparent);
    animation: float 8s ease-in-out infinite;
}

.decoration-2 {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--ocean-gentle), transparent);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 30px;
    max-width: 800px;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
}

.hero-subtitle {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 25px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 35px;
    color: var(--text-primary);
    letter-spacing: 0.08em;
}

.hero-title-main {
    display: block;
    font-size: 4.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ocean-soft), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 2.2;
    margin-bottom: 50px;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hero-description span {
    display: inline-block;
    padding: 0 8px;
    background: linear-gradient(transparent 60%, var(--peach-soft) 60%);
    font-weight: 500;
    color: var(--text-primary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 20px 55px;
    background: linear-gradient(135deg, var(--pink-soft), var(--coral-gentle));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-warm);
    border: none;
    cursor: pointer;
    letter-spacing: 0.1em;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(232, 181, 181, 0.3);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    padding: 20px 55px;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--ocean-soft);
    cursor: pointer;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--ocean-foam);
    transform: translateY(-4px);
    color: var(--text-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    animation: bounce-soft 2.5s ease-in-out infinite;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--ocean-soft));
    margin: 0 auto 10px;
    border-radius: 2px;
}

.scroll-indicator::after {
    content: 'scroll';
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.2em;
    font-family: 'Shippori Mincho', serif;
}

@keyframes bounce-soft {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
        opacity: 0.7;
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
        opacity: 0.85;
    }
}

/* ========================================
   想い・ストーリーセクション
======================================== */
.story-section {
    padding: 120px 30px;
    background: var(--beige-cream);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-header {
    margin-bottom: 50px;
}

.story-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--ocean-mist), var(--peach-soft));
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.story-title strong {
    font-weight: 700;
    color: var(--ocean-soft);
    position: relative;
}

.story-text {
    font-size: 1.08rem;
    line-height: 2.1;
    color: var(--text-secondary);
    margin-bottom: 25px;
    letter-spacing: 0.03em;
    text-align: left;
}

.story-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gentle);
}

.feature-badge::before {
    content: '✓';
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--ocean-soft), var(--pink-soft));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ========================================
   商品一覧・タブフィルタリング
======================================== */
.products-tab-section {
    padding: 100px 30px;
    background: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    position: relative;
    color: var(--text-primary);
    padding: 0 0 15px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    font-family: 'Shippori Mincho', serif;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-soft), var(--pink-soft));
    border-radius: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 25px;
    letter-spacing: 0.08em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 2;
    letter-spacing: 0.03em;
}

/* --- タブナビゲーション --- */
.tab-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    padding: 0 10px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.tab-button:hover {
    transform: translateY(-2px);
    color: var(--ocean-soft);
    background: var(--white);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--ocean-soft), var(--ocean-gentle));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gentle);
}

/* --- 商品グリッド（PC4列設定） --- */
.pickup-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pickup-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--beige-light);
    opacity: 1;
    transform: scale(1);
}

.pickup-card.hidden {
    display: none;
}

.pickup-card.animate-in {
    animation: popIn 0.5s ease forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pickup-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gentle);
}

.pickup-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--beige-light);
}

.pickup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pickup-card:hover .pickup-image img {
    transform: scale(1.08);
}

.pickup-badge {
    display: none;
}

.pickup-content {
    padding: 25px;
}

.pickup-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--ocean-soft);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.pickup-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.pickup-description {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

/* --- 価格・ボタン（縦並び） --- */
.pickup-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-soft);
    letter-spacing: 0.02em;
}

.price-amount small {
    font-size: 0.55em;
    font-weight: 400;
    color: var(--text-light);
}

.pickup-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, var(--ocean-soft), var(--ocean-gentle));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.pickup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 201, 212, 0.3);
    color: var(--white);
}

/* ========================================
   プロセス・社長の想い
======================================== */
.story-process-section {
    padding: 120px 30px;
    background: var(--beige-cream);
}

.story-process-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-steps {
    display: grid;
    gap: 70px;
    margin-bottom: 100px;
}

.story-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--ocean-soft), var(--pink-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.step-content h3 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.step-content p {
    font-size: 1.08rem;
    line-height: 2.1;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* --- スライドショー（ぼかし入り） --- */
.process-slider-section {
    padding: 80px 0;
    margin-top: 80px;
    margin-bottom: 80px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.process-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, var(--beige-cream) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.process-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(to left, var(--beige-cream) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.slider-track {
    display: flex;
    width: calc(300px * 10);
    animation: scroll 30s linear infinite;
}

.slide {
    width: 300px;
    height: 220px;
    padding: 0 15px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 5));
    }
}

/* 社長の想い */
.owner-message {
    background: var(--white);
    padding: 70px 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-gentle);
    position: relative;
    margin-top: 100px;
}

.owner-message::before {
    content: '\f1b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 6rem;
    color: var(--pink-soft);
    opacity: 0.2;
    line-height: 1;
}

.owner-message-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.owner-message-header h3 {
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}

.owner-title {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.owner-message-content {
    font-size: 1.12rem;
    line-height: 2.2;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
}

.owner-message-content p {
    margin-bottom: 28px;
}

.owner-signature {
    text-align: right;
    margin-top: 45px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Shippori Mincho', serif;
}

/* ========================================
   商品詳細ページ
======================================== */
.product-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--ocean-soft);
}

.product-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 15px;
    background: var(--white);
}

.thumbnail-list {
    display: flex;
    gap: 10px;
}

.thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    object-fit: cover;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border: 2px solid var(--ocean-soft);
}

.product-info {
    padding-top: 10px;
}

.product-cat {
    display: inline-block;
    background: var(--ocean-foam);
    color: var(--ocean-soft);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-primary);
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pink-soft);
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.cart-action {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.qty-input {
    padding: 10px;
    width: 80px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--ocean-soft), var(--ocean-gentle));
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(168, 201, 212, 0.4);
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 201, 212, 0.5);
}

.product-content-area {
    max-width: 800px;
    margin: 0 auto 100px;
}

.content-section {
    margin-bottom: 60px;
}

.content-heading {
    text-align: center;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: 'Shippori Mincho', serif;
    position: relative;
    padding-bottom: 15px;
}

.content-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--ocean-soft);
    border-radius: 2px;
}

.desc-text {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* 使い方のステップ */
.usage-steps {
    background: var(--ocean-foam);
    padding: 40px;
    border-radius: 25px;
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--ocean-soft);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Shippori Mincho', serif;
}

.step-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--ocean-soft);
    font-weight: 700;
}

.step-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ========================================
   関連商品
======================================== */
.related-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.related-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: 'Shippori Mincho', serif;
}

/* ========================================
   カテゴリナビゲーション
======================================== */
.category-nav-section {
    padding: 60px 20px;
    background: var(--ocean-foam);
    text-align: center;
}

.category-nav-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.1em;
}

.category-nav-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.cat-nav-link {
    display: inline-block;
    padding: 18px 35px;
    background: var(--white);
    color: var(--text-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    min-width: 160px;
}

.cat-nav-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gentle);
    color: var(--ocean-soft);
}

.cat-nav-link.home {
    background: var(--ocean-soft);
    color: var(--white);
}

.cat-nav-link.home:hover {
    background: var(--ocean-gentle);
    color: var(--white);
}

.cat-nav-link.active {
    background: linear-gradient(135deg, var(--ocean-soft), var(--ocean-gentle));
    color: var(--white);
}

/* ========================================
   フッター
======================================== */
footer {
    background: linear-gradient(135deg, #9fb8b0 0%, #b8c9c4 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 80px 30px 30px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-company {
    line-height: 1.9;
}

.footer-company h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.08em;
    color: var(--white);
}

.footer-company p {
    font-size: 0.9rem;
    line-height: 2;
    opacity: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.store-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-shipping {
    line-height: 1.9;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section-title::before {
    content: '◎';
    font-size: 0.8em;
}

.shipping-info {
    margin-bottom: 30px;
    opacity: 0.9;
}

.shipping-info p {
    font-size: 0.88rem;
    line-height: 1.9;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.shipping-areas {
    font-size: 0.88rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-top: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* ========================================
   アニメーション
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ========================================
   レスポンシブ（タブレット）
======================================== */
@media (max-width: 1024px) {
    .pickup-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-column: 1 / -1;
    }
}

/* ========================================
   レスポンシブ（スマホ）
======================================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 550px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-title {
        font-size: 1.8rem;
    }

    /* --- スマホだけ3列 --- */
    .pickup-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .pickup-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .pickup-category {
        display: none;
    }

    .pickup-content {
        padding: 8px 5px;
    }

    .pickup-title {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 4px;
        height: 2.6em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .pickup-price {
        gap: 4px;
        margin-top: 4px;
    }

    .price-amount {
        font-size: 0.85rem;
        font-weight: 700;
    }

    .pickup-btn {
        font-size: 0.65rem;
        padding: 5px 0;
        border-radius: 15px;
        min-height: auto;
    }

    .pickup-image img {
        object-fit: cover;
    }

    .price-amount small {
        display: none;
    }

    .price-amount {
        font-size: 1.3rem;
    }

    .story-step {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 20px;
    }

    .step-content p {
        text-align: justify;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* --- スマホだけタブ調整 --- */
    .tab-nav {
        padding: 0;
    }

    .tab-button {
        width: 48%;
        padding: 12px 5px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .tab-button[data-filter="all"] {
        width: 100%;
        order: -1;
    }

    /* 社長の想い */
    .owner-message {
        padding: 70px 30px;
    }

    .owner-message-content {
        line-height: 1.5;
    }

    /* 商品詳細ページ */
    .simple-header {
        padding: 15px;
    }

    .product-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .usage-steps {
        padding: 20px;
    }

    .step-item {
        padding: 15px;
        gap: 15px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-text h4 {
        font-size: 1rem;
    }

    /* カテゴリナビ: SPは2列 */
    .cat-nav-link {
        width: 48%;
        min-width: auto;
        padding: 15px 10px;
        font-size: 0.85rem;
    }

    .cat-nav-link.home {
        width: 100%;
        order: 10;
        margin-top: 10px;
    }
}

/* ========================================
   BASE標準メニュー（テント＋カート）カスタマイズ
======================================== */
#baseMenu {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 2002;
}

#baseMenu > ul > li {
    float: left;
    list-style: none;
}

#baseMenu > ul > li.base {
    margin: 0 8px 0 0;
}

#baseMenu > ul > li a {
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#baseMenu > ul > li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* カートアイコンの色 */
#baseMenu .icon-cart:before,
#baseMenu .icon-tipi:before {
    color: var(--ocean-soft);
    font-size: 18px;
}

/* カート数量バッジ */
#baseMenu .cart-qty {
    position: absolute;
    top: -2px;
    right: -2px;
    padding: 0 4px;
    min-width: 16px;
    background: var(--pink-soft);
    border-radius: 50%;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

/* SOLD OUT表示 */
.soldout_cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}

.soldout_cover p {
    color: var(--pink-soft);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.soldout-text {
    color: var(--pink-soft);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* 税込表示 */
.tax-notice {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ========================================
   LogoTag・税込表示を非表示
======================================== */
.logoText {
    display: none !important;
}

#itemAttention .attention {
    display: none !important;
}

/* ========================================
   カテゴリフィルター
======================================== */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.category-btn {
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--beige-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.category-btn:hover {
    transform: translateY(-2px);
    color: var(--ocean-soft);
    background: var(--white);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--ocean-soft), var(--ocean-gentle));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gentle);
}

/* ========================================
   カテゴリセクション（スクショ風）
======================================== */
.category-section {
    margin-bottom: 80px;
    padding: 0 20px;
}

.category-section-header {
    max-width: 1280px;
    margin: 0 auto 30px;
    padding-left: 10px;
    border-left: 4px solid var(--ocean-soft);
}

.category-section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    font-size: 1.4rem;
}

.category-section-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.category-grid {
    max-width: 1280px;
    margin: 0 auto;
}

/* ========================================
   カテゴリリンクカード
======================================== */
.category-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-link-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.category-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gentle);
}

.category-link-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.category-link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-link-card:hover .category-link-image img {
    transform: scale(1.05);
}

.category-link-content {
    padding: 25px;
}

.category-link-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.category-link-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-link-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--ocean-soft), var(--ocean-gentle));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 201, 212, 0.4);
}

/* ========================================
   全商品セクション
======================================== */
.all-products-section {
    margin-top: 80px;
    padding: 0 20px;
}

.all-products-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ocean-soft);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SPレスポンシブ調整
======================================== */
@media (max-width: 768px) {
    .category-link-title {
        font-size: 1.1rem;
    }

    .category-link-desc {
        font-size: 0.85rem;
    }

    .category-link-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .all-products-title {
        font-size: 1.2rem;
    }

    .pickup-title {
        font-size: 0.95rem;
    }

    .price-amount {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   お問い合わせフォーム
======================================== */
.inquirySection,
#ShopInquiry {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}
.inquirySection h1,
#ShopInquiry h1 {
    text-align: center;
    margin-bottom: 30px;
}
.inquirySection form,
#ShopInquiry form {
    max-width: 100%;
}
.inquirySection input,
.inquirySection textarea,
#ShopInquiry input,
#ShopInquiry textarea {
    width: 100%;
}

/* ========================================
   商品ラベル（NEW等）
======================================== */
.pickup-image {
    position: relative;
}
.pickup-image .label,
.pickup-image .item-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.pickup-image .item-label img {
    max-width: 60px;
    height: auto;
}

.pickup-image a {
    position: relative;
    display: block;
}

/* ========================================
   カートに入れるボタン
======================================== */
.cart-area {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.cart-area .quantity,
.cart-area label {
    font-weight: 600;
    color: #5a5a5a;
    margin-bottom: 10px;
    display: block;
}

.cart-area select,
.cart-area input[type="number"] {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 80px;
    margin-bottom: 20px;
}

.cart-area input[type="submit"],
.cart-area button,
.cart-area .addcart,
#AddToCart {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #a8c9d4, #b8d4de);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-area input[type="submit"]:hover,
.cart-area button:hover,
.cart-area .addcart:hover,
#AddToCart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 201, 212, 0.4);
}

/* ========================================
   商品ページ・お問い合わせ背景
======================================== */
body {
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f0e8 50%, #fce4d6 100%) !important;
    background-attachment: fixed !important;
}

.product-container,
.product-main {
    background: transparent;
}

.inquirySection,
#ShopInquiry {
    background: transparent;
}

/* ========================================
   お問い合わせページデザイン統一
======================================== */
.inquirySection h1,
#ShopInquiry h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #5a5a5a;
    border-bottom: 2px solid #a8c9d4;
    padding-bottom: 15px;
    font-size: 0;
}

.inquirySection h1::after,
#ShopInquiry h1::after {
    content: "お問い合わせ";
    font-size: 1.8rem;
}

.inquirySection p,
#ShopInquiry p {
    color: #777;
    line-height: 1.8;
}

.inquirySection label,
#ShopInquiry label {
    font-weight: 600;
    color: #5a5a5a;
    margin-bottom: 8px;
    display: block;
}

.inquirySection input,
.inquirySection textarea,
#ShopInquiry input,
#ShopInquiry textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.inquirySection input:focus,
.inquirySection textarea:focus,
#ShopInquiry input:focus,
#ShopInquiry textarea:focus {
    border-color: #a8c9d4;
    outline: none;
}

.inquirySection input[type="submit"],
.inquirySection button,
#ShopInquiry input[type="submit"],
#ShopInquiry button {
    background: linear-gradient(135deg, #a8c9d4, #b8d4de);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquirySection input[type="submit"]:hover,
.inquirySection button:hover,
#ShopInquiry input[type="submit"]:hover,
#ShopInquiry button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(168, 201, 212, 0.4);
}

/* ========================================
   コンテンツページラッパー（お問い合わせ・プライバシー・特商法）
======================================== */
.content-page-wrapper {
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 0 30px 60px !important;
    background: transparent !important;
}

.content-page-wrapper h1 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #a8c9d4 !important;
}

.content-page-wrapper h2,
.content-page-wrapper h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
    padding-left: 12px !important;
    border-left: 4px solid #a8c9d4 !important;
}

.content-page-wrapper p {
    color: #666 !important;
    line-height: 2 !important;
    margin-bottom: 15px !important;
}

.content-page-wrapper ul {
    padding-left: 25px !important;
    margin-bottom: 20px !important;
}

.content-page-wrapper li {
    color: #666 !important;
    line-height: 2 !important;
    margin-bottom: 8px !important;
}

.content-page-wrapper table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.content-page-wrapper th {
    background: #f5f5f5 !important;
    padding: 15px !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.content-page-wrapper td {
    padding: 15px !important;
    color: #666 !important;
    line-height: 1.8 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.content-page-wrapper tr:last-child th,
.content-page-wrapper tr:last-child td {
    border-bottom: none !important;
}

@media (max-width: 768px) {
    .content-page-wrapper {
        padding: 40px 20px !important;
    }
    .content-page-wrapper h1 {
        font-size: 1.5rem !important;
    }
    .content-page-wrapper th,
    .content-page-wrapper td {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
}

/* ========================================
   プライバシーポリシー・特定商取引法ページ（後方互換）
======================================== */
.privacySection,
.lawSection,
#ShopLaw,
#ShopPrivacy,
.lawContents,
.privacyContents,
#privacy,
#law,
.privacy-page,
.law-page {
    max-width: 700px !important;
    margin: 0 auto !important;
    padding: 60px 30px !important;
    background: transparent !important;
}

.privacySection h1,
.lawSection h1,
#ShopLaw h1,
#ShopPrivacy h1,
.lawContents h1,
.privacyContents h1,
[class*="law"] h1,
[class*="privacy"] h1 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #a8c9d4 !important;
}

.privacySection h2,
.lawSection h2,
#ShopLaw h2,
#ShopPrivacy h2,
.lawContents h2,
.privacyContents h2,
[class*="law"] h2,
[class*="privacy"] h2,
.privacySection h3,
.lawSection h3,
#ShopLaw h3,
#ShopPrivacy h3,
.lawContents h3,
.privacyContents h3,
[class*="law"] h3,
[class*="privacy"] h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    margin-top: 25px !important;
    margin-bottom: 12px !important;
    padding-left: 12px !important;
    border-left: 4px solid #a8c9d4 !important;
}

.privacySection p,
.lawSection p,
#ShopLaw p,
#ShopPrivacy p,
.lawContents p,
.privacyContents p,
[class*="law"] p,
[class*="privacy"] p {
    color: #666 !important;
    line-height: 2 !important;
    margin-bottom: 15px !important;
}

.privacySection table,
.lawSection table,
#ShopLaw table,
#ShopPrivacy table,
.lawContents table,
.privacyContents table,
[class*="law"] table,
[class*="privacy"] table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    background: #fff !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.privacySection th,
.lawSection th,
#ShopLaw th,
#ShopPrivacy th,
.lawContents th,
.privacyContents th,
[class*="law"] th,
[class*="privacy"] th {
    background: #f5f5f5 !important;
    padding: 15px !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    width: 30% !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.privacySection td,
.lawSection td,
#ShopLaw td,
#ShopPrivacy td,
.lawContents td,
.privacyContents td,
[class*="law"] td,
[class*="privacy"] td {
    padding: 15px !important;
    color: #666 !important;
    line-height: 1.8 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.privacySection tr:last-child th,
.privacySection tr:last-child td,
.lawSection tr:last-child th,
.lawSection tr:last-child td,
#ShopLaw tr:last-child th,
#ShopLaw tr:last-child td,
#ShopPrivacy tr:last-child th,
#ShopPrivacy tr:last-child td {
    border-bottom: none !important;
}

.privacySection ul,
.lawSection ul,
#ShopLaw ul,
#ShopPrivacy ul,
.lawContents ul,
.privacyContents ul,
[class*="law"] ul,
[class*="privacy"] ul {
    padding-left: 25px !important;
    margin-bottom: 20px !important;
}

.privacySection li,
.lawSection li,
#ShopLaw li,
#ShopPrivacy li,
.lawContents li,
.privacyContents li,
[class*="law"] li,
[class*="privacy"] li {
    color: #666 !important;
    line-height: 2 !important;
    margin-bottom: 8px !important;
}

@media (max-width: 768px) {
    .privacySection,
    .lawSection,
    #ShopLaw,
    #ShopPrivacy {
        padding: 40px 20px;
    }

    .privacySection h1,
    .lawSection h1,
    #ShopLaw h1,
    #ShopPrivacy h1 {
        font-size: 1.5rem;
    }

    .privacySection th,
    .lawSection th,
    #ShopLaw th,
    #ShopPrivacy th {
        width: 35%;
        padding: 12px;
        font-size: 0.9rem;
    }

    .privacySection td,
    .lawSection td,
    #ShopLaw td,
    #ShopPrivacy td {
        padding: 12px;
        font-size: 0.9rem;
    }
}
