/* ===== NexTALK content (mobile-first) ===== */ :root {
    --talk-red: #DF003A; /* 既存のメイン赤に合わせて調整 */
    --talk-text: ##222222;
    --talk-muted: rgba(0, 0, 0, .62);
    --talk-line: rgba(0, 0, 0, .12);
    --talk-bg: #fff;
    --talk-radius: 14px;
    --talk-max: 1080px; /* PC時の中身幅 */
}
/* HERO */
.hero {
    position: relative;
}
.hero .hero-bg {
    position: relative;
}
.hero .hero-txt {
    width: 70%;
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
}
/* container */
.talk-container {
    width: calc(100% - 28px);
    margin: 0 auto;
}
@media (min-width: 768px) {
    .talk-container {
        width: min(var(--talk-max), calc(100% - 40px));
    }
}
/* intro */
.talk-intro {
    padding: 44px 0 26px;
}
.talk-lead {
    margin: 0;
    line-height: 2.0;
    color: var(--talk-muted);
}
@media (min-width: 768px) {
    .talk-intro {
        padding: 4rem 0;
    }
    .talk-title-en {
        font-size: 32px;
    }
}
/* ===== PROFILE (スクショのレイアウトに寄せる) ===== */
/* セクション全体 */
.talk-profile {
    background: #f5f5f5;
    padding: 2rem 0; /* SP */
}
.talk-profile .talk-section-title {
    text-align: center;
    color: var(--talk-red);
    letter-spacing: .12em;
    font-weight: 600;
    margin: 0 0 26px;
}
/* 2カラム + 中央に ×（HTML変更なしで擬似要素で作る） */
.profile-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 40px 1fr; /* SPでも2カラム維持 */
    gap: 0; /* 余白はカード内で作る */
    align-items: start;
}
/* 中央の×（擬似要素） */
.profile-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    opacity: .75;
    background:
        linear-gradient(45deg, transparent 48%, #111 49%, #111 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, #222 49%, #111 51%, transparent 52%);
}
/* 左右のカードを明示的に配置（2枚前提） */
.profile-card {
    padding-top: 0; /* 既存の border-top を消したいので上書き */
    border-top: 0;
    text-align: center;
}
.profile-card:nth-child(1) {
    grid-column: 1;
}
.profile-card:nth-child(2) {
    grid-column: 3;
}
/* 肩書き */
.profile-role {
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: .10em;
}
.profile-name {
    margin: 0 0 16px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .06em;
}
.profile-body {
    margin: 0 auto;
    max-width: 14.5em; /* スクショみたいな縦長感 */
    font-size: 0.9rem;
    font-weight: 400;
    text-align: start;
    line-height: 1.8;
}
/* 余白（左右の余白を作って“中央に寄った2列”っぽく） */
.profile-card:nth-child(1) {
    padding-right: 6px;
}
.profile-card:nth-child(2) {
    padding-left: 6px;
}
/* vols */
.talk-vols {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
.talk-vols .vols-grid {
    width: 100%;
    max-width: 520px; /* SPでの見た目幅 */
    margin: 0 auto;
    justify-items: center; /* 各カードを中央に */
}
.talk-vols .vol-card {
    width: 100%;
}
.vols-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.vol-card {
    display: grid;
    gap: 8px;
    padding: 1rem;
    border: 1px solid var(--talk-line);
    text-decoration: none;
    background-color: #DF003A;
    transition: transform .2s ease, border-color .2s ease;
}
.vol-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, .22);
}
.vol-no {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #FFF;
    text-align: center;
}
.vol-ttl {
    color: #FFF;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}
.talk-part-title {
    text-align: center;
    padding: 2rem 0;
}
.talk-part-title p {
    font-size: 1.5rem;
    letter-spacing: .08em;
}
/* body blocks */
.talk-body {
    padding: 0 0 56px;
}
.talk-block {
    padding: 3rem 0;
    border-top: 1px solid var(--talk-line);
}
/* ===== talk-block-grid：1(h3) 2(text) 3(figure) 4(extra) ===== */
.talk-block-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr; /* SPは縦積み */
    grid-template-areas:
        "a" /* 1: title */
        "b" /* 2: text */
        "c" /* 3: figure */
        "d"; /* 4: extra（後から追加） */
}
/* 1〜3の割当（既存要素そのまま） */
.talk-block-grid > h3.q-title {
    grid-area: a;
    margin: 0;
}
.talk-block-grid > .talk-text {
    grid-area: b;
}
.talk-block-grid > figure.talk-figure {
    grid-area: c;
    margin: 0;
}
/* ===== PC ===== */
@media (min-width: 768px) {
    .talk-block-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        row-gap: 5rem;
        /* PC：奇数 */
        grid-template-areas:
            "a d"
            "b c";
        align-items: start;
    }
    /* 偶数（is-reverse）：左右入れ替え */
    .talk-block.is-reverse .talk-block-grid {
        grid-template-areas:
            "d a"
            "c b";
    }
}
.q-title {
    color: var(--talk-red);
    margin: 0 0 5rem;
    font-size: 1.5rem;
    line-height: 1.35;
}
.q-no {
    font-size: 4rem;
    display: block;
    color: var(--talk-red);
    letter-spacing: .15em;
    margin-bottom: 0.7rem;
}
.q-sub {
    font-size: 1.3rem;
    margin: 0 0 3rem;
}
.q-sub span {
    position: relative;
    display: inline-block;
    padding-bottom: 0.2rem;
}
.q-sub span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* テキスト幅ぴったり */
    height: 2px;
    background: var(--talk-red);
}
.question-block {
    padding: 20px 0;
}
.question-block p {
    font-size: 0.9rem;
    display: inline;
    background: linear-gradient(transparent 5%, #EFEFEF 5%);
}
.talk-dialog {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.8;
}
.talk-line {
    display: grid;
    grid-template-columns: 44px 1fr;
    padding: 10px 0;
    font-weight: 400;
}
.talk-dialog dt {
    margin: 0;
    font-weight: 700;
    color: var(--talk-red);
}
.talk-dialog dd {
    margin: 0;
}
.talk-dialog .note {
    font-size: 0.8rem;
    font-weight: 400;
    padding-top: 1rem;
}
.talk-figure {
    margin: 0;
}
.talk-figure img {
    display: block;
    width: 100%;
    height: auto;
}
.talk-figure img:nth-child(n+2) {
    margin-top: 2rem;
}
/* NEWS */
.news .inner-width {
    position: relative;
    z-index: 2;
}
.news .bg-gray-70 {
    background: rgba(230, 230, 230, 0.7);
    padding: 40px 16px;
}
.news-header {
    text-align: center;
    margin-bottom: 24px;
}
.news .section-title {
    font-family: "Outfit", sans-serif;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.1;
    font-size: 22px;
}
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 28px; /* SPは縦 */
}
.news-item a {
    display: grid;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}
