@charset "UTF-8";

/* ==========================================================================
   共通設定 / 変数定義
   ========================================================================== */
:root {
    --primary-color: #ffcc00;
    --secondary-color: #f39c12;
    --bg-dark: #1a1a1a;
    --text-main: #333333;
    --text-sub: #666666;
    --bg-light: #f8f8f8;
    --bg-red: #ff4500;
    --white: #ffffff;
    --accent-red: #e74c3c;
    --line-green: #06c755;
    --section-space: clamp(60px, 8vw, 120px);
    --container-width: 1150px;
    --nav-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

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

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    max-width: var(--nav-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-yellow {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.btn-red {
    background-color: var(--bg-red);
    color: white;
}

.btn-black {
    background-color: var(--bg-dark);
    color: var(--white);
}

.btn-line {
    background-color: var(--line-green);
    color: var(--white);
}

.fa-line {
    font-size: 1.5rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
}

.logo-text strong {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.keizoku-badge img {
    width: 130px;
}

.pc-nav ul {
    display: flex;
    gap: 20px;
}

.pc-nav a {
    font-size: 0.85rem;
}

.pc-nav a:hover {
    color: var(--primary-color);
}

.header-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tel-box {
    text-align: right;
}

.tel-num {
    font-size: 1.2rem;
    font-weight: 700;
}

.tel-time {
    font-size: 0.65rem;
    color: #ccc;
    display: block;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 5px;
}

/* ハンバーガーボタン */
.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

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

/* モバイルナビ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 1050;
    padding: 100px 20px 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
}

.mobile-nav.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav ul li a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    padding: 10px;
}

.mobile-nav .btn {
    margin-top: 20px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .pc-nav,
    .header-info {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

header.header-scrolled {
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    border-bottom: 2px solid var(--primary-color);
}

/* ==========================================================================
   1. FV
   ========================================================================== */
.fv {
    position: relative;
    background-image: url('../../upload_images/image/FV.webp');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 60px 0;
}

.fv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.fv-container {
    position: relative;
    padding-right: 320px;
}

.fv-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.fv-tagline {
    background-color: var(--accent-red);
    color: var(--white);
    display: inline-block;
    padding: 5px 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fv-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.fv-main-title span {
    color: var(--primary-color);
}

.fv-sub-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 5px 15px;
}

.fv-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.fv-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.fv-cta-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.fv-line-btn {
    background-color: var(--line-green);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fv-tel-box {
    background: var(--bg-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.fv-tel-box span {
    font-size: 0.7rem;
    display: block;
}

.fv-tel-box strong {
    font-size: 1.4rem;
}

.fv-floating-badge {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fv-floating-badge .badge-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.fv-floating-badge .price {
    font-size: 2.5rem;
    font-weight: 900;
}

.fv-floating-badge .price span {
    font-size: 4rem;
}

.fv-floating-badge .limit {
    background: var(--accent-red);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 700;
}

.fv-floating-badge .date {
    margin-top: 8px;
    font-weight: 700;
}

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

    .fv-container {
        padding-right: 20px;
    }

    .fv-content {
        max-width: 100%;
    }

    .fv-tagline {
        display: block;
        text-align: center;
    }

    .fv-main-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .fv-sub-title {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .fv-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 16px;
    }

    .fv-feature-item {
        padding: 8px 10px;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .fv-cta-area {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .fv-line-btn,
    .fv-tel-box {
        width: 100%;
        justify-content: center;
        margin-top:20px;
    }

    .fv-line-btn {
        padding: 12px 20px;
    }

    .fv-tel-box {
        padding: 10px 15px;
    }

    .fv-floating-badge {
        width: 80%;
        margin: 30px auto 0;
        padding: 20px;
    }

    .fv-floating-badge .price {
        font-size: 2rem;
    }

    .fv-floating-badge .price span {
        font-size: 3rem;
    }
}

/* ==========================================================================
   2. こんなお悩みありませんか？
   ========================================================================== */
.problems {
    padding: var(--section-space) 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
        url(../../upload_images/background/AdobeStock_287287102-scaled.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    width: calc(33.333% - 14px);
}

.problem-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.problem-card p {
    font-weight: 700;
    font-size: 1.1rem;
}

.problems-summary {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
}

@media screen and (max-width: 1024px) {
    .problem-card {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 599px) {
    .problem-card {
        width: 100%;
    }

    .problems-summary {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   3. バイクを持たないという選択
   ========================================================================== */
.no-own {
    padding: var(--section-space) 0;
}

.no-own-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.no-own-img {
    flex: 0 0 40%;
}

.no-own-img img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 10px;
}

.no-own-content {
    flex: 0 0 60%;
}

.no-own-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.6;
}

.no-own-content h3 mark {
    background: linear-gradient(transparent 60%, var(--primary-color) 60%);
}

.no-own-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .no-own-flex {
        flex-direction: column;
        gap: 30px;
    }

    .no-own-img,
    .no-own-content {
        flex: unset;
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    .no-own-content h3 {
        font-size: 1.3rem;
    }

    .no-own-btns {
        flex-direction: column;
    }

    .no-own-btns .btn {
        width: 100%;
    }
}

/* ==========================================================================
   4. レンタルと購入の比較
   ========================================================================== */
.comparison {
    padding: var(--section-space) 0;
    background: url(../../upload_images/background/comparison.png);
    background-size: cover;
}

.comparison .section-title h2 {
    color: white;
}

.comparison-scroll-text {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.comparison-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}

.comp-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    width: 350px;
    border: 4px solid #797979;
}

.comp-card.rental {
    border: 4px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.comp-header {
    padding: 28px 24px;
    text-align: center;
    background: #797979;
}

.comp-header h3 {
    color: white;
    font-size: 1.6rem;
}

.comp-card.rental .comp-header {
    background: var(--primary-color);
}

.comp-price {
    padding: 28px 24px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    border-bottom: 1px solid #eee;
}

/* ========================================
   購入テーブル
======================================== */

.purchase-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.purchase-table th,
.purchase-table td {
    padding: 11px 8px;
    border-bottom: 1px solid #eee;
}

.purchase-table th {
    width: 120px;
    background: #f5f5f5;
    font-weight: 700;
    vertical-align: top;
    text-align: center;
}

.purchase-table td:nth-child(2) {
    color: #555;
}

.purchase-table td:last-child {
    text-align: right;
    font-weight: 700;
    white-space: nowrap;
}

/* ========================================
   レンタルカード
======================================== */

.rental-box {
    padding: 30px 24px;
    text-align: center;
}

.rental-box p {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-main);
}

.rental-catch {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-red);
    color: #fff;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.8;
}

/* ========================================
   結果表示
======================================== */

.comp-result {
    max-width: 400px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.comp-result > p {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: clamp(1.4rem, 1rem + 2vw, 2rem);
}

.diff-box {
    text-align: center;
    font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.diff-box p {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
    margin-bottom: 5px;
    opacity: 0.9;
}

.diff-box strong {
    display: block;
    font-size: clamp(3rem, 1.5rem + 5vw, 5.5rem);
    color: var(--accent-red);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.comp-result .btn {
    width: 100%;
    font-size: 1rem;
    padding: 18px;
}

/* ========================================
   SP対応
======================================== */

@media screen and (max-width: 768px) {

    .comparison-scroll {
        overflow-x: visible;
    }

    .comparison-table {
        min-width: unset;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .comp-card {
        width: 80%;
        display: flex;
        flex-direction: column;
    }

    .comp-card.rental {
        transform: none;
    }

    .comp-price {
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .rental-box {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }

    .purchase-table {
        flex: 1;
        font-size: 0.8rem;
    }

    .rental-box p {
        font-size: 1rem;
    }

    .rental-catch {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   5. 選ばれる理由
   ========================================================================== */
.reasons {
    padding: var(--section-space) 0;
    background: #fff;
}

.reason-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 40px;
    border-bottom: 1px solid #eee;
}

.reason-row.reverse {
    flex-direction: row-reverse;
}

.reason-image {
    width: 45%;
    flex-shrink: 0;
}

.reason-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reason-text {
    flex: 1;
}

.reason-number {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

.reason-text h3 {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.reason-text p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-sub);
}

@media screen and (max-width: 1024px) {
    .reason-row {
        gap: 40px;
        padding: 50px 20px;
    }
}

@media screen and (max-width: 768px) {
    .reason-row,
    .reason-row.reverse {
        flex-direction: column;
        gap: 24px;
        padding: 40px 0;
    }

    .reason-image {
        width: 100%;
    }

    .reason-text h3 {
        font-size: 1.4rem;
    }

    .reason-text p {
        font-size: 0.95rem;
        line-height: 1.9;
    }
}

/* ==========================================================================
   6. 導入するメリット
   ========================================================================== */
.merits {
    padding: var(--section-space) 0;
    position: relative;
    overflow: hidden;
}

.merits::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -10%;
    width: 100%;
    height: 100%;
    background-image: url("../../upload_images/background/bg-bike.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at bottom right, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle at bottom right, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
}

.merits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.merit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
    width: calc(33.333% - 20px);
}

.merit-item img {
    width: 70%;
    margin-bottom: 15px;
}

.merit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    background: #eee;
    padding: 6px 10px;
    border-radius: 5px;
}

.merit-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-sub);
}

@media screen and (max-width: 1024px) {
    .merit-item {
        width: calc(50% - 15px);
    }
}

@media screen and (max-width: 599px) {
    .merit-item {
        width: 100%;
    }
}

/* ==========================================================================
   7. こんなシーンで利用されています
   ========================================================================== */
.scenes {
    padding: var(--section-space) 0;
    background: var(--bg-light);
}

.scene-usecase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.usecase-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

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

.usecase-image {
    width: 48%;
    flex-shrink: 0;
}

.usecase-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.usecase-content {
    flex: 1;
}

.usecase-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.usecase-content h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 700;
}

.usecase-content p {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.usecase-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 600;
}

.usecase-content ul li {
    position: relative;
    padding-left: 28px;
    line-height: 1.8;
    color: #333;
}

.usecase-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .usecase-item,
    .usecase-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .usecase-image {
        width: 100%;
    }

    .scene-usecase {
        gap: 50px;
    }
}

/* ==========================================================================
   8. 料金プラン
   ========================================================================== */
.plans {
    padding: 120px 0;
    background: url(../../upload_images/plan/bg.png);
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.plans .section-title h2 {
    color: #fff;
}

.plans .section-title p {
    color: #ccc;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
}

.plans-title p {
    color: white;
    font-weight: bold;
}

.plan-grid {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
}

.plan-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card-info {
    background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    padding: 20px 30px 30px;
    border-radius: 0 0 28px 28px;
}

.plan-card .price {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}

.yen_tax {
    font-size: 1rem;
    font-weight: 700;
}

.plan-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.plan-card ul li i {
    color: #c7a73b;
    flex-shrink: 0;
}

.plan-card-outer {
    flex: 1;
    max-width: 360px;
}

.plan-tags {
    font-weight: bold;
    text-align: center;
    color: white;
    margin-top: 16px;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .plans {
        padding: 80px 0;
        background-position: center;
    }

    .plan-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .plan-card-outer {
        width: 100%;
        max-width: 400px;
        margin-bottom: 50px;
    }

    .plan-card.popular {
        transform: none;
    }
}

/* ==========================================================================
   9. お客様の声
   ========================================================================== */
.voices {
    padding: var(--section-space) 0;
    background: url(../../upload_images/background/voice.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.voice-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.voice-card {
    width: calc(50% - 15px);
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.voece-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.voice-img {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}
.voice-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

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



.voice-content {
    grid-column: 2;
    grid-row: 1;

    align-items: center;
    height: 100%;
}

.voice-content {
    flex: 1;
}

.voice-header h3 {
    font-size: 1.4rem;
    line-height: 1.6;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.voice-comment-container {
    grid-column: 1 / -1;
    grid-row: 2;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-comment-container p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 0;
}

.voice-comment-container strong {
    color: var(--bg-dark);
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
    .voice-card {
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    .voice-card {
        display: block;
        padding: 20px;
    }

    .voece-flex {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .voice-content {
        flex: 1;
        display: block;
    }

    .voice-header h3 {
        font-size: 1rem;
        text-align: left;
    }

    .voice-comment-container {
        gap: 12px;
    }

    .voice-comment-container p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ==========================================================================
   10. ご利用の流れ
   ========================================================================== */
.flow {
    padding: var(--section-space) 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.flow::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.flow::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.flow .section-title {
    position: relative;
    z-index: 2;
}

.flow .section-title h2 {
    color: #fff;
}

.flow-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flow-step {
    display: flex;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.flow-step.reverse {
    flex-direction: row-reverse;
}

.flow-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

.flow-step:last-child::after {
    display: none;
}

.flow-left {
    width: 65%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.flow-left:hover {
    transform: translateY(-4px);
}

.flow-step-num {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.flow-left h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.5;
    margin-bottom: 16px;
    color: #fff;
}

.flow-left p {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
}

.flow-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-point {
    flex: 1;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 130px;
    border-radius: 16px;
    transition: 0.3s;
    padding: 20px;
}

.flow-point i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.flow-point span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.7;
}

@media screen and (max-width: 1024px) {
    .flow-wrapper {
        gap: 32px;
    }

    .flow-step,
    .flow-step.reverse {
        flex-direction: column;
    }

    .flow-left,
    .flow-right {
        width: 100%;
    }

    .flow-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .flow-point {
        width: calc(50% - 8px);
        min-height: 120px;
    }

    .flow-left {
        padding: 32px 24px;
    }

    .flow-step::after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .flow {
        padding: 80px 0;
    }

    .flow-wrapper {
        margin-top: 40px;
        gap: 24px;
    }

    .flow-left {
        border-radius: 18px;
        padding: 28px 20px;
    }

    .flow-left p {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .flow-point {
        min-height: 100px;
        padding: 16px 12px;
    }

    .flow-point i {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .flow-point span {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   11. 導入事例（ストーリー）
   ========================================================================== */
.story {
    padding: var(--section-space) 0;
}

.story-content {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.story-header {
    text-align: center;
    margin-bottom: 50px;
}

.story-header h3 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.story-header p {
    font-size: 1rem;
    color: var(--text-sub);
}

.story-img img {
    width: 70%;
    margin: 16px auto;
    display: block;
    border-radius: 10px;
}

.story-section {
    margin-bottom: 40px;
}

.story-section h4 {
    font-size: 1.4rem;
    color: var(--bg-dark);
    margin-bottom: 20px;
    border-left: 6px solid var(--primary-color);
    padding-left: 16px;
    line-height: 1.3;
}

.story-section p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.9;
}

.story-section strong {
    color: var(--accent-red);
}

.story-section ul {
    margin-top: 12px;
}

.story-section ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 1rem;
}

.story-section ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--bg-dark);
    font-weight: 900;
}

@media screen and (max-width: 599px) {
    .story-content {
        padding: 30px 20px;
    }

    .story-header h3 {
        font-size: 1.3rem;
    }

    .story-img img {
        width: 90%;
    }
}

/* ==========================================================================
   12. よくあるご質問
   ========================================================================== */
.faq {
    padding: var(--section-space) 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    width: calc(50% - 10px);
    height: fit-content;
}

.faq-item.full-width {
    width: 100%;
}

.faq-q {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    gap: 10px;
}

.faq-q::before {
    content: "Q";
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-a {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    background: #fafafa;
    border-radius: 0 0 10px 10px;
}

.faq-a-inner {
    padding: 20px 0 20px 35px;
    position: relative;
}

.faq-a-inner::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 20px;
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-item.active .faq-a {
    max-height: 500px;
}

@media screen and (max-width: 800px) {
    .faq-item {
        width: 100%;
    }
}

/* ==========================================================================
   13. CTA
   ========================================================================== */
.cta {
    padding: 120px 0;
    background: url(../../upload_images/background/cta.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.cta-sub {
    color: #d4b15a;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cta-text {
    color: var(--white);
    line-height: 1.9;
    margin-bottom: 50px;
}

.cta-btns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.cta .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 170px;
    padding: 30px 24px;
    border-radius: 18px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 700;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cta .btn:hover {
    transform: translateY(-5px);
}

.cta .btn i {
    font-size: 2rem;
    flex-shrink: 0;
}

.btn-mail {
    background: linear-gradient(145deg, #f5e3a1 0%, #d4b15a 35%, #8a6725 100%);
    color: #111;
}

.btn-tel {
    background: rgba(255, 255, 255, 0.95);
    color: #111;
}

.btn-main {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

.btn-sub {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta-text {
        margin-bottom: 30px;
    }

    .cta-btns {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .cta .btn {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
        padding: 22px 20px;
    }

    .cta .btn i {
        font-size: 1.7rem;
    }

    .btn-main {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .btn-sub {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: #000;
    color: #999;
    padding: 60px 0 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    footer {
    margin-bottom: 70px;
}
}