/* =========================================
   RAWCLUTCH Service & Pricing LP Styles
   (白メイン・集客特化型・万人受けクリーンデザイン)
   ========================================= */

/* サービスLP全体で白ベースのカラー設定に上書き */
:root {
    --service-bg: #ffffff;
    --service-bg-alt: #f8f9fa;
    --service-text: #1e293b;
    --service-text-dim: #64748b;
    --service-border: #e2e8f0;
    --service-border-accent: rgba(59, 130, 246, 0.2);
    
    /* 白背景用に視認性を高めたアクセントカラー */
    --color-accent: #0284c7; /* 明るめのロイヤルブルー */
    --color-accent-2: #7c3aed; /* 鮮やかなバイオレット */
    --color-accent-hover: #0369a1;
}

/* カッコつける演出の強制無効化 */
html,
body {
    background-color: var(--service-bg) !important;
    color: var(--service-text) !important;
    cursor: default !important; /* 通常のマウスカーソル */
}

a, 
button, 
.service-item, 
.work-card, 
.magnetic-wrap {
    cursor: pointer !important;
}

/* 演出用要素の非表示化 */
.mouse-stalker,
.spotlight,
.noise-overlay {
    display: none !important;
}

/* リンクテキストのアニメーションをシンプル化 */
.nav-link:hover .nav-txt span {
    transform: none !important;
}

/* 1. LP専用ヘッダー (白ベース) */
.service-header {
    height: 80px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid var(--service-border);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
}

.service-header .logo a {
    color: #0f172a !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-back {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--service-text-dim);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.btn-back i {
    width: 16px;
    height: 16px;
}

.btn-back:hover {
    color: var(--color-accent);
}

.btn-sm {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.8rem !important;
}

/* 白背景用のボタンのアウトライン調整 */
.service-header .btn-outline {
    border-color: #0f172a !important;
    color: #0f172a !important;
}

.service-header .btn-outline:hover {
    background: #0f172a !important;
    color: #ffffff !important;
}

/* 2. タイトルエリア (背景画像＋暗幕オーバーレイ) */
.title-area {
    padding: 180px 0 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--service-border);
    color: #ffffff !important;
}

/* 画像の上に半透明の暗幕を重ねて文字を読みやすくする */
.title-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65); /* 暗いネイビーグレーの暗幕 */
    z-index: 1;
}

.title-area .container {
    position: relative;
    z-index: 2; /* 暗幕の上に文字を表示 */
}

.title-area .sub-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #38bdf8; /* 暗幕の上で見えやすい明るいスカイブルーに変更 */
    display: block;
    margin-bottom: 1rem;
}

.title-area .main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-area .lead-text {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 3. 導入セクション (白背景・中央揃え) */
.intro-section {
    padding: 100px 0;
    background: var(--service-bg);
}

.intro-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

.intro-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-body .txt-lg {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.6;
}

.intro-body .txt-md {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #334155;
    text-align: left;
    background: var(--service-bg-alt);
    border: 1px solid var(--service-border);
    padding: 2.5rem;
    border-radius: 6px;
}

/* 4. メニュー・料金ブロック */
.menu-section {
    padding: 100px 0;
    background: var(--service-bg-alt);
    border-top: 1px solid var(--service-border);
}

.menu-block {
    margin-bottom: 100px;
}

.menu-block:last-child {
    margin-bottom: 0;
}

.menu-divider {
    border: 0;
    height: 1px;
    background: var(--service-border);
    margin: 80px 0;
}

/* 料金と詳細の並び */
.menu-info-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5vw;
    align-items: center;
    margin-bottom: 60px;
}

.menu-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1rem;
}

.menu-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.menu-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

.menu-spec-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-spec-list li {
    font-size: 1rem;
    position: relative;
    padding-left: 1.8rem;
    color: #0f172a;
}

.menu-spec-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 900;
}

.menu-spec-list li strong {
    color: var(--color-accent);
}

/* プライシングカード (白ベース・シャドウ重視) */
.menu-price-card {
    background: var(--service-bg);
    border: 1px solid var(--service-border);
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-price-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.price-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
    font-weight: 800;
}

.price-val {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
}

.price-val .tax {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--service-text-dim);
}

.price-note {
    font-size: 0.85rem;
    color: var(--service-text-dim);
    display: block;
}

