/* ================================================
   リセット & 基本設定
================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット */
    --primary-color: #0066CC;
    --primary-dark: #004C99;
    --secondary-color: #FF6B00;
    --accent-color: #FFD700;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-blue: #0066CC;
    --bg-gradient: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-en: 'Roboto', sans-serif;
    
    /* スペーシング */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* ブレークポイント */
    --breakpoint-tablet: 768px;
    --breakpoint-mobile: 480px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

/* ================================================
   ヘッダー
================================================ */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
}

.header-cta-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-cta {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.header-cta i {
    font-size: 14px;
}

.header-cta:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.header-cta-mail {
    background: var(--primary-color);
}

.header-cta-mail:hover {
    background: var(--primary-dark);
}

.header-cta-visit {
    background: var(--success-color);
}

.header-cta-visit:hover {
    background: #20c997;
}

.header-cta-phone {
    background: var(--secondary-color);
}

/* ================================================
   ファーストビュー
================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    color: var(--bg-white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03));
    background-size: 80px 140px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 107, 0, 0.9);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.hero-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* ================================================
   CTAボタン
================================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
}

.cta-primary:hover {
    background: #e55f00;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-large {
    font-size: 20px;
    padding: 25px 50px;
}

/* ================================================
   セクション共通
================================================ */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-title-white {
    color: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

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

.highlight-blue {
    color: var(--primary-color);
}

/* ================================================
   問題提起セクション
================================================ */
.problem {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 28px;
    color: var(--bg-white);
}

.problem-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.problem-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.problem-result {
    text-align: center;
    margin-top: 40px;
}

.problem-arrow {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.problem-conclusion {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.problem-conclusion strong {
    color: #ee5a6f;
}

/* ================================================
   解決策（物件紹介）セクション
================================================ */
.solution {
    background: var(--bg-gradient);
    color: var(--bg-white);
}

.property-card {
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

.property-badge-recommended {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    animation: pulse 2s infinite;
}

.property-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 40px 30px;
}

.property-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.property-catchcopy {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.property-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}

.property-images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.property-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.property-label {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
}

.property-label-green {
    background: var(--success-color);
}

.property-label-current {
    background: var(--warning-color);
    color: var(--text-dark);
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    font-weight: 700;
    min-width: 120px;
    color: var(--text-gray);
}

.detail-value {
    flex: 1;
    font-weight: 600;
}

.detail-value.price {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 900;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature-tag {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-tag-green {
    background: var(--success-color);
}

.property-highlights {
    background: #f8f9fa;
    padding: 30px 40px;
    border-top: 3px solid var(--primary-color);
}

.property-highlights-recommended {
    border-top-color: var(--success-color);
}

.property-highlights h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.property-highlights ul {
    list-style: none;
}

.property-highlights li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
}

.property-highlights i {
    color: var(--accent-color);
    margin-top: 4px;
}

.comparison-note {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: var(--bg-white);
    margin-top: 40px;
}

.comparison-note i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* ================================================
   ギャラリーセクション
================================================ */
.gallery {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.gallery-caption {
    background: var(--bg-white);
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
}

/* ================================================
   ベネフィットセクション
================================================ */
.benefits {
    background: var(--bg-white);
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.benefit-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    font-family: var(--font-en);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.benefit-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: var(--font-en);
    margin-bottom: 5px;
}

.metric-label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

/* ================================================
   社会的証明セクション
================================================ */
.proof {
    background: var(--bg-light);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.proof-item {
    background: var(--bg-white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.proof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.proof-icon i {
    font-size: 35px;
    color: var(--bg-white);
}

.proof-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.proof-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.proof-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.proof-stats {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.proof-stats-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-en);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
    line-height: 1.6;
}

/* ================================================
   シミュレーションセクション
================================================ */
.simulation {
    background: var(--bg-gradient);
    color: var(--bg-white);
}

.simulation-card {
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
}

.simulation-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 40px;
    border-bottom: 3px solid var(--primary-color);
}

.simulation-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.simulation-content {
    padding: 40px;
}

.simulation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.simulation-label {
    font-weight: 600;
    color: var(--text-gray);
}

.simulation-value {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-en);
}

.simulation-value.highlight-number {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 900;
}

.simulation-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 20px 0;
}

.simulation-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.simulation-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* ================================================
   緊急性演出セクション
================================================ */
.urgency {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--bg-white);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.urgency-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

.urgency-icon i {
    font-size: 40px;
    color: var(--bg-white);
}

.urgency-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.urgency-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.urgency-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.urgency-reason {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgency-reason i {
    font-size: 30px;
    color: var(--warning-color);
}

.urgency-reason p {
    font-weight: 600;
    line-height: 1.6;
}

/* ================================================
   お問い合わせ（資料請求・現地案内）
================================================ */
.contact {
    background: var(--bg-light);
}

.contact-description {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

.cta-buttons-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.cta-option {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.cta-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cta-option-featured {
    border: 3px solid var(--success-color);
}

.cta-option-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--success-color);
    color: var(--bg-white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
}

.cta-option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cta-option-featured .cta-option-icon {
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
}

.cta-option-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.cta-option-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-option-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.cta-secondary {
    background: var(--success-color);
}

.cta-secondary:hover {
    background: #20c997;
}

.phone-contact {
    margin-top: 20px;
}

.phone-number {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
}

.phone-number i {
    font-size: 28px;
    margin-right: 10px;
}

.phone-hours {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-note {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-company-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-company-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.contact-company-info h3 i {
    margin-right: 10px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.company-detail-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    color: var(--bg-white);
    font-size: 18px;
}

.detail-content strong {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.detail-content p {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.company-note {
    background: var(--bg-white);
    padding: 20px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
}

.company-note i {
    color: var(--success-color);
    margin-right: 8px;
    font-size: 16px;
}



/* ================================================
   FAQセクション
================================================ */
.trust {
    background: var(--bg-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary-color);
}

.faq-question i {
    margin-top: 3px;
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 32px;
}

/* ================================================
   最終CTAセクション
================================================ */
.final-cta {
    background: linear-gradient(135deg, #0066CC 0%, #004C99 100%);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.final-cta-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--bg-white);
}

.final-cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

/* ================================================
   フッター
================================================ */
.footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-company-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-company-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

.company-name {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 15px !important;
    margin-bottom: 15px !important;
}

.license-number {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.license-number i {
    margin-right: 6px;
}

.company-address i {
    margin-right: 6px;
    color: var(--accent-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-staff {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.footer-staff i {
    color: var(--accent-color);
    margin-right: 6px;
}

.footer-email {
    margin-top: 10px;
    font-size: 14px;
}

.footer-email i {
    color: var(--accent-color);
    margin-right: 6px;
}

.footer-note {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
}

.footer-phone {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-color);
    margin: 15px 0;
    font-family: var(--font-en);
}

.footer-hours {
    font-size: 14px;
}

.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-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

/* ================================================
   スクロールトップボタン
================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top:hover {
    background: #e55f00;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.scroll-top.show {
    display: flex;
}

/* ================================================
   レスポンシブデザイン
================================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .header-cta-group {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        gap: 8px;
    }
    
    .header-cta {
        font-size: 10px;
        padding: 10px 8px;
        flex: 1;
        min-width: 0;
    }
    
    .header-cta span {
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-cta i {
        font-size: 14px;
    }
    
    .header-cta-phone span {
        font-size: 11px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 16px 30px;
    }
    
    .cta-large {
        font-size: 18px;
        padding: 18px 35px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .property-content {
        flex-direction: column;
    }
    
    .property-images-wrapper {
        grid-template-columns: 1fr;
    }
    
    .property-header {
        padding: 40px 25px 20px;
    }
    
    .property-title {
        font-size: 22px;
    }
    
    .property-content {
        padding: 25px;
    }
    
    .property-highlights {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .benefit-metrics {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 40px;
    }
    
    .urgency-title {
        font-size: 24px;
    }
    
    .urgency-reasons {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-wrapper {
        grid-template-columns: 1fr;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .contact-company-info {
        padding: 25px 20px;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .sp-only {
        display: inline;
    }
}

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

/* ================================================
   アニメーション
================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ================================================
   印刷対応
================================================ */
@media print {
    .header,
    .scroll-top,
    .cta-button,
    .final-cta {
        display: none;
    }
}
