/*
Theme Name: Reキャリー 高崎店
Theme URI: https://recarry.work/
Author: Reキャリー
Author URI: https://recarry.work/
Description: タイヤ・ホイール買取専門店。プロフェッショナルLPテーマ。
Version: 4.0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: recarry-takasaki
*/

/* ===========================================
   リセットCSS
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #ffffff;
    background-color: var(--color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ===========================================
   カラー変数
=========================================== */
:root {
    --color-primary: #020283;
    --color-accent-red: #E6192E;
    --color-background-light: #f5f5f8;
    --color-background-dark: #0f0f23;
    --color-black: #020283;
    --color-dark: #03071b;
    --color-gray: #0b1d3a;
    --color-white: #ffffff;
    --color-lime: #ee160e;
    --color-yellow: #ff3b55;
    --max-width: 1080px;
}

/* ===========================================
   コンテナ（PC表示時 max-width: 1080px で統一）
=========================================== */
.page-container {
    background: var(--color-background-light);
    color: #111118;
}

.page-container .entry-title,
.page-container .entry-content {
    color: #111118;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding: 80px 0;
}

/* ===========================================
   ヘッダー（白背景・アメリカンポップ下ライン・左にボタン）
=========================================== */
.fixed-header-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 9999;
    padding: 12px 0;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ヘッダー下のストライプライン */
.fixed-header-banner::after {
    display: none;
}

.fixed-header-banner::before {
    display: none;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-inner::after,
.header-inner::before {
    display: none !important;
    content: '' !important;
    height: 0 !important;
    width: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-logo-text {
    font-weight: 900;
    font-size: 1.4rem;
    color: #020283;
    text-decoration: none;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* 左側ボタン共通（角丸・3Dシャドウ） */
.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-btn:hover {
    color: #ffffff;
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.header-btn:active {
    transform: translateY(3px);
    box-shadow: none;
}

.header-btn svg,
.header-btn .header-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header-btn-line {
    background: #06C755;
    box-shadow: 0 4px 0 #058a3d;
}

.header-btn-line:hover {
    background: #05b94f;
    box-shadow: 0 2px 0 #058a3d;
}

.header-btn-web {
    background: #FF8C00;
    box-shadow: 0 4px 0 #cc7000;
}

.header-btn-web:hover {
    background: #ff9a1a;
    box-shadow: 0 2px 0 #cc7000;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111118;
    text-decoration: none;
}

.header-phone:hover {
    color: #020283;
}

.header-phone-icon {
    width: 20px;
    height: 20px;
    color: #020283;
    flex-shrink: 0;
}

/* スマホ用：三本線メニューボタン（PCでは非表示） */
.header-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #020283;
    z-index: 10001;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

/* スマホ用：ドロワーメニュー */
.header-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 88vw;
    height: 100vh;
    height: 100dvh;
    background: #f8f9fb;
    box-shadow: -8px 0 32px rgba(2, 2, 131, 0.12);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.header-drawer-inner {
    position: relative;
    z-index: 9999;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.header-drawer.is-open {
    transform: translateX(0);
}

.header-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 2, 131, 0.25);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-drawer.is-open .header-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    z-index: 9998;
}

/* ドロワー：ヘッダー（タイトル＋閉じるボタン） */
.header-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 20px 20px 24px;
    background: #ffffff;
    border-bottom: 3px solid #111118;
    flex-shrink: 0;
}

.header-drawer-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: #111118;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #111118;
    color: #ffffff;
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.header-drawer-close:hover,
.header-drawer-close:focus {
    background: #020283;
    color: #ffffff;
}

.header-drawer-close:active {
    transform: scale(0.98);
}

.header-drawer-close-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header-drawer-close-text {
    font-family: inherit;
}

.header-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 24px 32px;
}

.header-drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #111118;
}