/* 料金分割カード */
.price-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.price-sub-box {
    border-bottom: 1px solid var(--service-border);
    padding-bottom: 1.2rem;
}

.price-sub-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-sub-box .price-label {
    margin-bottom: 0.5rem;
}

.price-sub-box .price-val {
    font-size: 2rem;
    margin-bottom: 0;
}

/* ASK表示カード */
.ask-card .price-val {
    color: #0f172a;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* 5. 実績ギャラリー (白ベースのカード型) */
.sample-gallery-title {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #0f172a;
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-accent);
    padding-left: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-sub {
    font-size: 0.8rem;
    letter-spacing: 0;
    color: var(--color-accent);
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.gallery-item {
    background: var(--service-bg);
    border: 1px solid var(--service-border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.gallery-img-box {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
    border-bottom: 1px solid var(--service-border);
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ホバー時のオーバーレイ表示 */
.play-icon-overlay,
.zoom-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-icon-overlay i,
.zoom-icon-overlay i {
    width: 44px;
    height: 44px;
    color: #ffffff;
    stroke-width: 1.5;
}

.gallery-item:hover .gallery-img-box img {
    transform: scale(1.04);
}

.gallery-item:hover .play-icon-overlay,
.gallery-item:hover .zoom-icon-overlay {
    opacity: 1;
}

.gallery-meta {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gallery-meta .cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.gallery-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    transition: color 0.3s ease;
}

.gallery-item:hover .gallery-meta h4 {
    color: var(--color-accent);
}

/* 6. 制作の流れ (Workflow) */
.workflow-section {
    padding: 100px 0;
    background: var(--service-bg);
    border-top: 1px solid var(--service-border);
}

.workflow-section .section-title {
    color: #0f172a !important;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5vw;
    margin-top: 60px;
}

.workflow-step {
    padding: 2rem 1.5rem;
    background: var(--service-bg-alt);
    border: 1px solid var(--service-border);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.workflow-step:hover {
    background: var(--service-bg);
    border-color: rgba(59, 130, 246, 0.2);
}

.step-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.workflow-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.workflow-step p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--service-text-dim);
}

/* 7. よくある質問 (FAQ - 白アコーディオン) */
.faq-section {
    padding: 100px 0;
    background: var(--service-bg-alt);
    border-top: 1px solid var(--service-border);
}

.faq-section .section-title {
    color: #0f172a;
}

.faq-list {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid var(--service-border);
    background: var(--service-bg);
    margin-bottom: 1rem;
    border-radius: 6px;
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: border-color 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid var(--service-border);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.2rem 0;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.5;
}

.faq-icon i {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    margin-top: 1rem;
    border-top: 1px solid var(--service-border);
    padding-top: 1rem;
    max-height: 250px;
}

/* 8. ポップアップモーダル (背景暗幕は視認性のためそのまま維持) */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.image-content {
    max-width: 700px;
    max-height: 80vh;
    aspect-ratio: auto;
    background: transparent;
    border: none;
}

.video-container,
.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video,
.image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.image-container img {
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.modal-close i {
    width: 28px;
    height: 28px;
}

.modal-close:hover {
    color: var(--color-accent);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal.active .modal-content {
    transform: scale(1);
}

/* 9. お問い合わせ (クリーンなライトグレー背景) */
.contact-modern {
    padding: 100px 0;
    background: var(--service-bg-alt);
    border-top: 1px solid var(--service-border);
}

.contact-modern .section-title {
    color: #0f172a !important;
}

.contact-modern .txt-md {
    color: var(--service-text-dim) !important;
}

.contact-form {
    background: var(--service-bg);
    border: 1px solid var(--service-border);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.03);
}

.input-group label {
    color: #334155 !important;
}

.input-group input,
.input-group textarea {
    background: var(--service-bg-alt) !important;
    border: 1px solid var(--service-border) !important;
    color: #0f172a !important;
    border-radius: 4px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--color-accent) !important;
    background: #ffffff !important;
}

.btn-submit {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: #ffffff !important;
    border-radius: 4px;
    font-weight: 700;
}

.btn-submit:hover {
    background: var(--color-accent-hover) !important;
    border-color: var(--color-accent-hover) !important;
}

/* 10. フッター (白ベース・シンプル化) */
.footer {
    background: var(--service-bg) !important;
    border-top: 1px solid var(--service-border);
    padding: 60px 0;
}

.footer-copy {
    color: var(--service-text-dim) !important;
    opacity: 0.8;
}

.footer-link {
    background: var(--service-bg-alt) !important;
    border: 1px solid var(--service-border) !important;
    color: #0f172a !important;
    border-radius: 4px;
}

.footer-link:hover {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
}

/* =========================================
   詳細LP（service-*.html）用 追加スタイル
   ========================================= */

/* 詳細LP専用ヒーローエリア (背景画像＋暗幕オーバーレイ) */
.title-area-detail {
    padding: 180px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--service-border);
    color: #ffffff !important;
}

.title-area-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    z-index: 1;
}

.title-area-detail .container {
    position: relative;
    z-index: 2;
}

.title-area-detail .detail-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 0.15em;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.title-area-detail h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

.title-area-detail .lead-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* お悩みセクション（Issues） */
.issues-section {
    padding: 80px 0;
    background: var(--service-bg);
}

.issues-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--service-bg-alt);
    border: 1px solid var(--service-border);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.issues-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.issues-title i {
    color: var(--color-accent);
}

.issues-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.issues-list li {
    font-size: 1.05rem;
    color: #334155;
    position: relative;
    padding-left: 2.2rem;
    line-height: 1.6;
}

.issues-list li::before {
    content: "✕";
    position: absolute;
    left: 0.2rem;
    color: #ef4444; /* お悩み用の赤バツ印 */
    font-weight: 900;
}

/* 特徴・解決策（Solutions） */
.detail-feature-section {
    padding: 100px 0;
    background: var(--service-bg-alt);
    border-top: 1px solid var(--service-border);
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5vw;
    margin-top: 50px;
}

.detail-feature-card {
    background: var(--service-bg);
    border: 1px solid var(--service-border);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.detail-feature-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.detail-feature-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(2, 132, 199, 0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.detail-feature-card .icon-box i {
    width: 24px;
    height: 24px;
}

.detail-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.detail-feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--service-text-dim);
}

/* 詳細スペック表・比較表（Spec Table） */
.spec-section {
    padding: 100px 0;
    background: var(--service-bg);
    border-top: 1px solid var(--service-border);
}

.spec-table-wrapper {
    max-width: 900px;
    margin: 50px auto 0 auto;
    overflow-x: auto;
    border: 1px solid var(--service-border);
    border-radius: 6px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
    color: var(--service-text);
    background: var(--service-bg);
}

.spec-table th,
.spec-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--service-border);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}

