/* =========================================================
   Home
   ========================================================= */

.sg-home {
    padding: 0 0 50px;
}

/* -------------------------
   0) 共通部品
------------------------- */
.sg-home .sghm-sec-head {
    text-align: center;
    margin: 0 0 26px;
}

.sg-home .sghm-sec-head--tight {
    margin-bottom: 16px;
}

/* -------------------------
   1) 動画
------------------------- */
.sg-home .sghm-mv {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    background: #000;
    overflow: hidden;
}

.sg-home .sghm-mv-media {
    position: relative;
    width: 100%;
    height: min(800px, 90vh);
    background: #000;
    overflow: hidden;
}

.sg-home .sghm-mv-poster,
.sg-home .sghm-mv-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sg-home .sghm-mv-poster {
    opacity: 1;
    transition: opacity .6s ease;
}

.sg-home .sghm-mv-video {
    opacity: 0;
    transition: opacity .6s ease;
}

.sg-home .sghm-mv-media.is-video-ready .sghm-mv-video {
    opacity: 1;
}

.sg-home .sghm-mv-media.is-video-ready .sghm-mv-poster {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .sg-home .sghm-mv-media {
        height: 50vh;
    }
}

/* -------------------------
   2) メッセージ（背景フル幅）
------------------------- */
.sg-home .sghm-message {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    text-align: center;
    background-image: url("/wp-content/uploads/2026/02/home-concept.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 100px;
}

.sg-home .sghm-message-copy {
    font-size: clamp(26px, 7.5vw, 60px);
    margin: 0;
    line-height: 1.4;
}

.sg-home .sghm-message-copy-char {
    display: inline-block;
    margin-right: .45em;
    opacity: 0;
    transform: translateY(32px) scale(1.35);
    transform-origin: center center;
    animation: sghmMessageCharDropIn 1s ease-out forwards;
}

.sg-home .sghm-message-copy-char:last-child {
    margin-right: 0;
}

.sg-home .sghm-message-copy-char:nth-child(1) {
    animation-delay: 0.1s;
}

.sg-home .sghm-message-copy-char:nth-child(2) {
    animation-delay: 0.2s;
}

.sg-home .sghm-message-copy-char:nth-child(3) {
    animation-delay: 0.3s;
}

.sg-home .sghm-message-copy-char:nth-child(4) {
    animation-delay: 0.4s;
}

.sg-home .sghm-message-copy-char:nth-child(5) {
    animation-delay: 0.5s;
}

.sg-home .sghm-message-copy-char:nth-child(6) {
    animation-delay: 0.6s;
}

.sg-home .sghm-message-copy-char:nth-child(7) {
    animation-delay: 0.7s;
}

.sg-home .sghm-message-copy-char:nth-child(8) {
    animation-delay: 0.8s;
}

.sg-home .sghm-message-copy-char:nth-child(9) {
    animation-delay: 0.9s;
}

@keyframes sghmMessageCharDropIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(1.6);
    }

    60% {
        opacity: 1;
        transform: translateY(10px) scale(1.2);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes sghmMessageAfterFadeUp {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.sg-home .sghm-message-body {
    font-size: 20px;
    line-height: 2.0;
    letter-spacing: .12em;
    opacity: 0;
    transform: translateY(24px);
    animation: sghmMessageAfterFadeUp 1s ease-out forwards;
    animation-delay: 1.45s;
    margin: 30px auto 0;
}

.sg-home .sghm-message-body p {
    margin: 0;
}

.sg-home .sghm-message-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 28px 0 36px;
}

.sg-home .sghm-message-line {
    display: block;
    width: 1px;
    height: 0;
    background: rgba(120, 128, 136, .45);
    animation: sghmMessageLineGrow .7s ease-out forwards;
    animation-delay: 2.6s;
}

.sg-home .sghm-message-dot {
    display: block;
    font-family: "Material Icons Outlined";
    font-size: 22px;
    color: rgba(120, 128, 136, .55);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(8px);
    animation: sghmMessageDotFade .45s ease-out forwards;
    animation-delay: 3.2s;
}

.sg-home .sghm-message-en {
    opacity: 0;
    transform: translateY(20px);
    font-size: clamp(26px, 6.0vw, 70px);
    letter-spacing: .05em;
    line-height: 1.1;
    color: rgba(0, 0, 0, .5);
    animation: sghmMessageLuxuryFadeUp 1s ease-out forwards;
    animation-delay: 3.55s;
    margin: 28px 0 0;
}

@keyframes sghmMessageLineGrow {
    0% {
        height: 0;
        opacity: 0;
    }

    100% {
        height: 180px;
        opacity: 1;
    }
}

@keyframes sghmMessageDotFade {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sghmMessageLuxuryFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: .50;
        transform: translateY(0);
    }
}

