/* lp-oroshi.css */

:root {
    --green:      #2d5a27;
    --green-mid:  #4a7c3f;
    --gold:       #b87a2a;
    --gold-light: #d4963c;
    --navy:       #1a2e4a;
    --beige:      #f3ede2;
    --beige-dark: #e4d9c8;
    --brown:      #5c3d1e;
    --text:       #2c2416;
    --text-sub:   #5a5a5a;
    --bg:         #fdfaf5;
    --white:      #ffffff;
}

.lp-oroshi {
    --green:      #2d5a27;
    --green-mid:  #4a7c3f;
    --gold:       #b87a2a;
    --gold-light: #d4963c;
    --navy:       #1a2e4a;
    --beige:      #f3ede2;
    --beige-dark: #e4d9c8;
    --brown:      #5c3d1e;
    --text:       #2c2416;
    --text-sub:   #5a5a5a;
    --bg:         #fdfaf5;
    --white:      #ffffff;

    font-family: 'Hiragino Mincho ProN', 'Yu Mincho', '游明朝', Georgia, serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
.lp-oroshi *, .lp-oroshi *::before, .lp-oroshi *::after { box-sizing: inherit; }
.lp-oroshi img { max-width: 100%; height: auto; display: block; }
.lp-oroshi a { color: inherit; text-decoration: none; }

/* layout */
.lo-section { padding: 56px 24px; }
.lo-section--beige { background: var(--beige) !important; width: 100%; }
.lo-section--white { background: var(--bg); }
.lo-section--bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lo-inner { max-width: 1280px; margin: 0 auto; }
.lo-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text);
}
.lo-title--gold { color: var(--gold); }
.lo-title-bar {
    background: var(--brown);
    color: var(--white);
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
}

/* button */
.lo-btn {
    display: inline-block;
    background: var(--green-mid);
    color: var(--white) !important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-align: center;
    padding: 18px 36px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s;
    line-height: 1.4;
}
.lo-btn:hover { background: var(--green); }
.lo-btn--block { display: block; width: 100%; }
.lo-btn--gold { background: var(--gold) !important; }
.lo-btn--gold:hover { background: var(--brown) !important; }
.lo-btn--outline {
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
}
.lo-btn--outline:hover { background: rgba(255,255,255,0.15) !important; }
.lo-btn--outline-green {
    background: transparent;
    color: var(--green-mid) !important;
    border-color: var(--green-mid);
}
.lo-btn--outline-green:hover {
    background: var(--green-mid);
    color: var(--white) !important;
}
.lo-btn--navy { background: var(--navy); }
.lo-btn--navy:hover { background: #0f1e30; }

/* utility */
.lo-u-mt-sm { margin-top: 12px; }
.lo-u-mt-md { margin-top: 24px; }
.lo-u-mt-lg { margin-top: 48px; }
.lo-u-center { text-align: center; }

/* kv */
.lo-kv__img { width: 100%; height: auto; display: block; }
.lo-kv__img--pc { display: none !important; }
.lo-kv__img--sp { display: block !important; }

/* benefits banner */
.lo-benefits-banner__img { width: 100%; height: auto; display: block; }
.lo-benefits-banner__img--pc { display: none !important; }
.lo-benefits-banner__img--sp { display: block !important; }

/* products */
.lo-products__catch {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    margin-top: -24px;
}
.lo-products__lead {
    text-align: center;
    font-size: 18px;
    color: var(--text-sub);
    margin-bottom: 36px;
    margin-top: 0;
}
.lo-products__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.lo-product {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    position: relative;
}
.lo-product__badge {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    z-index: 1;
    line-height: 1.3;
}
.lo-product__badge--free {
    background: #c0392b;
    color: var(--white);
}
.lo-product__badge--trial {
    background: var(--beige-dark);
    color: var(--brown);
    border: 1px solid var(--brown);
}
.lo-product__img-wrap { overflow: hidden; aspect-ratio: 743 / 493; }
.lo-product__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}
.lo-product a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.lo-product:hover .lo-product__img-wrap img { transform: scale(1.03); }
.lo-product__body { padding: 16px 18px 20px; }
.lo-product__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 4px;
}
.lo-product__year { font-size: 13px; color: var(--text-sub); }

/* contents */
.lo-contents { width: 100%; }
.lo-contents__img { width: 100%; height: auto; display: block; }

/* faq */
.lo-faq { display: flex; flex-direction: column; gap: 2px; }
.lo-faq__q {
    background: var(--green);
    color: var(--white);
    padding: 16px 20px 16px 52px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin-top: 12px;
}
.lo-faq__q::before {
    content: 'Q';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    font-family: Georgia, serif;
    color: var(--gold-light);
}
.lo-faq__a {
    background: var(--white);
    border: 1px solid var(--beige-dark);
    border-top: none;
    padding: 16px 20px 16px 52px;
    font-size: 15px;
    line-height: 2;
    color: var(--text-sub);
    position: relative;
}
.lo-faq__a::before {
    content: 'A';
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 20px;
    font-weight: 700;
    font-family: Georgia, serif;
    color: var(--green-mid);
}
.lo-faq__a a {
    color: var(--green-mid);
    text-decoration: underline;
    word-break: break-all;
}
.lo-faq__a a:hover { color: var(--green); }

/* final cta */
.lo-final-cta {
    text-align: center;
    padding: 64px 24px;
    background: var(--beige) !important;
    width: 100%;
}
.lo-final-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 32px;
}
.lo-final-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.lo-final-cta__note {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
}

/* ============================================================
   PC (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {

    .lp-oroshi { font-size: 17px; }

    .lo-section { padding: 80px 40px; }

    /* kv */
    .lo-kv__img--pc { display: block !important; }
    .lo-kv__img--sp { display: none !important; }

    /* benefits banner */
    .lo-benefits-banner__img--pc { display: block !important; }
    .lo-benefits-banner__img--sp { display: none !important; }

    /* title */
    .lo-title { font-size: 32px; margin-bottom: 52px; }
    .lo-title-bar { font-size: 21px; padding: 18px 40px; }

    /* button */
    .lo-btn { font-size: 17px; padding: 20px 48px; }

    /* products */
    .lo-products__lead { font-size: 20px; }
    .lo-products__catch { font-size: 28px; }
    .lo-products__grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .lo-product__name { font-size: 16px; }
    .lo-product__year { font-size: 14px; }
    .lo-product__badge { font-size: 12px; padding: 6px 12px; }

    /* faq */
    .lo-faq__q { font-size: 18px; padding: 18px 24px 18px 60px; }
    .lo-faq__q::before { font-size: 22px; left: 20px; }
    .lo-faq__a { font-size: 17px; padding: 18px 24px 18px 60px; }
    .lo-faq__a::before { font-size: 22px; left: 20px; top: 18px; }

    /* final cta */
    .lo-final-cta { padding: 96px 40px; }
    .lo-final-cta__title { font-size: 34px; }
    .lo-final-cta__buttons { flex-direction: row; justify-content: center; }
    .lo-final-cta__buttons .lo-btn { font-size: 18px; padding: 22px 56px; }
    .lo-final-cta__note { font-size: 14px; }
}