/* #LP-A 課題：画像1枚表示 */
.problems-tilt {
    padding: 0;
    background: #fdfdfd;
    overflow: hidden;
    position: relative;
}

/* Introセクションからのつながりを意識したフェード */
.problems-tilt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2vw;
    /* 透明度だけの変化にするため rgba(1, 8, 28, 0) を使用し、自然なフェード（イージング）を適用 */
    background: linear-gradient(to bottom,
            #01081c 0%,
            rgba(1, 8, 28, 0.738) 19%,
            rgba(1, 8, 28, 0.541) 34%,
            rgba(1, 8, 28, 0.382) 47%,
            rgba(1, 8, 28, 0.278) 56.5%,
            rgba(1, 8, 28, 0.194) 65%,
            rgba(1, 8, 28, 0.126) 73%,
            rgba(1, 8, 28, 0.075) 80.2%,
            rgba(1, 8, 28, 0.042) 86.1%,
            rgba(1, 8, 28, 0.021) 91%,
            rgba(1, 8, 28, 0.008) 95.2%,
            rgba(1, 8, 28, 0.002) 98.2%,
            rgba(1, 8, 28, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.problems-summary {
    display: none;
}

.problems-img {
    max-width: 100%;
    margin: 0;
    width: 100%;
    /* 表示部分のアスペクト比を指定（800:1473 = 元の高さ2266pxの約65%を表示） */
    aspect-ratio: 800 / 1500;
    overflow: hidden;
    /* はみ出した下35%部分を隠す */
}

.problems-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    /* 上端に合わせて表示 */
    border-radius: 0;
    box-shadow: none;
    display: block;
}