.sg-home .sghm-message-body--sub {
    animation-delay: 4.2s;
}


/* -------------------------
   3) 強み
------------------------- */
.sg-home .sghm-strong {
    --sg-header-h: 80px;
    --sg-strong-stage-h: calc(100vh - var(--sg-header-h));
    --sg-card-gap: 18px;
    --sg-card-1-y: 100%;
    --sg-card-2-y: 100%;
    --sg-card-3-y: 100%;
    width: 100vw;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #000;
    color: #fff;
    padding-top: 50px;
}

/* JSで十分な高さを入れる前提。仮の最低高さ */
.sg-home .sghm-strong {
    min-height: calc(var(--sg-strong-stage-h));
}

/* セクション全体をヘッダー下で止める箱 */
.sg-home .sghm-strong-pin {
    position: sticky;
    top: var(--sg-header-h);
    min-height: var(--sg-strong-stage-h);
}

.sg-home .sghm-strong .sg-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.sg-home .sghm-strong-grid {
    display: grid;
    grid-template-columns: minmax(450px, 30%) minmax(0, 1fr);
    gap: 0;
    align-items: start;
    min-height: var(--sg-strong-stage-h);
}

/* 左側 */
.sg-home .sghm-strong-left {
    position: relative;
    min-height: var(--sg-strong-stage-h);
    z-index: 1;
    color: #bb9619;
    padding: 0 20px 0 0;
}

.sg-home .sghm-strong-left::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("/wp-content/uploads/2026/02/home-reason-back01.webp");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    pointer-events: none;
}

/* since + 1986 を横並び */
.sg-home .sghm-since-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 30px;
    padding-left: 50px;
}

.sg-home .sghm-since {
    font-size: 40px;
    margin: 0;
}

.sg-home .sghm-year {
    font-family: "Mea Culpa", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: clamp(46px, 20vw, 150px);
    letter-spacing: .05em;
    line-height: 1;
    margin: 0;
}

.sg-home .sghm-strong-title {
    font-size: 40px;
    letter-spacing: .05em;
    margin: 14px 0 10px;
    padding-left: 50px;
}

.sg-home .sghm-strong-lead {
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
    padding-left: 50px;
}

/* 右側ステージ */
.sg-home .sghm-strong-right {
    position: relative;
    min-height: var(--sg-strong-stage-h);
    height: var(--sg-strong-stage-h);
    z-index: 1;
    overflow: hidden;
}

.sg-home .sghm-strong-right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("/wp-content/uploads/2026/02/home-back02.webp");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    pointer-events: none;
}

/* カードを absolute で積み上げる土台 */
.sg-home .sghm-strong-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

/* カード本体 */
.sg-home .sghm-strong-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #fff;
    will-change: transform;
}

.sg-home .sghm-strong-card:nth-child(1) {
    top: 0;
    transform: translateY(var(--sg-card-1-y));
    z-index: 1;
}

.sg-home .sghm-strong-card:nth-child(2) {
    top: calc(var(--sg-card-gap));
    transform: translateY(var(--sg-card-2-y));
    z-index: 2;
}

.sg-home .sghm-strong-card:nth-child(3) {
    top: calc((var(--sg-card-gap) * 2));
    transform: translateY(var(--sg-card-3-y));
    z-index: 3;
}

/* 背景色 */
.sg-home .sghm-strong-card--gold {
    background: #6e4c02;
}

.sg-home .sghm-strong-card--green {
    background: #1d5b25;
}

.sg-home .sghm-strong-card--navy {
    background: #0c245a;
}

/* 2分割 */
.sg-home .sghm-strong-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
}

.sg-home .sghm-strong-card-left {
    min-width: 0;
    padding: 15px;
}

.sg-home .sghm-strong-card-right {
    margin: 0;
    padding: 0;
}

.sg-home .sghm-strong-card-right img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* kicker：✔を後ろに・下線は kicker 部分だけ */
.sg-home .sghm-strong-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    letter-spacing: .15em;
    border-bottom: 1px solid #fff;
    margin: 0 0 8px;
}

/* ✔を後ろに追加 */
.sg-home .sghm-strong-card-kicker::after {
    content: "check";
    font-family: "Material Icons";
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

/* タイトル＋ボタン横並び */
.sg-home .sghm-strong-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 10px;
}

.sg-home .sghm-strong-card-ttl {
    font-size: 30px;
    line-height: 1.4;
    margin: 0;
}

