@charset "UTF-8";

/* === メインビジュアル === */
.talk-main {
    width: 100%;
    position: relative;
    z-index: 1;
}

.talk-main .main-visual {
    width: 100%;
    position: relative;
    z-index: -1;
    overflow: hidden;
}

.talk-main .mv-content {
    position: absolute;
    bottom: 30px;
    left: 5%;
    z-index: 4;
    display: inline-block;
}

.talk-main .mv-content .wipe-group {
    position: relative;
    filter: drop-shadow(0 0 10px rgba(10, 98, 101, 0.25));
}

.talk-main .mv-content .wipe-group .wipe {
    width: 100%;
    max-width: 600px;
    padding: 30px 30px 60px;
    background: #FFF;
    position: relative;
    transition: 3s 1s;
}

.talk-main .mv-content .wipe-group .wipe .title {
    font-family: var(--en-font);
    color: #00B8FF;
    font-weight: 600;
    font-size: 16px;
}

.talk-main .mv-content .wipe-group .wipe .hero-txt {
    font-size: min(4vw, 1.6rem);
    line-height: 1.6em;
    padding-bottom: 15px;
}

.talk-main .mv-content .wipe-group .wipe .hero-txt ~ p {
    white-space: normal;
}


/* ラベル共通 */
.talk-main .name-label {
    display: flex;
    align-items: center;
}

.talk-main .name-label span:nth-child(1) {
    font-size: 1.2rem;
}

.talk-main .name-label span:nth-child(2) {
    color: var(--main-color);
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 600;
    padding-left: 15px;
}

.talk-main .job-label span:nth-child(1) {
    font-size: 0.9rem;
    color: #FFF;
    display: inline-block;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    line-height: 1.4em;
    padding: 3px 10px;
    margin-right: 15px;
}

/* 装飾（三角形）共通 */
.mv-triangle-left,
.mv-triangle-left2,
.mv-triangle-right,
.mv-triangle-right2 {
    height: 100%;
    top: 0;
    position: absolute;
    opacity: 0;
    transition: all .8s ease-out;
}

