@charset "UTF-8";

/* =========================================================
   Rejusea Page Original Styles
   姉ヶ崎駅前眼科リジュセア専用スタイル
   ========================================================= */

#rejusea-page-wrapper {
    color: var(--color-text);
    font-family: var(--font-base);
    background-color: var(--color-white);
    line-height: 1.8;
}

.breadcrumb-wrapper {
    background: var(--color-light-purple);
    padding: 10px 0;
}

.breadcrumb-wrapper .container {
    text-align: center;
}

.rj-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.rj-hero {
    background: var(--color-primary);
    padding: 80px 0;
    text-align: center;
    color: var(--color-white);
}

.rj-hero-sub {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.rj-hero-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.3;
}

/* --- Intro Section (PC 2column Layout) --- */
.rj-intro-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
}

.rj-main-visual-img {
    flex: 1;
}

.rj-main-visual-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: block;
}

.rj-intro-box {
    flex: 1.2;
    padding: 40px;
    background-color: var(--color-pale);
    border-radius: 15px;
    border-left: 8px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.rj-intro-box p {
    margin: 0;
}

/* --- Titles --- */
.rj-main-title {
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: var(--color-primary);
    text-align: center;
    margin: 80px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.rj-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-main);
}

.rj-sub-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-main);
    border-bottom: 2px solid var(--color-light-purple);
    padding-bottom: 10px;
    margin: 60px 0 25px;
    text-align: center;
}

/* --- Billing Section & Table --- */
.rj-billing-box {
    background: var(--color-light-purple);
    padding: 40px;
    border-radius: 15px;
    font-size: 0.95rem;
}

.rj-table-wrapper {
    margin: 25px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.rj-cost-table {
    width: 100%;
    border-collapse: collapse;
}

.rj-cost-table th {
    background: var(--color-primary);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
}

.rj-cost-table td {
    padding: 20px;
    border-bottom: 1px solid var(--color-pale);
    vertical-align: middle;

}

.rj-cost-table td:last-child {
    text-align: center;
    font-weight: bold;
    color: var(--color-main);
    font-size: 1.1rem;
}

.rj-cost-table small {
    display: block;
    font-weight: normal;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

.rj-note {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* --- Check List --- */
.rj-check-list {
    margin: 30px 0;
    padding: 25px 30px;
    background-color: var(--color-light);
    border-radius: 8px;
}

.rj-check-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rj-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-text);
}

.rj-check-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 0.8rem;
    top: 2px;
}

/* --- Feature Grid --- */
.rj-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.rj-feature-item {
    background: var(--color-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.rj-feature-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

/* --- Flow Section --- */
.rj-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rj-flow-item {
    display: flex;
    gap: 20px;
    background: var(--color-white);
    padding: 25px;
    border: 1px solid var(--color-border-medium);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    align-items: center;
}

.rj-flow-num {
    background: var(--color-secondary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- Other Components --- */
.rj-text-block {
    margin-bottom: 30px;
}

.rj-risk-box {
    background-color: var(--color-light-purple);
    padding: 25px;
    border: 1px dashed var(--color-main);
    border-radius: 10px;
}

.rj-qa-list {
    margin-bottom: 60px;
}

.rj-qa-item {
    margin-bottom: 20px;
    border: 1px solid var(--color-border-medium);
    border-radius: 10px;
    overflow: hidden;
}

.rj-q {
    background: var(--color-primary);
    color: #fff;
    padding: 15px 25px;
    font-weight: bold;
}

.rj-a {
    padding: 20px 25px;
    background: #fff;
}

/* --- CTA --- */
.rj-cta {
    text-align: center;
    margin: 80px 0;
}

.rj-btn {
    display: inline-block;
    background: var(--color-main);
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.rj-btn:hover {
    transform: translateY(-3px);
    background-color: var(--color-dark);
    color: #fff;
}

.equipment-contact-area {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 80px;
}

.equipment-contact-text {
    font-size: 1.1rem;
    text-align: left;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--color-dark);
    color: #fff;
}

table {
    margin-bottom: 0px !important;
}

.pc-hidden {
    display: none;
}



/* --- Mobile Responsive (強化版) --- */
@media (max-width: 768px) {

    /* ヒーローエリアの調整 */
    .rj-hero {
        padding: 50px 0;
    }

    .rj-hero-title {
        font-size: 1.8rem;
    }

    .rj-hero-sub {
        font-size: 0.9rem;
    }

    .rj-sub-title {
        text-align: center;
    }

    /* 導入部2カラムの解除 */
    .rj-intro-flex {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0;
    }

    .rj-intro-box {
        padding: 25px;
        border-left-width: 6px;
    }

    /* 【重要】テーブルを縦並びに変換 */
    .rj-cost-table thead {
        display: none;
        /* ヘッダー(項目/費用)を隠す */
    }

    .rj-cost-table tr {
        display: block;
        border-bottom: 2px solid var(--color-pale);
        padding: 15px 0;
    }

    .rj-cost-table tr:last-child {
        border-bottom: none;
    }

    .rj-cost-table th {
        text-align: center;
    }

    .rj-cost-table td {
        display: block;
        /* 縦並びにする */
        width: 100%;
        padding: 5px 20px;
        border: none;
        text-align: left !important;
        /* 金額の右寄せを解除 */
    }

    .rj-cost-table td:first-child {
        font-weight: bold;
        color: var(--color-primary);
        font-size: 1rem;
    }

    .rj-cost-table td:last-child {
        font-size: 1.3rem;
        /* 金額を強調 */
        color: var(--color-main);
        padding-top: 0;
    }

    /* 特徴グリッドを1列に */
    .rj-feature-grid {
        grid-template-columns: 1fr;
    }

    .rj-feature-item {
        background: var(--color-light);
        padding: 25px;
        /* border-radius: 12px; */
        display: flex;
        /* gap: 15px; */
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* 治療の流れをカード型に最適化 */
    .rj-flow-item {
        gap: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .rj-flow-num {
        margin-bottom: 10px;
    }

    /* チェックリストの余白調整 */
    .rj-check-list {
        padding: 20px;
    }

    .rj-check-list li {
        font-size: 1rem;
        padding-left: 30px;
    }

    /* Q&Aの調整 */
    .rj-q {
        padding: 12px 15px;
    }

    .rj-a {
        padding: 15px;
    }

    /* ボタンの幅調整 */
    .rj-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .pc-hidden {
        display: inline;
    }
}