.spec-table th {
    background: var(--service-bg-alt);
    font-weight: 700;
    width: 250px;
    color: #0f172a;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-right: 1px solid var(--service-border);
}

.spec-table td {
    line-height: 1.8;
    color: #334155;
}

.spec-table td strong {
    color: #0f172a;
}

.spec-table td ul {
    list-style: none;
    padding-left: 0;
}

.spec-table td ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
}

.spec-table td ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ご用意いただくもの（Materials） */
.materials-box {
    max-width: 800px;
    margin: 50px auto 0 auto;
    background: rgba(2, 132, 199, 0.02);
    border: 1px solid rgba(2, 132, 199, 0.1);
    border-radius: 6px;
    padding: 2.5rem;
}

.materials-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.materials-title i {
    color: var(--color-accent);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.material-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.material-item i {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.material-item div h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.material-item div p {
    font-size: 0.85rem;
    color: var(--service-text-dim);
    line-height: 1.5;
}

/* 親LPの「詳細を見る」誘導ボタン */
.btn-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: 1.5rem;
}

.btn-detail-link:hover {
    color: var(--color-accent-hover);
    gap: 0.8rem;
}

.btn-detail-link i {
    width: 16px;
    height: 16px;
}

/* メディアクエリ追加 */
@media (max-width: 1024px) {
    .detail-feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-header {
        height: 70px !important;
    }
    
    .header-right {
        gap: 1rem;
    }

    .btn-back {
        font-size: 0.8rem;
    }
    
    .issues-box,
    .materials-box {
        padding: 1.5rem;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-table th {
        width: auto;
        display: block;
        padding-bottom: 0.5rem;
        border-bottom: none;
        border-right: none;
    }
    
    .spec-table td {
        display: block;
        padding-top: 0.5rem;
    }
    
    .modal-close {
        top: -40px;
        right: 0;
    }
}

/* 改行制御用のヘルパー */
.u-pc-only {
    display: block;
}

@media (max-width: 768px) {
    .u-pc-only {
        display: none;
    }
}

/* 各ページのヘッダー背景画像クラス */
.title-bg-service {
    background-image: url("assets/bg_abstract.jpg");
}
.title-bg-movie {
    background-image: url("assets/bg_neon.jpg");
}
.title-bg-lp {
    background-image: url("assets/work_web_new.jpg");
}
.title-bg-web {
    background-image: url("assets/work_consulting_new.jpg");
}
.title-bg-system {
    background-image: url("assets/bg_office.jpg");
}
.title-bg-support {
    background-image: url("assets/work_event_new.jpg");
}

/* =========================================
   LP表現強化用 スタイル（ストーリーLP設計）
   ========================================= */

/* 1. 交互背景クラス */
.bg-light {
    background-color: var(--service-bg-alt) !important;
}

.bg-white {
    background-color: var(--service-bg) !important;
}

/* 2. 解決策提示セクション (Solution) */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    text-align: center;
    border-top: 1px solid var(--service-border);
    border-bottom: 1px solid var(--service-border);
    position: relative;
    overflow: hidden;
}

.solution-section::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.solution-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.solution-sub {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1.5rem;
}

.solution-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.solution-title span {
    background: linear-gradient(transparent 60%, rgba(2, 132, 199, 0.2) 60%);
}

.solution-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #334155;
}