.mv-triangle-left,
.mv-triangle-left2 {
    left: -5vw;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.mv-triangle-right,
.mv-triangle-right2 {
    right: -5vw;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.mv-triangle-left {
    background: #FFF;
    width: 12vw;
    z-index: 3;
    transition-delay: .5s;
}

.mv-triangle-left2 {
    background: rgba(0, 145, 157, 0.6);
    width: 14vw;
    z-index: 2;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-right {
    background: #FFF;
    width: 12vw;
    z-index: 3;
    transition-delay: .5s;
}

.mv-triangle-right2 {
    background: rgba(32, 159, 239, 0.6);
    width: 14vw;
    z-index: 2;
    transition: all .8s .55s ease-in-out;
}

.mv-triangle-left.eon,
.mv-triangle-left2.eon {
    opacity: 1;
    left: 0;
}

.mv-triangle-right.eon,
.mv-triangle-right2.eon {
    opacity: 1;
    right: 0;
}

/* === プロフィールエリア === */
.talk-profile-wrap {
    background: #F2F6F6;
    padding: 60px 0;
    margin-bottom: 40px;
}

.talk-profile-wrap .block-title {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.talk-profile-wrap .block-title span {
    font-family: var(--en-font);
    font-size: 40px;
    font-weight: 600;
    padding-right: 15px;
}

.talk-profile-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 4%;
}

.talk-profile-wrap ul li {
    width: 22%;
    padding-bottom: 20px;
    margin-bottom: 40px;
    border-bottom: solid 1px var(--main-color);
}

.talk-profile-wrap ul li .profile-card {
    display: flex;
    justify-content: space-between;
}

.talk-profile-wrap ul li .profile-card .image,
.talk-profile-wrap ul li .profile-card .text {
    width: 48%;
}

.talk-profile-wrap ul li .profile-card .text {
    display: flex;
    align-items: center;
}

.talk-profile-wrap ul li .profile-card .text p {
    font-size: min(3vw, 1rem);
    line-height: 1.4em;
}

.talk-profile-wrap ul li .profile-card .text p span {
    font-size: min(0.85vw, 0.65rem);
    display: block;
    font-weight: 600;
    color: var(--main-color);
}

.talk-profile-wrap ul li>p {
    padding: 10px 0 0;
    font-size: min(1.3vw, 0.9rem);
    line-height: 1.6em;
}

/* === トーク内容 === */
.inner-section .section-title {
    margin-bottom: 40px;
}

.inner-section .section-title h2 {
    font-weight: 500;
    font-size: min(4vw, 1.6rem);
}

.inner-section .section-title h2 span {
    display: block;
    font-family: var(--en-font);
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
}

.talk .insert-image {
    padding: 40px 0 20px;
}

.talk-layout02 {
    padding: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.talk-layout02 .image-area,
.talk-layout02 .text-area {
    width: 48%;
}

.talk .chat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 60px;
    margin-bottom: 20px;
}

.talk .chat-row .speaker {
    width: 50px;
}

.talk .chat-row .speaker .name-tag {
    text-align: center;
    font-size: 13px;
    line-height: 1.6em;
    color: var(--main-color);
}

.talk .chat-row .text {
    width: calc(100% - 65px);
    padding: 5px 0 0;
}

/* === 固定ナビゲーション === */
.sticky-nav {
    background: #F2F6F6;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    z-index: 1000;
    position: relative;
    transition: transform 0.3s, background-color 0.3s, padding 0.3s;
    display: flex;
    justify-content: center;
}

.sticky-nav.is-fixed {
    position: fixed;
    top: var(--header-h, 0px);
    left: 0;
    right: 0;
    width: 100%;
}

.inner-menu {
    display: flex;
    align-items: center;
    width: 100%;
}

.sticky-nav .menu-ttl {
    width: 80px;
    padding: 20px 0;
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    color: #FFF;
    font-family: var(--en-font);
}

.inner-menu ul {
    display: flex;
    gap: 0 15px;
    margin: 0 20px;
    width: 100%;
}

.inner-menu ul li {
    white-space: nowrap;
    flex-shrink: 0;
}

.inner-menu ul li span {
    display: block;
    font-family: var(--en-font);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.inner-menu a {
    display: block;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.4;
    color: #333;
    transition: color 0.3s;
}

.inner-menu a.active,
.inner-menu a.active span {
    color: var(--main-color);
}

/* === レスポンシブ調整 === */

/* タブレット (1200px以下) */
@media screen and (max-width: 1200px) {
    .talk-main .mv-content {
        position: relative;
        bottom: 70px;
    }
}

/* 横スクロールナビ (1024px以下) */
@media screen and (max-width: 1024px) {
    .sticky-nav {
        justify-content: flex-start;
        padding-right: 20px;
    }

    .inner-menu {
        overflow-x: auto;
        padding: 8px 10px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .sticky-nav .menu-ttl {
        position: sticky;
        left: 0;
        width: 44px;
        z-index: 2;
    }

    .inner-menu ul {
        gap: 0 12px;
        margin: 0 5px;
    }

    .inner-menu::-webkit-scrollbar {
        height: 4px;
        display: block;
    }

    .inner-menu::-webkit-scrollbar-thumb {
        background: #cccccc;
        border-radius: 3px;
    }
}

/* スマホ (768px以下) */
@media (max-width: 768px) {
    :root {
        --header-h: 50px;
    }

    /* MV */
    .talk-main .main-visual img {
        min-height: 330px;
        object-fit: cover;
    }

    .talk01 .talk-main .main-visual img {
        object-position: 70% center;
    }

    .talk02 .talk-main .main-visual img {
        object-position: 55% center;
    }

    .talk-main .mv-content {
        position: relative;
        bottom: 20px;
        left: 0;
    }

    .talk-main .mv-content .wipe-group .wipe {
        width: 90%;
        left: 5%;
        padding: 20px;
    }

    .talk-main .mv-content .wipe-group .wipe .title {
        font-size: 13px;
    }

    .talk-main .name-label span:nth-child(1) {
        font-size: 1.1rem;
    }

    .talk-main .name-label span:nth-child(2) {
        font-size: 14px;
        padding-left: 10px;
    }

    .talk-main .job-label span:nth-child(1) {
        font-size: 0.7rem;
        padding: 3px 5px;
        margin-right: 10px;
    }

    /* プロフィール */
    .talk-profile-wrap .block-title {
        font-size: 16px;
    }

    .talk-profile-wrap .block-title span {
        font-size: 30px;
        padding-right: 10px;
    }

    .talk-profile-wrap ul {
        gap: 0 2%;
    }

    .talk-profile-wrap ul li {
        width: 48%;
        margin-bottom: 30px;
    }

    .talk-profile-wrap ul li .profile-card .image {
        width: 30%;
    }

    .talk-profile-wrap ul li .profile-card .text {
        width: 65%;
    }

    .talk-profile-wrap ul li .profile-card .text p span {
        font-size: min(2vw, 0.9rem);
    }

    .talk-profile-wrap ul li>p {
        font-size: min(2.4vw, 1rem);
    }

    /* トーク */
    .inner-section .section-title {
        margin-bottom: 30px;
    }

    .talk .insert-image {
        padding: 30px 0;
    }

    .talk-layout02 .image-area {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .talk-layout02 .text-area {
        width: 100%;
    }

    .talk .chat-row .text {
        width: calc(100% - 65px);
    }

    /* 固定ナビ */
    .sticky-nav.is-fixed {
        transform: translateY(-110%);
    }

    .sticky-nav.is-fixed.is-visible {
        transform: translateY(0);
    }
}