/**
 * 当院の取り組みページ用スタイル
 */

/* ヒーローセクション */
.l-effort-hero {
    width: 100%;
    overflow: hidden;
}

.l-effort-hero__title {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.l-effort-hero__title img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 768px) {
    .l-effort-hero__title img {
        height: auto;
    }
}

/* パンくずリスト */
.l-effort-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 13px;
}

.l-effort-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.l-effort-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.l-effort-breadcrumb__link {
    color: #4a90d9;
    text-decoration: none;
}

.l-effort-breadcrumb__link:hover {
    text-decoration: underline;
}

.l-effort-breadcrumb__separator {
    color: #999;
}

.l-effort-breadcrumb__current {
    color: #666;
}

/* メインコンテナ */
.l-effort {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    background: #fff;
}

/* 各ブロック */
.l-effort__block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.l-effort__block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* セクションタイトル（h2） */
.l-effort__title {
    font-size: 22px;
    font-weight: bold;
    color: #1d4e90;
    text-align: center;
    margin: 0 0 30px;
    padding: 20px;
    background: linear-gradient(135deg, #e8f0fa 0%, #f5f8fc 100%);
    border-radius: 8px;
    line-height: 1.5;
}

/* コンテンツエリア */
.l-effort__content {
    padding: 0;
}

/* サブタイトル（h3） */
.l-effort__subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0 0 25px;
}

.l-effort__subtitle span {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid #1d4e90;
}

/* メイン画像 */
.l-effort__main-image {
    margin-bottom: 25px;
    text-align: center;
}

.l-effort__main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 本文テキスト */
.l-effort__text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

/* 略歴 */
.l-effort__profile {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.l-effort__profile-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0 0 10px;
}

.l-effort__profile-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* 画像ギャラリー */
.l-effort__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.l-effort__gallery-item {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 6px;
}

.l-effort__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.l-effort__gallery-item:hover img {
    transform: scale(1.05);
}

/* SP表示用の改行 */
.sp-only {
    display: none;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .l-effort {
        padding: 30px 15px 40px;
    }

    .l-effort__block {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .l-effort__title {
        font-size: 18px;
        padding: 15px;
    }

    .l-effort__subtitle {
        font-size: 16px;
    }

    .l-effort__text {
        font-size: 14px;
    }

    .l-effort__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sp-only {
        display: inline;
    }
}

@media screen and (max-width: 480px) {
    .l-effort__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}
