@charset "utf-8";

/* ========================================================
   1. Variables
======================================================== */
:root {
    /* Colors */
    --mago-orange: #E97E32;
    --trust-gray: #555555;
    --soft-beige: #FFF7E9;
    --white: #FFFFFF;
    --line-green: #06C755;

    /* Fonts */
    --font-heading: 'M PLUS Rounded 1c', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-en: 'Montserrat', sans-serif;

    /* Layout */
    --content-width: 960px;
    --max-width: 1200px;

    /* Spacing */
    --section-py-pc: 100px;
    --section-py-sp: 70px;
}

/* ========================================================
   2. Reset & Base
======================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--trust-gray);
    background-color: var(--white);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
        /* SP Fixed CTA area padding */
        padding-bottom: 70px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul,
ol {
    list-style: none;
}

/* ========================================================
   3. Utility Classes
======================================================== */
.inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.content-inner {
    max-width: var(--content-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-py-pc) 0;
}

.section-bg-beige {
    background-color: var(--soft-beige);
}

@media (max-width: 767px) {
    .section {
        padding: var(--section-py-sp) 0;
    }

    .sp-only {
        display: block !important;
    }

    .pc-only {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .sp-only {
        display: none !important;
    }

    .pc-only {
        display: block !important;
    }
}

/* Section Title */
.sec-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--mago-orange);
    margin-bottom: 60px;
    line-height: 1.4;
}

@media (max-width: 767px) {
    .sec-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(233, 126, 50, 0.2);
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(233, 126, 50, 0.3);
}

.btn-orange {
    background-color: var(--mago-orange);
    color: var(--white);
}

.btn-line {
    background-color: var(--line-green);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(6, 199, 85, 0.2);
}

.btn-line:hover {
    box-shadow: 0 6px 12px rgba(6, 199, 85, 0.3);
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

/* ========================================================
   4. Header & Navigation
======================================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
}

.logo img {
    height: 48px;
    width: auto;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.header-btn-line {
    padding: 10px 30px;
    font-size: 16px;
    width: 100%;
}

.header-tel-link {
    font-family: var(--font-en);
    font-size: 14px;
    color: #888888;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.header-tel-note {
    font-size: 11px;
    color: var(--trust-gray);
    line-height: 1;
}

/* Global Nav */
.global-nav {
    background: var(--soft-beige);
    border-top: 1px solid #eee;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-list li {
    margin: 0 20px;
}

.nav-list a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--trust-gray);
}

.nav-list a:hover {
    color: var(--mago-orange);
}

/* SP Hamburger */
.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--mago-orange);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media (max-width: 767px) {
    .global-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: none;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .global-nav.is-active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 0;
    }

    .nav-list li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-list a {
        padding: 15px 20px;
        text-align: center;
    }

    .logo {
        font-size: 20px;
    }

    .site-header {
        padding: 5px 0;
    }
}

/* SP Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 8px 15px;
}

.fixed-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn-fixed-line {
    background-color: var(--line-green);
    color: var(--white);
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
}

.btn-fixed-line small {
    font-size: 11px;
    font-weight: normal;
    margin-top: 2px;
}

.fixed-tel-wrap {
    text-align: center;
}

.fixed-tel-link {
    font-family: var(--font-en);
    color: var(--trust-gray);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.fixed-tel-note {
    font-size: 10px;
    color: #888;
    display: block;
    margin-top: 0px;
    line-height: 1.1;
}

/* ========================================================
   5. Sections
======================================================== */
/* --- S-02: FV --- */
.fv {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.fv-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.fv-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.fv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
}

.fv-inner {
    position: relative;
    z-index: 1;
}

.fv-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 40px;
    border-radius: 20px;
    width: 92%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--soft-beige);
}

.fv-catch {
    color: var(--trust-gray);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fv-title {
    font-family: var(--font-heading);
    color: var(--mago-orange);
    line-height: 1.3;
    margin-bottom: 20px;
}

.fv-title-sub {
    font-size: 24px;
    display: inline-block;
    margin-bottom: 10px;
}

.fv-title strong {
    font-size: 56px;
    letter-spacing: 0.05em;
}

.fv-area {
    font-weight: 700;
    background: var(--mago-orange);
    color: var(--white);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(233, 126, 50, 0.2);
}

.fv-subcatch {
    font-size: 18px;
    font-weight: 700;
    color: var(--trust-gray);
    margin-bottom: 30px;
}

.fv-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    background: linear-gradient(135deg, #f39c12, var(--mago-orange));
    border: 3px solid #ffd27f;
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 8px 20px rgba(233, 126, 50, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.badge-label {
    font-size: 13px;
    margin-bottom: -2px;
}

.badge-value {
    font-size: 48px;
    font-family: var(--font-en);
    line-height: 1;
    margin: 2px 0;
}

.badge-unit {
    font-size: 12px;
}

.fv-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-fv-main {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
}

.btn-fv-main small {
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
}

.fv-sub-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.fv-tel-link {
    font-size: 22px;
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--trust-gray);
    text-decoration: none;
    line-height: 1;
}

.tel-note-small {
    font-size: 12px;
    color: var(--trust-gray);
    margin: 0;
}

@media (max-width: 767px) {
    .fv {
        min-height: auto;
        padding: 30px 0 40px;
    }

    .fv-content {
        padding: 25px 15px;
    }

    .fv-title strong {
        font-size: 36px;
    }

    .fv-area {
        font-size: 14px;
        padding: 6px 16px;
    }

    .fv-subcatch {
        font-size: 16px;
    }

    .fv-badges {
        gap: 10px;
    }

    .badge {
        width: 80px;
        height: 80px;
        font-size: 11px;
        border-width: 2px;
    }

    .badge span {
        font-size: 20px;
    }
}

/* --- S-03: Problems --- */
.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--mago-orange);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-bubble {
    font-weight: 700;
    font-size: 16px;
    color: var(--trust-gray);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    flex: 1;
}

.problem-bubble::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--mago-orange);
    font-family: var(--font-en);
    font-size: 24px;
    line-height: 1;
}

