/* ナチュラルテイストカラーパレット */
:root {
    --primary-color: #8B7355;
    --primary-dark: #6B5A44;
    --primary-light: #A68B6A;
    --accent-color: #D4B896;
    --accent-dark: #C4A882;
    --accent-light: #E8D5B7;
    --natural-green: #7A8B7A;
    --natural-beige: #F5F2E8;
    --warm-white: #FEFCF7;
    --soft-gray: #F0EDE5;
    --earth-brown: #8B6F47;
}

/* ナチュラルテイストフォント設定 */
body, html {
    font-family: "FOT-筑紫A丸ゴシック Std M", TsukuARdGothicStd-M, "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", メイリオ, Meiryo, sans-serif !important;
}

.hero-title, .section-title, .category-content h3, .product-content h4, .author-info h5, .ec-footerTitle__logo a {
    font-family: "FOT-筑紫A丸ゴシック Std M", TsukuARdGothicStd-M, "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic ProN", メイリオ, Meiryo, sans-serif !important;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--warm-white) 0%, var(--natural-beige) 100%);
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: relative;
    height: 650px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, rgba(107, 90, 68, 0.3) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4), 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: #dd5d50 !important;
    color: var(--warm-white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(76, 62, 45, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 62, 45, 0.3);
    background: #3a2f22 !important;
    color: var(--warm-white);
    border-color: #3a2f22;
    text-decoration: none;
}

/* スライダードット */
.slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    gap: 10px;
    z-index: 3;
    width: 100%;
    margin: 0;
    padding: 0;
}

.slick-dots li {
    position: relative;
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    width: 14px;
    height: 14px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
}

.slick-dots li button:hover {
    transform: scale(1.2);
    border-color: var(--accent-color);
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* セクション共通スタイル */
.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.7;
}

/* カテゴリカード */
.categories-section {
    background: var(--warm-white);
    padding: 5rem 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.category-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--soft-gray);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.15);
    border-color: var(--accent-color);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    color: var(--earth-brown);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.category-content p {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-content .btn {
    background: var(--warm-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.category-content .btn:hover {
    background: var(--primary-color);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
}

/* 商品カード */
.featured-section {
    background: var(--soft-gray);
    padding: 5rem 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.product-card {
    background: var(--warm-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(212, 184, 150, 0.3);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(139, 115, 85, 0.12);
    border-color: var(--accent-color);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--earth-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(212, 184, 150, 0.3);
}

.product-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.product-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    color: var(--earth-brown);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-content .btn {
    background: var(--warm-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.product-content .btn:hover {
    background: var(--primary-color);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
}

/* お客様の声セクション */
.testimonials-section {
    background: var(--warm-white);
    padding: 5rem 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.testimonial-card {
    background: var(--warm-white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid var(--soft-gray);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.12);
    border-color: var(--accent-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 25px;
    font-size: 3.5rem;
    color: var(--accent-color);
    font-family: 'Noto Serif JP', serif;
    opacity: 0.4;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--earth-brown);
    margin-bottom: 2.5rem;
    font-style: normal;
    text-align: center;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--earth-brown);
    font-family: 'Noto Serif JP', serif;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 300;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }

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

    .category-content {
        padding: 2rem 1.5rem;
    }

    .product-content {
        padding: 1.8rem 1.2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .categories-section,
    .featured-section,
    .testimonials-section {
        padding: 3.5rem 0;
    }
}

/* 商品タグスタイル */
.ec-productRole__tag.tag_3 {
    color: #ffffff !important;
}

/* カートアラートスタイル */
.ec-alert-warning {
    background: #dd5d50 !important;
    background-color: #dd5d50 !important;
}

/* より具体的なセレクタで上書き */
.ec-layoutRole .ec-alert-warning {
    background: #dd5d50 !important;
    background-color: #dd5d50 !important;
}

/* 可能性のある他のアラートクラス */
.alert-warning {
    background: #dd5d50 !important;
    background-color: #dd5d50 !important;
}

.ec-cartRole .ec-alert-warning {
    background: #dd5d50 !important;
    background-color: #dd5d50 !important;
}