/* 3. お悩みリストのLP風アレンジ */
.issues-box {
    border-left: 4px solid var(--color-accent) !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

.issues-list li {
    padding: 1.2rem 1.5rem 1.2rem 3rem;
    background: var(--service-bg-alt);
    border-radius: 4px;
    border: 1px solid var(--service-border);
    transition: transform 0.2s ease;
}

.issues-list li:hover {
    transform: translateX(5px);
}

.issues-list li::before {
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* 4. 特徴セクション見出しのLP風アンダーライン */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* 5. 料金・数値特大強調 */
.num-highlight {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--color-accent);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

/* 比較用チェックテーブル */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    border: 1px solid var(--service-border);
    text-align: center;
}

.comparison-table th {
    background: var(--service-bg-alt);
    font-weight: 700;
    color: #0f172a;
}

.comparison-table td.highlight-cell {
    background: rgba(2, 132, 199, 0.02);
    font-weight: 700;
}

.comparison-table i.check-icon {
    color: #10b981; /* 緑チェックマーク */
}

/* 6. 中間CTA (Call to Action) バナー */
.middle-cta-section {
    padding: 60px 0;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.middle-cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.middle-cta-box h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.middle-cta-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-cta-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: #10b981; /* 目立つ緑色 */
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: cta-pulse 1.8s infinite;
    transition: transform 0.3s ease;
}

.btn-cta-pulse:hover {
    transform: scale(1.03);
    background: #059669;
}

.btn-cta-pulse i {
    width: 20px;
    height: 20px;
}

@keyframes cta-pulse {
    0% {
        transform: scale(0.97);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.97);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 7. タイムライン風プロセス (Workflow Timeline) */
.workflow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
}

/* PC用の横並び線 */
.workflow-timeline::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--service-border);
    z-index: 1;
}

.workflow-timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5vw;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    background: var(--service-bg);
    border: 1px solid var(--service-border);
    border-radius: 8px;
    padding: 2rem 1.2rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.timeline-step:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.timeline-step .step-circle {
    width: 60px;
    height: 60px;
    background: var(--service-bg-alt);
    border: 2px solid var(--service-border);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.4rem;
    font-weight: 900;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-circle {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

.timeline-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.timeline-step p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--service-text-dim);
}

/* タイムライン用レスポンシブ */
@media (max-width: 1024px) {
    .workflow-timeline::before {
        display: none;
    }
    
    .workflow-timeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-step {
        text-align: left;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        padding: 1.5rem;
    }
    
    .timeline-step .step-circle {
        margin: 0;
        flex-shrink: 0;
    }
    
    .timeline-step div h4 {
        margin-bottom: 0.4rem;
    }
}

/* =========================================
   ビジュアル強化用 スプリットレイアウト（交互配置）
   ========================================= */