.problem-answer {
    font-weight: 700;
    font-size: 15px;
    padding: 15px;
    background: var(--soft-beige);
    border-radius: 8px;
    color: var(--trust-gray);
    line-height: 1.6;
}

.problem-answer span {
    color: var(--mago-orange);
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.recommend-note {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--mago-orange);
    margin-bottom: 40px;
}

/* Mid CTA Reusable Class */
.mid-cta {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.btn-mid-main {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    font-size: 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.mid-cta-tel {
    display: block;
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 700;
    color: var(--trust-gray);
    line-height: 1;
    margin-bottom: 10px;
    text-decoration: none;
}

.tel-note-small {
    font-size: 13px;
    color: #888;
    margin: 0;
}

@media (max-width: 767px) {
    .problem-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mid-cta {
        padding: 25px 20px;
    }
}

/* --- S-04: Reasons --- */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.reason-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.reason-num {
    color: var(--trust-gray);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.reason-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #f09a50, #e97e32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233, 126, 50, 0.4);
}

/* SVG handled inline */

.reason-title {
    font-family: var(--font-heading);
    color: var(--mago-orange);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.reason-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--trust-gray);
    text-align: left;
    width: 100%;
}

@media (max-width: 900px) {
    .reason-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .reason-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .reason-item {
        padding: 24px 15px;
    }

    .reason-title {
        font-size: 16px;
    }

    .reason-desc {
        font-size: 13px;
    }

    .reason-icon {
        width: 72px;
        height: 72px;
    }

    .reason-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* --- S-05: Greeting --- */
.greeting-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* removed old greeting-vertical-catch */

.greeting-box {
    flex: 1;
    display: flex;
    background: var(--white);
    border: 4px solid var(--mago-orange);
    border-radius: 20px;
    overflow: hidden;
}

.greeting-img {
    flex: 0 0 40%;
    position: relative;
}

.greeting-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* removed old greeting-catch */

.greeting-content {
    flex: 1;
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.greeting-title.sec-title {
    text-align: left;
    margin-bottom: 30px;
}

.greeting-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.profile-info {
    font-size: 14px;
    line-height: 1.6;
    background: var(--soft-beige);
    padding: 15px;
    border-radius: 8px;
}

.profile-list li {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .greeting-inner {
        flex-direction: column;
    }

    .greeting-box {
        flex-direction: column;
    }

    .greeting-title.sec-title {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    .greeting-text {
        font-size: 15px;
    }
}

/* --- S-06: Items --- */
.sec-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--trust-gray);
    margin-bottom: 40px;
}

.item-grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.item-card {
    background: var(--soft-beige);
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(233, 126, 50, 0.15);
}

.item-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    border-radius: 12px;
    overflow: hidden;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-card p {
    font-weight: 700;
    font-size: 14px;
    color: var(--trust-gray);
    margin: 0;
}

.item-emphasis {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    background: #fff;
    border: 2px solid var(--mago-orange);
    padding: 20px;
    border-radius: 10px;
}

.item-emphasis strong {
    color: var(--mago-orange);
    font-size: 20px;
    display: inline-block;
    margin-top: 5px;
}

@media (max-width: 1023px) {
    .item-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .sec-subtitle {
        font-size: 15px;
    }

    .item-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .item-card p {
        font-size: 12px;
    }

    .item-emphasis {
        font-size: 14px;
        padding: 15px;
    }

    .item-emphasis strong {
        font-size: 16px;
    }
}

/* --- S-07: Results --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.result-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.result-img {
    height: 250px;
}

.result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--trust-gray);
}

.result-price {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    color: var(--mago-orange);
    line-height: 1;
    margin-bottom: 20px;
}

.result-price span {
    font-size: 16px;
    font-family: var(--font-body);
    margin-left: 5px;
}

.result-comment {
    background: var(--soft-beige);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin-top: auto;
}

.result-comment strong {
    color: var(--mago-orange);
    display: block;
    margin-bottom: 5px;
}

.results-note {
    text-align: right;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-name {
        font-size: 16px;
    }

    .result-price {
        font-size: 28px;
    }
}

/* --- S-07: Flow --- */
.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.flow-step {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--mago-orange);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.flow-num {
    background: var(--mago-orange);
    color: var(--white);
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.flow-icon {
    font-size: 50px;
    margin: 20px 0 15px;
}

.flow-title {
    font-family: var(--font-heading);
    color: var(--mago-orange);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.flow-desc {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.flow-attention {
    color: #e53935;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.flow-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--mago-orange);
    transform: translateY(-50%);
    z-index: 2;
}

@media (max-width: 900px) {
    .flow-steps {
        flex-direction: column;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .flow-arrow {
        top: auto;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }
}

/* --- S-08: Promise --- */
.promise-box {
    background: var(--white);
    border: 4px solid var(--soft-beige);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.promise-sec-title {
    margin-bottom: 40px;
}

.promise-message {
    background: var(--white);
    border-left: 6px solid var(--mago-orange);
    padding: 30px 40px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 2;
    color: var(--trust-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.promise-message p {
    margin-bottom: 15px;
    font-weight: 500;
}

.promise-message p:last-child {
    margin-bottom: 0;
}

.promise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.promise-list li {
    background: var(--soft-beige);
    padding: 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 45px;
}

.promise-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    color: var(--mago-orange);
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .promise-box {
        padding: 30px 20px;
    }

    .promise-message {
        padding: 20px;
        font-size: 14px;
    }

    .promise-list {
        grid-template-columns: 1fr;
    }

    .promise-list li {
        font-size: 15px;
        padding: 15px 15px 15px 40px;
    }
}

/* --- S-10: Voices --- */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.voice-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--mago-orange);
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 15px;
}

.voice-avatar {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.voice-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-meta {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.voice-tag {
    background: var(--soft-beige);
    color: var(--trust-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.voice-stars {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.voice-title {
    font-size: 18px;
    color: var(--mago-orange);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

.voice-text {
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .voice-grid {
        grid-template-columns: 1fr;
    }

    .voice-card {
        padding: 20px;
    }

    .voice-meta {
        padding-bottom: 10px;
    }

    .voice-tag {
        font-size: 12px;
        padding: 3px 10px;
    }

    .voice-title {
        font-size: 16px;
    }

    .voice-text {
        font-size: 14px;
    }
}

/* --- S-11: FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.faq-q {
    padding: 25px 50px 25px 25px;
    display: flex;
    align-items: center;
    background: var(--white);
    position: relative;
    cursor: pointer;
}

.faq-icon-q {
    font-family: var(--font-en);
    font-size: 28px;
    color: var(--mago-orange);
    font-weight: 700;
    margin-right: 15px;
    min-width: 30px;
}

.faq-q-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--trust-gray);
}

.faq-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--mago-orange);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.faq-toggle::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq-item.is-open .faq-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    padding: 0 25px 25px 25px;
    display: none;
    align-items: flex-start;
    background: var(--white);
}

.faq-item.is-open .faq-a {
    display: flex;
}

.faq-icon-a {
    font-family: var(--font-en);
    font-size: 28px;
    color: #dedede;
    font-weight: 700;
    margin-right: 15px;
    min-width: 30px;
}

.faq-a-text {
    font-size: 16px;
    padding-top: 5px;
}

@media (max-width: 767px) {
    .faq-q {
        padding: 20px 45px 20px 20px;
    }

    .faq-q-text {
        font-size: 15px;
    }

    .faq-a {
        padding: 0 20px 20px 20px;
    }

    .faq-a-text {
        font-size: 14px;
    }
}

/* --- S-12: CTA --- */
.s-cta {
    background: var(--soft-beige);
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 3px solid var(--mago-orange);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--mago-orange);
    margin-bottom: 15px;
    line-height: 1.4;
}

.cta-sub {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--trust-gray);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-action-item {
    width: 100%;
    max-width: 600px;
}

.btn-large {
    width: 100%;
    padding: 25px 20px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 24px;
}

.btn-large small {
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
}

.cta-action-tel {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.cta-tel-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-tel-link {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 700;
    color: var(--trust-gray);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.cta-tel-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .s-cta {
        padding: 50px 0;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-sub {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-large {
        font-size: 20px;
        padding: 20px;
    }

    .cta-tel-link {
        font-size: 28px;
    }
}

/* --- S-11: Footer --- */
.site-footer {
    background: #333;
    color: #eee;
    padding: 60px 0 30px;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #555;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info p {
    margin-bottom: 5px;
    color: #ccc;
}

.footer-contact {
    text-align: right;
}

.footer-tel {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: normal;
    color: #aaaaaa;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 5px;
}

.footer-hours {
    color: #aaa;
    margin-bottom: 15px;
}

.footer-line-link {
    display: inline-block;
    background: var(--line-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 15px;
}

.mt-40 {
    margin-top: 40px !important;
}

.footer-legal {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.legal-block {
    flex: 1;
}

.legal-block h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 10px;
    border-left: 3px solid var(--mago-orange);
    padding-left: 10px;
}

.legal-block p {
    color: #bbb;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 13px;
    border-top: 1px solid #444;
    padding-top: 30px;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-legal {
        flex-direction: column;
        gap: 20px;
    }
}