@charset "UTF-8";

/* --- Reason Page --- */
#reason-main {
    width: 100%;
}

/* Breadcrumb */
.reason-breadcrumb {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #333;
}

/* Title Section */
.reason-title-section {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #fff;
    border-bottom: 4px solid #00A968;
}

.reason-title-section h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* --- Reason Buttons Section --- */
.reason-buttons-section {
    background-image: radial-gradient(#00A968 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    padding: 60px 20px 80px;
}

.reason-buttons-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.reason-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Reason Button */
.reason-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #00A968;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-height: 70px;
}

.reason-btn:hover {
    background-color: #008c56;
    transform: translateY(-2px);
}

.reason-btn-number {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.reason-btn-text {
    flex: 1;
    line-height: 1.4;
}

.reason-btn-arrow {
    font-size: 12px;
    flex-shrink: 0;
}

/* レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .reason-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reason-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .reason-title-section h1 {
        font-size: 28px;
    }

    .reason-buttons-grid {
        grid-template-columns: 1fr;
    }

    .reason-btn {
        padding: 15px 18px;
        font-size: 14px;
    }
}

/* --- Reason Point Section --- */
.reason-point-section {
    background-color: #f0f0f0;
    padding: 80px 20px;
}

/* 偶数のPointセクション（白背景） */
.reason-point-section:nth-of-type(even) {
    background-color: #fff;
}

.reason-point-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ポイントヘッダー */
.reason-point-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.reason-point-number {
    height: 38px;
    width: auto;
}

/* ポイントタイトル */
.reason-point-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: inline;
    background: linear-gradient(transparent 60%, rgba(0, 169, 104, 0.3) 60%);
    padding: 0 5px;
}

.reason-point-subtitle {
    display: block;
    font-size: 18px;
    color: #666;
    margin-top: 15px;
    font-weight: normal;
}

/* コンテンツカード */
.reason-point-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 60px;
    border: 3px solid #333;
    margin-top: 40px;
}

.reason-point-text {
    text-align: left;
    font-size: 17px;
    color: #333;
    line-height: 2.0;
    margin-bottom: 40px;
}

.reason-point-text p {
    margin: 0;
}

.reason-point-text .mt-20 {
    margin-top: 20px;
}

/* 画像エリア */
.reason-point-image-area {
    text-align: center;
}

.reason-point-image-caption {
    font-size: 16px;
    font-weight: bold;
    color: #00A968;
    margin: 0 0 20px;
}

.reason-point-image {
    max-width: 100%;
    height: auto;
}

/* Point Section レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .reason-point-card {
        padding: 40px 40px;
    }

    .reason-point-title {
        font-size: 28px;
    }
}

/* Point Section レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .reason-point-section {
        padding: 60px 20px;
    }

    .reason-point-title {
        font-size: 24px;
    }

    .reason-point-subtitle {
        font-size: 16px;
    }

    .reason-point-card {
        padding: 30px 25px;
    }

    .reason-point-text {
        font-size: 16px;
    }

    .reason-point-image-caption {
        font-size: 14px;
    }
}

/* --- CTA Section --- */
.reason-cta-section {
    background-color: #00A968;
    padding: 60px 20px;
}

.reason-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.reason-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    min-width: 280px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reason-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.reason-cta-arrow {
    font-size: 12px;
}

/* CTA Section レスポンシブ対応 - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .reason-cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .reason-cta-btn {
        width: 100%;
        max-width: 400px;
    }
}

/* CTA Section レスポンシブ対応 - SP */
@media screen and (max-width: 767px) {
    .reason-cta-section {
        padding: 40px 20px;
    }

    .reason-cta-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .reason-cta-btn {
        width: 100%;
        max-width: 400px;
        padding: 15px 30px;
        font-size: 14px;
        min-width: unset;
    }
}