.news-thumb {
    background: #fff;
}
.news-thumb img {
    width: 100%;
    height: auto;
    display: block;
}
.news-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 12px;
    align-items: start;
}
.news-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 12px;
    background: #DF003A;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.news-date {
    font-size: 12px;
    color: #777;
    justify-self: end;
}
.news-title {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}
@media (min-width: 768px) {
    /* HERO */
    .hero .hero-txt {
        width: 20%;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
    .talk-lead {
        text-align: center;
    }
    .profile-grid {
        grid-template-columns: 1fr 90px 1fr; /* PCは中央の間を広げる */
    }
    .profile-grid::after {
        top: 52%;
        width: 36px;
        height: 36px;
    }
    .profile-name {
        font-size: 1, 5rem;
        margin: 0 0 18px;
    }
    .profile-body {
        max-width: 34em; /* PCは本文を横に伸ばす */
    }
    .profile-card:nth-child(1) {
        padding-right: 26px;
    }
    .profile-card:nth-child(2) {
        padding-left: 26px;
    }
    .talk-vols .vols-grid {
        max-width: 700px; /* コンテンツ幅 */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: stretch; /* PCでは通常の横並び */
    }
    .talk-line {
        grid-template-columns: 56px 1fr;
    }
    /* NEWS */
    .news .bg-gray-70 {
        padding: 56px 56px;
    }
    .news .bg-gray-70 {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 40px;
        align-items: start;
    }
    .news-header {
        text-align: left;
        margin: 0;
        padding-top: 8px;
    }
    .news .section-title {
        font-size: 24px;
    }
    .news-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
    .news-item a {
        gap: 16px;
    }
}
@media screen and (min-width: 1600px) {
    .hero .hero-txt {
        width: 320px;
        top: 68px;
    }
}