/* ========================================
   法人のお客様ページ (business.php)
   クラス名プレフィックス: p-business-
   ======================================== */

/* メインコンテナ */
.l-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 最後のセクションとコンタクトセクション間の余白調整 */
.l-inner--wide {
    margin-bottom: 0;
}

/* 共通セクションスタイル */
.p-business-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.p-business-section:last-child {
    margin-bottom: 0;
}

.p-business-section__header {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0068C0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.p-business-section__header-icon {
    width: 80px;
    height: auto;
}

/* イントロダクション */
.p-business-intro {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    margin-bottom: 30px;
}

.p-business-intro__image-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.p-business-intro__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.p-business-intro__title {
    font-size: 2.2rem;
    color: #0068C0;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
}

.p-business-intro__title-emphasis {
    font-size: 2.8rem;
    font-weight: 900;
}

.p-business-intro__description {
    font-size: 1.2rem;
    color: #0068C0;
    line-height: 1.8;
    margin: 30px 0;
    text-align: center;
    font-weight: 700;
    padding: 20px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f8f9fa 100%);
    border-radius: 8px;
}

/* こんな場面で */
.p-business-scenes__grid {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.p-business-scenes__grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.p-business-scenes__item {
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #0068C0;
}

.p-business-scenes__item-text {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

.p-business-scenes__note {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 20px;
}

.p-business-scenes__note-link {
    color: #0068C0;
    font-weight: 700;
    text-decoration: underline;
}

/* 得意分野 */
.p-business-specialties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.p-business-specialty {
    background-color: #fff;
    border: 2px solid #0068C0;
    border-radius: 8px;
    padding: 25px;
}

.p-business-specialty__image-wrap {
    text-align: center;
    margin-bottom: 15px;
}

.p-business-specialty__image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.p-business-specialty__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 15px;
    text-align: center;
}

.p-business-specialty__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* 6つの特長 */
.p-business-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.p-business-feature {
    background-color: #f8f9fa;
    border-left: 5px solid #0068C0;
    padding: 25px;
    border-radius: 8px;
}

.p-business-feature__badge {
    background-color: #0068C0;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.p-business-feature__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.p-business-feature__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* 選ばれる理由 */
.p-business-reasons {
    background-color: #e8f4f8;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 2px solid #0068C0;
}

.p-business-reasons__header {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 30px;
    text-align: center;
}

.p-business-reasons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.p-business-reason {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.p-business-reason__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 15px;
    text-align: center;
}

.p-business-reason__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
}

/* お客様の声 */
.p-business-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.p-business-review {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #0068C0;
}

.p-business-review__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 15px;
}

.p-business-review__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.p-business-review__meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* AI見積りバナー */
.p-business-banner {
    text-align: center;
    margin-bottom: 30px;
}

.p-business-banner__link {
    display: inline-block;
}

.p-business-banner__image {
    max-width: 100%;
    height: auto;
}

/* 対応エリア */
.p-business-area__content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.p-business-area__list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-business-area__item {
    background-color: #fff;
    border: 2px solid #0068C0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.p-business-area__item:last-child {
    margin-bottom: 0;
}

.p-business-area__item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0068C0;
    margin-bottom: 15px;
}

.p-business-area__badge {
    display: inline-block;
    background: linear-gradient(135deg, #0068C0 0%, #004d87 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.p-business-area__badge-wrap {
    margin-bottom: 10px;
}

.p-business-area__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.p-business-area__map {
    flex: 0 0 auto;
    text-align: center;
}

.p-business-area__map-image {
    max-width: 314px;
    width: 100%;
    height: auto;
}

.p-business-area__note {
    text-align: center;
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 30px;
}

/* ご利用の流れ */
.p-business-flow {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.p-business-flow__item {
    text-align: center;
}

.p-business-flow__icon-wrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-business-flow__icon {
    width: 124px;
    height: 124px;
    object-fit: contain;
}

.p-business-flow__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.p-business-flow__text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .p-business-flow {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 600px) {
    .p-business-flow {
        grid-template-columns: 1fr !important;
    }

    .p-business-intro__title {
        font-size: 1.8rem;
    }

    .p-business-intro__title-emphasis {
        font-size: 2.2rem;
    }

    .p-business-intro__description {
        font-size: 1rem;
    }

    .p-business-section {
        padding: 30px 20px;
    }

    .p-business-section__header {
        font-size: 1.5rem;
        gap: 10px;
    }

    .p-business-section__header-icon {
        width: 60px;
    }
}