/* ボタン */
.sg-home .sghm-strong-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 15px;
    letter-spacing: .05em;
    text-decoration: none;
    background: #fff;
    white-space: nowrap;
    padding: 5px 10px;
    margin-top: 5px;
}

.sg-home .sghm-strong-card--gold .sghm-strong-card-btn {
    color: #6e4c02;
}

.sg-home .sghm-strong-card--green .sghm-strong-card-btn {
    color: #1d5b25;
}

.sg-home .sghm-strong-card--navy .sghm-strong-card-btn {
    color: #0c245a;
}

.sg-home .sghm-strong-card-btn:hover,
.sg-home .sghm-strong-card-btn:focus {
    opacity: .85;
}

/* 文章 */
.sg-home .sghm-strong-card-txt {
    background: #fff;
    font-size: 20px;
    line-height: 1;
    padding: 5px 10px;
    margin: 0 0 6px;
}

.sg-home .sghm-strong-card--gold .sghm-strong-card-txt {
    color: #6e4c02;
}

.sg-home .sghm-strong-card--green .sghm-strong-card-txt {
    color: #1d5b25;
}

.sg-home .sghm-strong-card--navy .sghm-strong-card-txt {
    color: #0c245a;
}

.sg-home .sghm-strong-card-desc {
    line-height: 1.7;
    margin: 0;
}

/* -------------------------
   Responsive：SPは通常の縦並びに戻す
------------------------- */
@media (max-width: 900px) {
    .sg-home .sghm-strong {
        --sg-header-h: 72px;
        --sg-strong-stage-h: auto;
        min-height: auto;
    }

    .sg-home .sghm-strong-pin {
        position: static;
        top: auto;
        min-height: auto;
    }

    .sg-home .sghm-strong > .sg-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sg-home .sghm-strong-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sg-home .sghm-strong-left {
        min-height: auto;
        padding: 0;
        margin-bottom: 20px;
    }

    .sg-home .sghm-since-row,
    .sg-home .sghm-strong-title,
    .sg-home .sghm-strong-lead {
        padding-left: 0;
    }

    .sg-home .sghm-strong-right {
        min-height: auto;
        height: auto;
        overflow: visible;
    }

    .sg-home .sghm-strong-cards {
        height: auto;
    }

    .sg-home .sghm-strong-card {
        position: static;
        width: 100%;
        transform: none !important;
    }

    .sg-home .sghm-strong-card + .sghm-strong-card {
        margin-top: 16px;
    }

    .sg-home .sghm-strong-card-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sg-home .sghm-strong-card-right img {
        aspect-ratio: 16 / 9;
        height: auto;
    }
}

/* -------------------------
   4) 施工例6
------------------------- */
.sg-home .sghm-works {
    padding: 60px 0 66px;
    background: #fff;
}

.sg-home .sghm-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    row-gap: 100px;
    align-items: start;
}

/* カードの基本 */
.sg-home .sghm-work {
    position: relative;
    display: block;
    color: #000;
    text-decoration: none;
    max-width: 560px;
}

/* 奇数＝右カラム、右寄せ */
.sg-home .sghm-work:nth-child(odd) {
    grid-column: 2;
    justify-self: end;
}

/* 偶数＝左カラム、左寄せ */
.sg-home .sghm-work:nth-child(even) {
    grid-column: 1;
    justify-self: start;
    margin-top: -350px;
}

/* 施工例：影を切らない */
.sg-home a.sghm-work {
    overflow: visible !important;
}

/* 画像 */
.sg-home .sghm-work img {
    width: 100%;
    display: block;
    object-fit: cover;
    box-shadow: -20px 20px 30px rgba(0, 0, 0, .35);
}

/* SELECTION */
.sg-home .sghm-work-selct {
    position: absolute;
    right: 18px;
    top: 15px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    z-index: 2;
}

/* NO */
.sg-home .sghm-work-no {
    position: absolute;
    right: 18px;
    top: 32px;
    color: #fff;
    background: transparent;
    font-size: 70px;
    letter-spacing: .08em;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    padding: 0;
    z-index: 2;
}

/* タイトル・本文（画像の下に） */
.sg-home .sghm-work-cap {
    position: static;
    display: block;
    background: transparent;
    font-size: 30px;
    text-align: center;
    line-height: 1.6;
    padding: 0;
    margin: 20px 0 10px;
}

.sg-home .sghm-work-text {
    font-size: 17px;
    text-align: center;
    line-height: 1.6;
    letter-spacing: .05em;
    margin: 0;
}

