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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ヘッダー ===== */
.header {
    background-color: #2C3E50;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
    max-height: 40px;
    width: auto;
}

.header-tel-btn {
    background-color: #E67E22;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.header-tel-btn:hover {
    background-color: #D35400;
    transform: translateY(-2px);
}

.tel-icon {
    font-size: 18px;
}

.tel-number {
    font-size: 16px;
}

/* ===== ヒーローセクション ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    background-image: url('https://hao-property.jp/images/hakone-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.85) 100%);
}

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

.hero-badge {
    display: inline-block;
    background-color: #E74C3C;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    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: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

/* ===== CTAボタン ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.6);
}

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

.cta-button-white {
    background: #fff;
    color: #E67E22;
}

.cta-button-white:hover {
    background: #f8f8f8;
}

.cta-sub {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

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

/* ===== セクション共通 ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #2C3E50;
}

.section-title-white {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

/* ===== 問題提起セクション ===== */
.problem-section {
    background-color: #f8f9fa;
}

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

.stat-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #E67E22;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.stat-desc {
    font-size: 14px;
    color: #666;
}

.problem-message {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.problem-message p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.problem-message p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #E67E22;
}

/* ===== 解決策セクション ===== */
.solution-section {
    background-color: #fff;
}

.value-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
    border-color: #E67E22;
}

.value-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.value-amount {
    font-size: 18px;
    font-weight: 700;
    color: #E67E22;
    margin-bottom: 10px;
}

.value-detail {
    font-size: 28px;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 20px;
}

.value-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.value-plus {
    font-size: 36px;
    font-weight: 900;
    color: #E67E22;
    margin: 0 10px;
}

/* ===== 比較セクション ===== */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    background: #2C3E50;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-old {
    background-color: #f8f9fa;
    color: #999;
}

.comparison-new {
    background-color: #fff;
    color: #2C3E50;
    font-weight: 700;
}

.comparison-new.highlight {
    background-color: #FFF3E0;
    color: #E67E22;
    font-size: 20px;
    font-weight: 900;
}

.comparison-result {
    text-align: center;
}

.result-box {
    display: inline-block;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: #fff;
    padding: 30px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.result-plus {
    font-size: 18px;
    font-weight: 700;
}

/* ===== お客様の声セクション ===== */
.testimonial-section {
    background-color: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.testimonial-avatar {
    font-size: 48px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
}

.testimonial-location {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.testimonial-rating {
    font-size: 18px;
    color: #FFD700;
    margin-top: 5px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* ===== FAQセクション ===== */
.faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 10px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 900;
    color: #E67E22;
    flex-shrink: 0;
}

.faq-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.faq-question .faq-text {
    font-weight: 700;
    color: #2C3E50;
}

/* ===== 最終CTAセクション ===== */
.final-cta-section {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: #fff;
    text-align: center;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

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

.benefit-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.cta-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.step-item {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
}

.step-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.step-text {
    font-size: 16px;
    font-weight: 700;
}

.step-arrow {
    font-size: 24px;
    font-weight: 900;
}

.alternative-link {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.alternative-link p {
    font-size: 16px;
    margin-bottom: 15px;
}

.link-button {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.link-button:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== フッター ===== */
.footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 50px 0 20px;
}

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

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

.footer-logo img {
    max-height: 60px;
    margin-bottom: 10px;
}

.footer-company-info {
    flex: 1;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.company-detail {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.company-detail a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.company-detail a:hover {
    color: #E67E22;
}

.footer-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E67E22;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright p {
    font-size: 12px;
    color: #999;
}

/* ===== レスポンシブ（タブレット） ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title,
    .section-title-white {
        font-size: 28px;
    }
    
    .value-cards {
        flex-direction: column;
    }
    
    .value-plus {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-col {
        border-bottom: 1px solid #e9ecef;
        padding: 15px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-right {
        justify-content: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: left;
        gap: 15px;
    }
}

/* ===== レスポンシブ（スマホ） ===== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 15px 30px;
    }
    
    .cta-button-large {
        font-size: 18px;
        padding: 20px 35px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .result-amount {
        font-size: 36px;
    }
}