.features-split-container {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.features-split-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* 偶数行は左右を反転する（ジグザグ配置） */
.features-split-row:nth-child(even) {
    flex-direction: row-reverse;
}

.features-split-img {
    flex: 1;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--service-border);
}

.features-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.features-split-row:hover .features-split-img img {
    transform: scale(1.04);
}

.features-split-info {
    flex: 1.2;
}

.features-split-info .feature-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.8rem;
}

.features-split-info h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.features-split-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

/* スプリットレイアウト用レスポンシブ */
@media (max-width: 768px) {
    .features-split-container {
        gap: 4rem;
        margin-top: 40px;
    }
    
    .features-split-row {
        flex-direction: column !important; /* 縦並びに強制 */
        gap: 1.8rem;
    }
    
    .features-split-img {
        width: 100%;
        aspect-ratio: 16/9;
    }
    
    .features-split-info h3 {
        margin-bottom: 0.8rem;
    }
}

/* =========================================
   本物のLPデザイン再現用 リッチ装飾要素
   ========================================= */

/* 1. ヘッダーバナー用プレート (文字を画像バナー風に見せる立体枠) */
.hero-banner-plate {
    background: rgba(255, 255, 255, 0.96);
    border: 3px solid #0f172a;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3), 
                inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    color: #0f172a !important;
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-banner-plate .detail-tag {
    background: #0284c7 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.hero-banner-plate h1,
.hero-banner-plate .main-title {
    color: #0f172a !important;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.35;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.hero-banner-plate .lead-text {
    color: #475569 !important;
    font-weight: 500;
    line-height: 1.8;
}

/* 2. 立体プライスタグ (値札バナー風ボックス) */
.lp-price-tag-box {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); /* 鮮やかな警告赤 */
    color: #ffffff !important;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4),
                0 0 0 3px #dc2626;
    margin: 1.5rem auto;
    transform: rotate(-1.5deg); /* 意図的に少し傾けてLPのポップさを演出 */
    position: relative;
}

.lp-price-tag-box::before {
    content: "SPECIAL PRICE";
    position: absolute;
    top: -12px;
    left: 15px;
    background: #f59e0b; /* ゴールドイエロー */
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    border: 1.5px solid #ffffff;
}

.lp-price-tag-box .price-val {
    color: #ffffff !important;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem) !important;
    font-weight: 900;
    margin-bottom: 0;
    text-shadow: 2px 2px 0px rgba(15, 23, 42, 0.2);
}

.lp-price-tag-box .tax {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
    font-weight: 700;
}

.lp-price-note-white {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9) !important;
    display: block;
    margin-top: 0.3rem;
    font-weight: 700;
}

/* 3. 斜めリボンバッジ (画像やカードの左上に配置) */
.lp-ribbon-wrapper {
    position: relative; /* 親要素にこれを指定 */
}

.lp-ribbon {
    position: absolute;
    top: -6px;
    left: -6px;
    background: #f59e0b;
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
    border: 2px solid #ffffff;
    letter-spacing: 0.05em;
}

/* 4. 円形アピールバッジ (アピール項目を賑やかにするバッジ) */
.lp-badges-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.lp-badge-circle {
    width: 80px;
    height: 80px;
    background: #f59e0b;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.2;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.lp-badge-circle:nth-child(even) {
    background: #ef4444;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
    transform: rotate(-3deg);
}

.lp-badge-circle:hover {
    transform: scale(1.08) rotate(0deg);
}

.lp-badge-circle .badge-num {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.1rem;
    font-family: 'Inter', sans-serif;
}

/* 5. 特徴セクションへのゴールド・ブルー光彩シャドウ */
.features-split-img {
    box-shadow: 0 15px 40px rgba(2, 132, 199, 0.12) !important;
    border: 2px solid rgba(2, 132, 199, 0.15) !important;
    position: relative;
}

/* 特徴画像ホバー時の光彩変化 */
.features-split-row:hover .features-split-img {
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.15) !important;
    border-color: rgba(124, 58, 237, 0.25) !important;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .hero-banner-plate {
        padding: 2rem 1.2rem;
        border-width: 2px;
    }
    
    .lp-price-tag-box {
        padding: 1rem 1.8rem;
    }
    
    .lp-badges-row {
        gap: 0.8rem;
    }
    
    .lp-badge-circle {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
    }
    
    .lp-badge-circle .badge-num {
        font-size: 1.05rem;
    }
}

