/* --- アクセスルートセクション(access-route.css) 固有スタイル --- */

.route-section {
    padding: 60px 0;
    background-color: #fff;
}

.route-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 各ルートの塊 */
.route-item {
    display: flex;
    align-items: center;    /* ★垂直方向の中央揃えに変更 */
    gap: 20px;
    margin-bottom: 25px;
}

/* 右側コンテンツをまとめるカラム */
.route-content-right {
    flex: 1;
}

/* ▼ 既存フォントアイコン（互換性維持） */
.route-header i {
    font-size: 24px;
    color: #0054a6;
}

/* ▼ 画像アイコン対応 */
.route-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* タイトル（大・レクストンブルー） */
.route-title {
    font-size: 24px;
    font-weight: 700;
    color: #0054a6;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

/* 説明文エリア */
.route-body {
    padding-left: 0;
}

/* 説明文（小・黒） */
.route-text {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    margin: 0; /* 下マージンを0にして中央揃えをより正確に */
}

/* 区切り線 */
.route-divider {
    border: none;
    border-top: 1px dashed #ddd;
    margin: 25px 0;
}

/* 最後の区切り線は不要 */
.route-item:last-of-type + .route-divider,
.route-divider:last-child {
    display: none;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    .route-section {
        padding: 40px 0;
    }

    .route-item {
        align-items: center; /* ★スマホでも中央揃えを維持 */
        gap: 15px;
    }

    .route-title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .route-icon {
        width: 60px;
        height: 60px;
    }

    .route-body {
        padding-left: 0;
        margin-top: 0;
    }

    .route-text {
        font-size: 14px;
    }
}