/* ==================== ご利用ガイドページ固有スタイル ==================== */

.guide-container {
    padding: 0;
}

/* ご利用ガイドヒーロー */
.guide-hero {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.guide-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    opacity: 0.9;
}

/* ご利用ガイドコンテンツ */
.guide-content {
    padding: 80px 0;
    background-color: #fffbf0;
}

.guide-content .inner {
    max-width: 1000px;
}

.guide-intro {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 60px;
    border-top: 4px solid #d97706;
}

.guide-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.guide-intro a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.guide-intro a:hover {
    color: #f59e0b;
}

/* セクション */
.guide-section {
    margin-bottom: 70px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f59e0b;
    text-align: center;
}

/* ご注文の流れ */
.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(217, 119, 6, 0.1);
    width: 100%;
    max-width: 700px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.step-content a {
    color: #d97706;
    text-decoration: underline;
}

.step-content a:hover {
    color: #f59e0b;
}

.flow-arrow {
    font-size: 2rem;
    color: #f59e0b;
    margin: 15px 0;
    font-weight: 700;
}

/* お支払い方法 */
.payment-info {
    display: flex;
    justify-content: center;
}

.payment-method {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    width: 100%;
}

.payment-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 15px;
}

.payment-method p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.payment-method ul {
    margin: 15px 0;
    padding-left: 25px;
}

.payment-method li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* 配送について */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.highlight-price {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #d97706 !important;
    margin: 10px 0 !important;
}

.note {
    font-size: 0.85rem !important;
    color: #888 !important;
}

/* 返品・交換 */
.return-policy {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.policy-box {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-ok {
    border-top: 4px solid #10b981;
}

.policy-ng {
    border-top: 4px solid #ef4444;
}

.policy-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.policy-ok h3 {
    color: #10b981;
}

.policy-ng h3 {
    color: #ef4444;
}

.policy-box ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-box li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.policy-note {
    font-size: 0.9rem !important;
    color: #10b981 !important;
    background: #f0fdf4;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px !important;
}

/* その他のご案内 */
.other-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 12px;
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

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

/* 戻るリンク */
.back-link {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #d97706;
    border: 2px solid #d97706;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #d97706;
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .guide-hero {
        padding: 60px 20px;
    }

    .guide-hero h1 {
        font-size: 2.2rem;
    }

    .guide-hero-subtitle {
        font-size: 1rem;
    }

    .guide-content {
        padding: 60px 0;
    }

    .guide-intro {
        padding: 25px;
        margin-bottom: 50px;
    }

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

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .flow-step {
        padding: 25px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

    .payment-method {
        padding: 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .return-policy {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .other-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .back-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .guide-hero h1 {
        font-size: 1.8rem;
    }

    .guide-intro {
        padding: 20px;
    }

    .flow-step {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .payment-method {
        padding: 25px;
    }

    .info-box,
    .policy-box,
    .info-item {
        padding: 25px;
    }

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