/* ホバー */
.sg-home a.sghm-work {
    overflow: hidden;
}

/* 画像のデフォルト */
.sg-home a.sghm-work img {
    transform: translate(0, 0) scale(1) !important;
    filter: none !important;
    transition: transform .25s ease !important;
    transform-origin: center;
}

/* hover / focus：右斜め下へ移動（拡大なし） */
.sg-home a.sghm-work:hover img,
.sg-home a.sghm-work:focus img {
    transform: translate(5px, 5px) scale(1) !important;
    filter: none !important;
}

/* 施工例：CTAを右端・縦並びに */
.sg-home .sghm-works-cta {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.sg-home .sghm-works-cta .sg-btn {
    min-width: 180px;
}

/* Tablet：2カラム維持、段違い量だけ軽く */
@media (max-width: 900px) {
    .sg-home .sghm-works-grid {
        column-gap: 30px;
        row-gap: 50px;
    }

    .sg-home .sghm-work {
        max-width: none;
    }

    .sg-home .sghm-work:nth-child(even) {
        margin-top: 50px;
    }
}

/* SP：1カラム（段違い解除） */
@media (max-width: 600px) {
    .sg-home .sghm-works-grid {
        grid-template-columns: 1fr;
    }

    .sg-home .sghm-work {
        grid-column: auto;
        justify-self: stretch;
        margin-top: 0;
    }

    .sg-home .sghm-work-no {
        font-size: 36px;
    }

    .sg-home .sghm-work-cap {
        font-size: 20px;
    }
}

/* -------------------------
   5) 店舗案内
------------------------- */
.sg-home .sghm-shop {
    padding: 56px 0 66px;
    background: #fff;
}

.sg-home .sghm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: start;
}

.sg-home .sghm-card {
    background: transparent;
}

.sg-home .sghm-photo {
    position: relative;
    margin: 0 0 35px;
    overflow: hidden;
    background: #fff;
}

.sg-home .sghm-name {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: clamp(20px, 2.2vw, 34px);
    letter-spacing: .22em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.sg-home .sghm-info {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, .35);
}

.sg-home .sghm-row {
    position: relative;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
}

.sg-home .sghm-row--map {
    padding-right: 100px;
}

.sg-home .sghm-row--map .sghm-map {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
}

.sg-home .sghm-th {
    position: relative;
    letter-spacing: .05em;
    text-align: left;
    align-self: stretch;
    padding-left: 10px;
}

.sghm-th::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    right: calc(-20px / 2);
    background: rgba(0, 0, 0, .35);
}

.sghm-td {
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.7;
}

.sghm-td p {
    margin: 0;
}

.sg-home .sghm-mapbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 34px;
    border-radius: 2px;
    background: #fff;
    color: #000;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 500;
    letter-spacing: .08em;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .35);
    padding: 0 14px;
}