.header-drawer-btn:hover {
    color: #ffffff;
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.header-drawer-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

.header-drawer-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.header-drawer-btn-line {
    background: #06C755;
    box-shadow: 0 4px 0 #058a3d;
}

.header-drawer-btn-line:hover {
    box-shadow: 0 2px 0 #058a3d;
}

.header-drawer-btn-phone {
    background: #020283;
    box-shadow: 0 4px 0 #01014a;
}

.header-drawer-btn-phone:hover {
    box-shadow: 0 2px 0 #01014a;
}

/* ハンバーガー開いているときは×に変化 */
.header-hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.header-hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* スマホ用：下固定バー（PCでは非表示） */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: #ffffff;
    border-top: 2px solid #020283;
    padding: 12px 16px;
    gap: 12px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-btn {
    flex: 1;
    max-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-bottom-btn:hover {
    color: #ffffff;
    transform: translateY(1px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.mobile-bottom-btn-line {
    background: #06C755;
    box-shadow: 0 4px 0 #058a3d;
}

.mobile-bottom-btn-phone {
    background: #020283;
    box-shadow: 0 4px 0 #01014a;
}

.mobile-bottom-btn svg,
.mobile-bottom-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ===========================================
   ボタン
=========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-lime);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--color-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 0, 45, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-lime);
}

.btn-secondary:hover {
    background: var(--color-lime);
    color: #ffffff;
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* ===========================================
   タイポグラフィ
=========================================== */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    color: var(--color-white);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #999999;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 50px;
}

.highlight {
    color: var(--color-lime);
}

.highlight-yellow {
    color: var(--color-yellow);
}

/* ===========================================
   ユーティリティ
=========================================== */
.text-center {
    text-align: center;
}

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

.mt-60 {
    margin-top: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* ===========================================
   レスポンシブ
=========================================== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    /* ヘッダー：スマホはロゴ＋三本線のみ */
    .fixed-header-banner {
        padding: 10px 0;
    }
    
    .fixed-header-banner::after {
        display: none;
    }
    
    .fixed-header-banner::before {
        display: none;
    }
    
    .header-inner {
        padding: 0 16px 10px;
    }
    
    .header-logo img {
        height: 42px;
    }
    
    .header-contact-pc {
        display: none !important;
    }
    
    .header-hamburger {
        display: flex !important;
    }
    
    /* スマホ用：下固定バーを表示 */
    .mobile-bottom-bar {
        display: flex !important;
    }
    
    /* 下固定バー分の余白をページ下部に */
    .page-container {
        padding-bottom: 80px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-contact {
        gap: 6px;
    }
    
    .header-btn span {
        font-size: 0.75rem;
    }
    
    .header-phone span {
        font-size: 0.8rem;
    }
    
    .header-btn {
        padding: 6px 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* ===========================================
   セクション別スタイル（旧custom.cssから統合）
=========================================== */

/* 買取の流れセクション */
.section-how {
    background: var(--color-dark);
}

.how-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.how-step {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.how-step:hover {
    border-color: var(--color-lime);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.how-step-number {
    width: 80px;
    height: 80px;
    background: var(--color-lime);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
}

.how-step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.how-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.how-step-desc {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.8;
}

.how-arrow {
    font-size: 2.5rem;
    color: var(--color-lime);
    font-weight: 900;
}

/* 買取実績セクション */
.section-results {
    background: var(--color-black);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.result-card:hover {
    border-color: var(--color-lime);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.result-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.result-card-title {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 15px;
}

.result-card-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-lime);
    line-height: 1;
    margin-bottom: 15px;
}

.result-card-price span {
    font-size: 0.5em;
    color: #ffffff;
}

.result-card-label {
    display: inline-block;
    background: rgba(230, 0, 45, 0.12);
    color: var(--color-lime);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 選ばれる理由セクション */
.section-reasons {
    background: var(--color-dark);
    color: #ffffff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: rgba(3, 7, 27, 0.9);
    border-radius: 20px;
    padding: 50px 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-lime);
}

.reason-card:hover {
    border-color: var(--color-lime);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3, 7, 27, 0.5);
}

.reason-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
}

.reason-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--color-yellow);
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.reason-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
}

/* お客様の声セクション */
.section-testimonials {
    background: var(--color-black);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-star {
    color: var(--color-yellow);
    font-size: 1.2rem;
}

.testimonial-text {
    color: #cccccc;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
}

.testimonial-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.testimonial-meta {
    font-size: 0.8rem;
    color: #666666;
}

/* 取扱ブランドセクション */
.section-brands {
    background: var(--color-dark);
}

.brands-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.brands-intro p {
    color: #999999;
    line-height: 2;
}

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

.brand-item {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-height: 100px;
}

.brand-item:hover {
    background: #222222;
    border-color: var(--color-lime);
    transform: translateY(-5px);
}

.brand-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.brands-note {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Notice Box */
.notice-box {
    background: rgba(230, 0, 45, 0.12);
    border: 2px solid #e6002d;
    border-radius: 16px;
    padding: 35px;
    margin: 60px 0;
}

.notice-box-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff3d3d;
    margin-bottom: 20px;
}

.notice-box-title svg {
    width: 28px;
    height: 28px;
}

.notice-box-text {
    color: #cccccc;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* 買取の流れセクション（詳細） */
.section-flow {
    background: var(--color-black);
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    margin-bottom: 60px;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-lime) 0%, var(--color-yellow) 100%);
    z-index: 0;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.flow-step-number {
    width: 120px;
    height: 120px;
    background: var(--color-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(230, 0, 45, 0.45);
}

.flow-step-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.flow-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.flow-step-desc {
    color: #999999;
    font-size: 1rem;
    line-height: 1.8;
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-yellow) 100%);
    padding: 64px 0;
    border-radius: 20px;
    margin: 0 20px;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-line {
    background: #06c755;
    color: #ffffff;
}

.btn-line:hover {
    background: #05b94f;
}

/* CTA内のLINEボタンは常に緑・改行なし */
.section-cta .btn-line {
    background: #06c755;
    color: #ffffff;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-cta .btn-line:hover {
    background: #05b94f;
}

.cta-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--color-black);
    color: #ffffff;
    padding: 20px 35px;
    border-radius: 50px;
}

.cta-phone-label {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 5px;
}

.cta-phone-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-lime);
}

/* アクセスセクション */
.section-access {
    background: var(--color-dark);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.access-info {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--color-lime);
}

.access-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.access-info-item {
    display: flex;
    gap: 20px;
}

.access-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.access-info-label {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 8px;
}

.access-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.access-info-value a {
    color: var(--color-lime);
}

.access-map {
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    background: #1a1a1a;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

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

.access-map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

/* フッター */
.site-footer {
    background: var(--color-black);
    padding: 80px 0 30px;
    border-top: 3px solid var(--color-lime);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

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

.footer-desc {
    color: #ffffff;
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--color-lime);
    color: #ffffff;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #a5f3fc;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-contact-item a {
    color: #ffffff;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #a5f3fc;
}

.footer-contact-icon {
    color: var(--color-lime);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #ffffff;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #a5f3fc;
}

/* レスポンシブ（セクション別） */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .how-steps {
        flex-direction: column;
    }
    
    .how-arrow {
        transform: rotate(90deg);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-steps::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-cta {
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-step-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}