/* カフェ・店舗向けLP専用スタイル */
:root {
    --cafe-primary: #8d6e63;
    --cafe-secondary: #d84315;
    --cafe-accent: #ffa726;
    --cafe-warm: #ffab91;
}

/* フォント設定 - 温かみのある印象 */
body {
    font-family: 'Noto Sans JP', 'Georgia', serif;
    color: #4a4a4a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', 'Georgia', serif;
    font-weight: 600;
}

/* ヒーローセクションのカスタマイズ */
.hero-cafe {
    background: #fff8e1;
    position: relative;
    overflow: hidden;
}

.hero-cafe::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238d6e63' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* 装飾的なコーヒーカップアイコン */
.hero-cafe::after {
    content: '☕';
    position: absolute;
    font-size: 200px;
    color: rgba(141, 110, 99, 0.05);
    bottom: -50px;
    right: -50px;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* バッジのカスタマイズ */
.hero-cafe .badge {
    background: rgba(255, 248, 225, 0.8) !important;
    color: var(--cafe-primary) !important;
    border: 1px solid rgba(141, 110, 99, 0.3);
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* タイトルのスタイリング */
.hero-cafe h1 {
    color: #5d4037;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-cafe .lead {
    color: #6d4c41;
    font-size: 1.2rem;
}

/* ボタンのカスタマイズ */
.hero-cafe .hero-main-cta {
    background: var(--cafe-primary);
    border: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(141, 110, 99, 0.25);
    position: relative;
    overflow: hidden;
}

.hero-cafe .hero-main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141, 110, 99, 0.35);
}

/* QRボタンのカスタマイズ */
.hero-cafe .btn-light-primary {
    background-color: rgba(255, 248, 225, 0.9);
    color: var(--cafe-primary);
    border: 1px solid var(--cafe-warm);
    backdrop-filter: blur(5px);
}

.hero-cafe .btn-light-primary:hover {
    background-color: var(--cafe-warm);
    color: white;
    border-color: var(--cafe-primary);
}

/* 信頼性指標のカスタマイズ */
.hero-cafe .text-muted {
    color: #8d6e63 !important;
    opacity: 0.8;
}

/* 特徴セクション */
.features-section {
    background: #fafafa;
    position: relative;
}


.feature-card {
    background: white;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cafe-primary);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(141, 110, 99, 0.15);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card .material-icons-outlined {
    color: var(--cafe-primary);
    font-size: 48px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(141, 110, 99, 0.1);
    border-radius: 50%;
    display: inline-block;
}

/* フォトフローセクション */
.photo-flow-section {
    background: #fafafa;
}

.photo-flow-section .step-number {
    background: var(--cafe-primary);
    font-family: 'Georgia', serif;
    box-shadow: 0 6px 20px rgba(141, 110, 99, 0.25);
    position: relative;
}

.photo-flow-section .step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--cafe-warm);
    border-radius: 50%;
    opacity: 0.3;
}

.photo-flow-section .flow-step {
    background: rgba(255, 248, 225, 0.3);
    border: 1px solid rgba(141, 110, 99, 0.1);
    backdrop-filter: blur(5px);
}

.photo-flow-section .flow-step:hover {
    background: rgba(255, 248, 225, 0.5);
    border-color: var(--cafe-warm);
}

.photo-flow-section .step-icon {
    color: var(--cafe-primary);
}

/* テスティモニアル */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid var(--cafe-warm);
}

.testimonial-card::before {
    content: '★★★★★';
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--cafe-accent);
    font-size: 1rem;
    letter-spacing: 0.2em;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(141, 110, 99, 0.15);
}

.testimonial-content {
    font-style: italic;
    color: #5d4037;
    line-height: 1.8;
}

/* 価格ハイライトセクション */
.pricing-highlight {
    background: rgba(255, 248, 225, 0.5);
    position: relative;
    overflow: hidden;
}

.pricing-highlight::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238d6e63' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    top: -150px;
    right: -150px;
    transform: rotate(45deg);
    pointer-events: none;
}

/* CTA セクション */
.cta-section.gradient {
    background: var(--cafe-primary);
    position: relative;
    overflow: hidden;
}


/* アニメーション */
@keyframes steam {
    0% { transform: translateY(0) scaleX(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scaleX(1.2); opacity: 0.4; }
    100% { transform: translateY(-40px) scaleX(1.5); opacity: 0; }
}

.steam {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(141, 110, 99, 0.1);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: steam 3s ease-out infinite;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .hero-cafe::after {
        font-size: 120px;
        bottom: -30px;
        right: -30px;
    }
    
    .hero-cafe h1 {
        font-size: 2rem;
    }
    
    .pricing-highlight::before {
        width: 200px;
        height: 200px;
        top: -100px;
        right: -100px;
    }
}