/* ============================
   報酬・ボーナスセクション
============================ */

.reward-section {
    background: #e3f1ec;
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-top: -193px;
}

/* 🔶 入店祝金バナー */

.bonus-banner {
    background: linear-gradient(180deg, #ffe487, #f9c84a);
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    color: #5b4300;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(150, 120, 0, 0.2);
    margin-bottom: 20px;
}

.bonus-banner strong {
    font-size: 1.3rem;
    color: #b34f00;
}

/* 🔷 報酬計算ボタン */

.reward-btn {
    background: linear-gradient(180deg, #53b6f0, #1887e4);
    display: inline-block;
    color: #fff;
    font-weight: 600;
    border-radius: 40px;
    padding: 14px 34px;
    font-size: 1.1rem;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 90, 150, 0.3);
    transition: 0.3s;
    cursor: pointer;
}

.reward-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 90, 150, 0.4);
}

/* ============================
   丸アイコンメニュー
============================ */

.menu-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.icon-item {
    width: 26%;
    text-align: center;
}

.icon-item img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 10px;
    transition: transform 0.3s;
}

.icon-item img:hover {
    transform: scale(1.05);
}

.icon-item p {
    font-size: 0.85rem;
    color: #333;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================
   レスポンシブ
============================ */

@media (max-width: 768px) {
    .reward-section {
        padding: 40px 10px;
        margin-top: -116px;
    }
    .bonus-banner,
    .reward-btn {
        font-size: 0.95rem;
        padding: 12px 24px;
    }
    .icon-item img {
        width: 60px;
        height: 60px;
    }
    .icon-item p {
        font-size: 0.8rem;
    }
}

/* ===== Base */

:root {
    --pink: #ff6ea8;
    --pink-2: #ffb6d1;
    --ink: #2b2b2b;
    --bg: #fff;
    --muted: #6b6b6b;
    --blue: #2188ff;
}

.clw-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 20px;
    box-sizing: border-box;
    line-height: 1.9;
    color: var(--ink);
    font-family: "Noto Sans JP", system-ui, -apple-system,
        "Hiragino Kaku Gothic ProN", sans-serif;
}

.sp {
    display: none;
}

/* ===== Head */

.clw-eyebrow {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ff3f92;
    background: linear-gradient(90deg, #ffe3ef, transparent 70%);
    padding: 0.25em 0.6em;
    border-radius: 999px;
    margin: 0 0 10px;
}

.clw-title {
    font-size: clamp(22px, 3.2vw, 34px);
    line-height: 1.5;
    margin: 0 0 16px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--ink), #6f4c4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.clw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.clw-tags li {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.45em 0.9em;
    border-radius: 999px;
    color: #7a2d45;
    background: linear-gradient(180deg, #ffe7f1, #ffd2e6);
    border: 1px solid #ffc0db;
}

/* ===== Body */

.clw-body p {
    margin: 0 0 18px;
    color: var(--ink);
}

.clw-body p strong {
    font-weight: 800;
}

.clw-body h2 {
    font-size: clamp(18px, 2.4vw, 22px);
    margin: 28px 0 10px;
    font-weight: 800;
    color: #442c2f;
    position: relative;
    padding-left: 14px;
}

.clw-body h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    bottom: 0.4em;
    width: 6px;
    border-radius: 6px;
    background: linear-gradient(180deg, #ff79b0, #ffb7d3);
}

/* ===== CTA */

.clw-cta {
    margin-top: 28px;
    text-align: center;
}

.clw-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 14px 36px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #3aa0ff, #1f82ff);
    box-shadow: 0 10px 24px rgba(33, 136, 255, 0.28),
        0 2px 0 rgba(0, 0, 0, 0.08) inset;
    transition: 0.25s ease;
}

.clw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(33, 136, 255, 0.35);
}

