/* =========================================
   Reason Page Styles - 選ばれる理由
   ========================================= */

/* Use same page-header as area page */
.page-header {
    height: auto;
    min-height: 250px;
    background: linear-gradient(rgba(11, 22, 42, 0.7), rgba(11, 22, 42, 0.7)), url('../img/top_mv.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-bottom: 40px;
}

.page-title-area {
    padding-top: 100px;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.page-title .sub {
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--accent-gold);
    margin-left: 15px;
}

/* Hero Banner & Intro */
.reason-page-main {
    background-color: #fcfbf9;
}

.reason-intro {
    padding: 80px 0;
    text-align: center;
    background: #fff;
    border-bottom: 2px solid #e1dbce;
}

.intro-main-copy {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 30px;
    line-height: 1.5;
}

.intro-main-copy .hl-gold {
    color: var(--accent-gold);
    display: inline-block;
}

.intro-lead-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
}

.sp-br {
    display: none;
}

/* Reason Blocks */
.reason-block {
    padding: 80px 0;
    background-color: #fff;
}

.reason-block.bg-light {
    background-color: #fcfbf9;
}

.reason-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.reason-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.reason-image::before {
    content: '';
    display: block;
    padding-top: 70%; /* Aspect ratio 10:7 approx */
    background-color: #e9e5de; /* Placeholder color before image loads/if missing */
}

.reason-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-content {
    flex: 1;
}

.reason-num {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.reason-num span {
    font-size: 2.5rem;
    margin-left: 5px;
}

.reason-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
}

.reason-heading-main {
    font-size: 1.8rem;
    color: var(--primary-dark);
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    padding-bottom: 20px;
}

.reason-heading-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.reason-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.reason-example {
    background-color: #f8f9fa;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
}

.reason-example h5 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reason-example h5 i {
    color: var(--accent-gold);
}

.reason-example p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Conclusion */
.reason-conclusion {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a47 100%);
    color: #fff;
    text-align: center;
}

.conclusion-inner {
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.conclusion-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 50px;
    opacity: 0.9;
}

.conclusion-action .btn-cta-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
    color: #fff;
    padding: 20px 50px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.conclusion-action .btn-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .reason-flex,
    .reason-flex.reverse-row {
        flex-direction: column;
        gap: 40px;
    }
    
    .intro-main-copy {
        font-size: 1.8rem;
    }
    
    .reason-heading-main {
        font-size: 1.5rem;
    }
    
    .conclusion-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sp-br {
        display: block;
    }
    
    .reason-example {
        padding: 20px;
    }
    
    .conclusion-action .btn-cta-gold {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }
}