.sg-home .sghm-mapbtn:hover,
.sg-home .sghm-mapbtn:focus {
    opacity: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, .18);
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 900px) {
    .sg-home .sghm-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sg-home .sghm-row {
        grid-template-columns: 80px minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .sg-home {
        padding-bottom: 44px;
    }

    /* モバイルはMAPを下に逃がして読みやすく */
    .sg-home .sghm-row {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "th td"
            "map map";
        row-gap: 10px;
    }

    .sg-home .sghm-th {
        grid-area: th;
    }

    .sg-home .sghm-td {
        grid-area: td;
    }

    .sg-home .sghm-map {
        grid-area: map;
        justify-content: flex-end;
    }

    .sg-home .sghm-map[aria-hidden="true"] {
        display: none;
    }

    .sg-home .sghm-name {
        top: 18px;
        letter-spacing: .18em;
    }
}

/* -------------------------
   6) 4リンク（Process/Voice/Cost/FAQ）
------------------------- */
.sg-home .sghm-links {
    padding: 50px 0 70px;
    background: #fff;
}

.sg-home .sghm-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.sg-home .sghm-linkcard {
    display: grid;
    place-items: center;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: #fff;
    padding-top: 50px;
}

.sg-home .sghm-linkcard .sg-h1::after {
    width: 150%;
}

.sg-home .sghm-linkcard-image {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.sg-home .sghm-linkcard-image img {
    display: block;
    width: 100%;
    aspect-ratio: 2.08 / 1;
}

/* -------------------------
   7) おしらせ
------------------------- */
.sg-home .sghm-news {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #eaedf0;
    padding: 50px 0 50px;
}

.sg-home .sghm-newsbox {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(0, 0, 0, .35);
}

.sg-home .sghm-newsrow {
    display: grid;
    grid-template-columns: 150px 150px 1fr;
    gap: 20px;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px dotted rgba(0, 0, 0, .35);
}
.sg-home .sghm-newsrow:hover,
.sg-home .sghm-newsrow:focus {
    background-color: #fff;
}

.sg-home .sghm-newsrow:first-child {
    border-top: none;
}

.sg-home .sghm-newstag {
    display: inline-flex;
    justify-content: center;
    letter-spacing: .06em;
    white-space: nowrap;
    background-color: #eaedf0;
    padding: 5px 8px;
}

.sg-home .sghm-newstag:hover,
.sg-home .sghm-newstag:focus {
    background-color: #fff;
}

.sg-home .sghm-newsdate {
    letter-spacing: .06em;
}

.sg-home .sghm-newstitle {
    color: #000;
    text-decoration: none;
    line-height: 1.5;
}

.sg-home .sghm-news-cta {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    margin-top: 20px;
}

/* -------------------------
   8) おすすめ記事
------------------------- */
.sg-home .sghm-picks {
    background: #fff;
    padding: 56px 0 66px;
}

.sg-home .sghm-picks-grid {
    display: block;
}

.sg-home .sghm-recommend-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sg-home .sghm-recommend-card {
    min-width: 0;
}

.sg-home .sghm-recommend-card-link {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    color: #000;
    text-decoration: none;
    background: #fff;
}

.sg-home .sghm-recommend-card-fig {
    margin: 0;
    overflow: hidden;
    background: #f3f3f3;
}

.sg-home .sghm-recommend-card-img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 2.5;
    object-fit: cover;
    transition: transform .25s ease;
}

.sg-home .sghm-recommend-card-img--ph {
    width: 100%;
    aspect-ratio: 4 / 2.5;
    background: #e5e5e5;
}

.sg-home .sghm-recommend-card-body {
    padding: 12px 0 0;
}

.sg-home .sghm-recommend-card-date {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    color: rgba(0, 0, 0, .7);
    margin: 0 0 8px;
}

.sg-home .sghm-recommend-card-title {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: .05em;
    margin: 0;
}

.sg-home .sghm-picks-cta {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    margin-top: 20px;
}

/* -------------------------
   9) おすすめ動画（グレー背景フル幅）
------------------------- */
.sg-home .sghm-videos {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #eaedf0;
    padding: 50px 0 70px;
}

.sg-home .sghm-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.sg-home .sghm-vcard {
    display: grid;
    text-decoration: none;
    color: #000;
}

.sg-home .sghm-vthumb {
    position: relative;
    display: block;
    overflow: hidden;
}

.sg-home .sghm-vthumb img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.sg-home .sghm-vttl {
    letter-spacing: .08em;
    line-height: 1.6;
    padding: 10px 0 20px;
}

/* SNSリンク：右寄せ＋横並び */
.sg-home .sghm-videos-cta {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: top;
    gap: 10px;
    margin-top: 20px;
}

/* 1つのSNSリンク（アイコン＋ラベル）を縦に積む */
.sg-home .sghm-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-width: 40px;
    gap: 5px;
}

/* 画像サイズ */
.sg-home .sghm-social-link img {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 3px;
}

/* ラベル */
.sg-home .sghm-social-label {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: -.1em;
    white-space: nowrap;
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 900px) {
    .sg-home .sghm-strong-grid {
        grid-template-columns: 1fr;
    }

    .sg-home .sghm-works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "w1 w3"
            "w2 w4"
            "w5 w6";
    }

    .sg-home .sghm-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-home .sghm-newsrow {
        grid-template-columns: 120px 100px 1fr;
    }

    .sg-home .sghm-newsbtn {
        display: none;
    }

    .sg-home .sghm-recommend-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-home .sghm-videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .sg-home .sghm-message {
        padding: 42px 0 46px;
    }

    .sg-home .sghm-strong {
        padding: 46px 0;
    }

    .sg-home .sghm-works {
        padding: 46px 0 52px;
    }

    .sg-home .sghm-shop {
        padding: 44px 0 52px;
    }

    .sg-home .sghm-shop-grid {
        grid-template-columns: 1fr;
    }

    .sg-home .sghm-recommend-list {
        grid-template-columns: 1fr;
    }

    .sg-home .sghm-videos-grid {
        grid-template-columns: 1fr;
    }

    .sg-home .sghm-newsrow {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }

    .sg-home .sghm-recommend-card-title {
        font-size: 17px;
    }

    .sg-home .sghm-recommend-card-body {
        padding-top: 10px;
    }
}