.clw-note {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ===== Section wrapper (optional soft bg) */

.clw-about {
    background: radial-gradient(
            1200px 280px at 10% -40%,
            #fff0f6 0%,
            transparent 60%
        ),
        radial-gradient(900px 260px at 110% 0%, #fff4f9 0%, transparent 60%),
        var(--bg);
    border-top: 1px solid #f2e3ea;
}

/* ===== Responsive */

@media (max-width: 768px) {
    .sp {
        display: inline;
    }
    .clw-container {
        padding: 36px 16px;
    }
    .clw-cta {
        margin-top: 22px;
    }
    .clw-btn {
        width: 100%;
        max-width: 420px;
    }
}

/* ===== Base */

:root {
    --ink: #2b2b2b;
    --muted: #707070;
    --card: #ffffff;
    --line: #ececec;
    --pink: #ff6ea8;
    --pink-2: #ff9fc4;
    --blue: #2188ff;
}

.lc-section {
    padding: 40px 16px;
    display: grid;
    place-items: center;
    background: #fafafa;
}

.lc-card {
    width: min(980px, 100%);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* ===== Visual */

.lc-visual {
    margin: 0;
    padding: 16px;
    background: linear-gradient(180deg, #fff, #f7f7f7);
}

.lc-visual img {
    width: 100%;
    display: block;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ===== Title (ピル型バー) */

.lc-title {
    margin: 18px auto 8px;
    width: calc(100% - 32px);
    max-width: 920px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    box-shadow: 0 6px 18px rgba(255, 110, 168, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* ===== Body */

.lc-body {
    padding: 4px 22px 26px;
    color: var(--ink);
    line-height: 1.9;
}

.lc-body p {
    margin: 0 0 16px;
}

.lc-body strong {
    font-weight: 800;
}

/* ===== CTA */

.lc-cta {
    margin-top: 12px;
    text-align: center;
}

.lc-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(90deg, #3aa0ff, #1f82ff);
    box-shadow: 0 10px 24px rgba(33, 136, 255, 0.28),
        0 2px 0 rgba(0, 0, 0, 0.08) inset;
    transition: 0.2s ease;
}

.lc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(33, 136, 255, 0.35);
}

.lc-note {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

/* ===== Responsive */

@media (max-width: 768px) {
    .lc-card {
        border-radius: 14px;
    }
    .lc-title {
        font-size: 18px;
        padding: 12px 16px;
    }
    .lc-body {
        padding: 0 16px 22px;
    }
    .lc-btn {
        width: 100%;
        max-width: 420px;
    }
}

.reward-system {
    background: #fdfdfd;
    padding: 60px 24px;
    text-align: center;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
}

.reward-title {
    color: #d44c6e;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.reward-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff7ab5, #ffbb57);
    margin: 10px auto 25px;
    border-radius: 2px;
}

.reward-desc {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #666;
}

/* =======================
   カードデザイン
======================= */

.reward-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
}

.reward-card {
    background: linear-gradient(145deg, #ffffff, #f3f9fb);
    border: 1px solid #e2f1f6;
    border-radius: 14px;
    padding: 20px 10px;
    box-shadow: 0 3px 10px rgba(0, 100, 150, 0.08);
    transition: all 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 100, 150, 0.12);
}

.reward-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b7ca0;
    margin-bottom: 8px;
}

.reward-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #4a4a4a;
}

.reward-card .price {
    font-weight: 800;
    color: #80d14f;
    font-size: 1.4rem;
    background: linear-gradient(90deg, #94e365, #55c3e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =======================
   補足
======================= */

.reward-note {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.9;
    text-align: left;
    background: #fafafa;
    border-left: 4px solid #ff89b2;
    padding: 16px 20px;
    border-radius: 6px;
}

/* ============================
   Feature Section Base
============================ */

.clw-feature-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ============================
   Card Layout
============================ */

.clw-feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.clw-feature-card:hover {
    transform: translateY(-4px);
}

/* ============================
   Theme Colors
============================ */

.clw-feature-card.pink {
    background: linear-gradient(135deg, #ff82b2, #ff4f7f);
}

.clw-feature-card.blue {
    background: linear-gradient(135deg, #57b7f6, #2b95ec);
}

/* ============================
   Image
============================ */

.clw-feature-image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.clw-feature-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================
   Text
============================ */

.clw-feature-text {
    flex: 0 0 60%;
    padding: 40px;
    text-align: left;
}

.clw-feature-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.4;
}

.clw-feature-text p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* ============================
   Button
============================ */

.clw-feature-btn {
    display: inline-block;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #d84b6b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.clw-feature-card.blue .clw-feature-btn {
    color: #217ee7;
}

.clw-feature-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ============================
   Responsive
============================ */

@media (max-width: 768px) {
    .clw-feature-card {
        flex-direction: column;
        text-align: center;
    }
    .clw-feature-image {
        flex: 0 0 auto;
        width: 100%;
    }
    .clw-feature-text {
        flex: 0 0 auto;
        padding: 24px 20px 40px;
    }
    .clw-feature-text h2 {
        font-size: 1.5rem;
    }
    .clw-feature-text p {
        font-size: 0.95rem;
    }
    .clw-feature-btn {
        font-size: 0.9rem;
        padding: 10px 24px;
    }
}

/* =======================
   スマホ対応
======================= */

@media (min-width: 640px) {
    .reward-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================
   特集セクション
============================== */

.feature-section {
    background: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

.feature-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #d44c6e;
    margin-bottom: 50px;
    position: relative;
}

.feature-title::before {
    content: "✨";
    display: block;
    font-size: 1.2rem;
    color: #ff9aa8;
    margin-bottom: 8px;
}

/* ==============================
   各項目カード
============================== */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* 左右交互デザイン */

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-item img {
    width: 45%;
    border-radius: 10px;
    object-fit: cover;
}

.feature-text {
    flex: 1;
    text-align: left;
}

.feature-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* ==============================
   スマホ対応
============================== */

@media (max-width: 768px) {
    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
    }
    .feature-item img {
        width: 100%;
        margin-bottom: 14px;
    }
    .feature-text {
        text-align: center;
    }
}

/* ===============================
   フッター
=============================== */

.site-footer {
    background: #2f3b3d;
    /* 深めのグレー */
    color: #cfd6d8;
    text-align: center;
    padding: 40px 20px 60px;
    font-size: 0.9rem;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-bottom: 14px;
}

.footer-links a {
    color: #e4eff2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff99b8;
}

.footer-links span {
    color: #a3b2b4;
    margin: 0 8px;
}

.footer-copy {
    color: #b3c2c5;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* スマホ対応 */

@media (max-width: 600px) {
    .site-footer {
        font-size: 0.85rem;
        padding: 30px 10px 50px;
    }
}

/* ===========================
   固定ボタンエリア
=========================== */

.fixed-bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* 共通スタイル */

.fixed-bottom-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 18px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 160px;
}

/* LINEボタン */

.fixed-bottom-buttons .btn-line {
    background: linear-gradient(90deg, #00c300, #00d544);
}

.fixed-bottom-buttons .btn-line:hover {
    background: linear-gradient(90deg, #00d544, #00c300);
}

/* 面接予約ボタン */

.fixed-bottom-buttons .btn-reserve {
    background: linear-gradient(90deg, #ff66a6, #ff3366);
}

.fixed-bottom-buttons .btn-reserve:hover {
    background: linear-gradient(90deg, #ff3366, #ff66a6);
}

.fixed-bottom-buttons img {
    width: 20px;
    height: 20px;
}

/* ===========================
   スマホ対応
=========================== */

@media (max-width: 768px) {
    .fixed-bottom-buttons {
        flex-direction: row;
        justify-content: center;
        right: 0;
        left: 0;
        bottom: 10px;
    }
    .fixed-bottom-buttons a {
        width: 45%;
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}
