:root{
    /* 2カラム時の最小間隔 */
    --columns-gap-min: 24px;
    /* 1カラム時の縦間隔 */
    --stack-gap: 48px;
    /* カメラアイコン固定サイズ */
    --camera-w: 64px;
    --camera-h: 48px;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    color: #111;
    background: #fff;
}

.block-free{
    width: 1200px;
    margin: 24px auto 80px;
    padding: 0 16px;
    box-sizing: border-box;
}

.mod-headingV1-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    margin: 0 0 32px;
}


.reco-lens-h1-title{
    font-size: 32px;
}

.feature-hero {
    width: 960px;
    margin: 40px auto 108px;
    background: #777;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
}

.feature-columns {
    display: flex;
    align-items: flex-start;
}

.feature-card__title {
    position: relative;
    padding-left: 16px;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
}


.feature-card__title::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 6px;
    height: 100%;
    background-color: #000;
}

.feature-card {
    line-height: 1;
    margin-bottom: 32px;
    font-size: 20px;
}

.reco-lens-h3-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;   /* 要件 */
    line-height: 1.3;
    font-weight: 700;
}


.feature-card__banner-wrap { width: 100%; }
.feature-card__banner {
    width: min(640px, 100%);  
    height: 120px;
    background: #999;
    border-radius: 0px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 600;
    overflow: hidden;
}

/* ─────────────────────────────────────────────
    レイアウト切替：
    1080px以上 → 2カラム（間隔最低24px）
    1080px未満 → 1カラム（カード間48px）
    ───────────────────────────────────────────── */

@media (min-width: 1080px) {
    .feature-columns {
    flex-direction: row;
    gap: var(--columns-gap-min);
    justify-content: space-between;
    }
    .feature-card {
    flex: 0 0 calc((100% - var(--columns-gap-min)) / 2);
    }
}



@media (max-width: 1079.98px) {
.block-free {
width: 100%;
/* コンテンツ左右マージン16px */
padding: 0 16px;
box-sizing: border-box;
}


.feature-hero {
width: 100%;
max-width: none;
height: auto;
aspect-ratio: 16 / 9;
margin: 24px 0 48px 0;
display: grid;
place-items: center;
}


.feature-columns {
flex-direction: column;
gap: 24px;
}

.feature-card {
width: 100%;
flex: 0 0 auto;
row-gap: 8px;
}


.feature-card__banner-wrap {
width: 100%;
}

.feature-card__banner {
width: 100%;                
height: auto;              
aspect-ratio: 16 / 3;      
display: grid;
place-items: center;
}

.feature-card__banner img,
.feature-card__icon img {
display: block;
width: 100%;
height: auto;
}

}

.section {
    margin-bottom:24px;
}