/* =========================================
   集客・CVR極大化用 追加スタイル
   ========================================= */

/* 1. 見出しインラインバッジ */
.lp-badge-inline {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a !important;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.6rem;
    border: 1.5px solid #ffffff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.25);
    vertical-align: middle;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* 2. 比較表のスクロール対応ラッパー */
.table-scroll-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 2.5rem;
    border: 1px solid var(--service-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

/* 比較表のデザイン調整 */
.comparison-table {
    min-width: 700px; /* スマホでスクロールさせるための最低幅 */
    width: 100% !important;
    margin-top: 0 !important;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    border: 1px solid var(--service-border);
    text-align: center;
    vertical-align: middle;
}

.comparison-table th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.95rem;
}

.comparison-table td {
    font-size: 0.95rem;
    color: #475569;
    background: #ffffff;
}

/* 自社強み列のハイライト */
.comparison-table .rawclutch-cell {
    background: rgba(2, 132, 199, 0.04) !important;
    font-weight: 800;
    color: #0284c7;
    border-left: 2px solid #0284c7;
    border-right: 2px solid #0284c7;
}

.comparison-table th.rawclutch-cell {
    background: #0284c7 !important;
    color: #ffffff !important;
    border-top: 2px solid #0284c7;
}

.comparison-table tr:last-child .rawclutch-cell {
    border-bottom: 2px solid #0284c7;
}

/* 記号アイコン */
.comparison-table i.check-icon {
    color: #10b981; /* 緑のまる */
    stroke-width: 3;
}

.comparison-table i.alert-icon {
    color: #f59e0b; /* 黄色のさんかく */
}

.comparison-table i.x-icon {
    color: #94a3b8; /* グレーのばつ */
}

/* 3. メガCTAバナーの拡張 */
.middle-cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url("../../assets/bg_office.jpg") no-repeat center/cover !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 一覧ページ用（1階層上） */
.service-index-cta {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url("../assets/bg_office.jpg") no-repeat center/cover !important;
}

.middle-cta-box h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: #ffffff !important;
}

.middle-cta-box p.cta-subtext {
    font-size: 1.1rem;
    color: #38bdf8; /* 水色 */
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.middle-cta-box .micro-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.8rem;
    display: block;
}

/* 4. 今月限定特典バッジ */
.promo-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    z-index: 15;
    border: 2px solid #ffffff;
    animation: promo-bounce 2s infinite;
}

@keyframes promo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* 5. LPサンプル縦長画像用ギャラリー & モーダル表示調整 */
.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* 縦長LPの上部（ファーストビュー）を綺麗に切り抜く */
}

.modal-content.image-content {
    max-height: 90vh;
    overflow-y: auto; /* モーダル内で縦スクロール可能に */
    padding: 1.5rem;
}

.modal-content.image-content .image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* =========================================
   プロ仕様 本格集客LP用 FV（ファーストビュー）
   ========================================= */

.hero-lp-fv-section {
    position: relative;
    padding: 140px 0 100px 0;
    background: #0f172a;
    color: #ffffff;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.hero-lp-fv-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.fv-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* 左側：大迫力タイポグラフィ & FV直結CTA */
.fv-content-left {
    text-align: left;
}

.fv-kicker-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(2, 132, 199, 0.2);
    border: 1.5px solid #0284c7;
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

.fv-main-catch {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.marker-yellow {
    background: linear-gradient(transparent 60%, rgba(245, 158, 11, 0.85) 60%);
    color: #ffffff;
    padding: 0 0.2rem;
}

.fv-sub-copy {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.fv-price-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.fv-cta-area {
    margin-top: 1rem;
}

.fv-cta-area .btn-cta-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fv-cta-area .btn-cta-pulse:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

/* 右側：立体3Dモックアップカード */
.fv-content-right {
    position: relative;
    perspective: 1000px;
}

.fv-3d-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(2, 132, 199, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
    background: #1e293b;
}

.fv-3d-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.fv-3d-card img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
}

.fv-3d-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ */
@media (max-width: 992px) {
    .fv-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .fv-content-left {
        text-align: center;
    }
    
    .fv-kicker-badge {
        margin: 0 auto 1.5rem auto;
    }
    
    .fv-price-row {
        justify-content: center;
    }
    
    .fv-3d-card {
        transform: none !important;
        max-width: 500px;
        margin: 0 auto;
    }
}
