@charset "utf-8";

.recruitChildMv--crosstalk {
    background-image: url(../img/recruit/crosstalk/crosstalk_mv.jpg);
}

/* =========================
   Crosstalk common
========================= */
.crosstalk-page {
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    overflow: hidden;
}

.crosstalk-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.sp-only {
    display: none;
}

/* =========================
   Intro / Member
========================= */
.crosstalk-intro {
    padding: 90px 0 110px;
    background: linear-gradient(120deg, #0078c9 0%, #214ec8 48%, #82418d 100%);
}

.crosstalk-heading {
    text-align: center;
    margin-bottom: 80px;
}

.crosstalk-heading h1 {
    font-size: 37px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.45;
    margin: 0 0 55px;
}

.crosstalk-heading p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 2;
    margin: 0;
}

.member-block h2 {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
}

.member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.member-img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
    margin-bottom: 24px;
}

.member-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-body {
    padding: 0 15px;
}

.member-name {
    display: inline-block;
    background: #fff;
    color: #2750DF;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 6px 8px;
    margin-bottom: 14px;
}

.member-position {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}

.member-text {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.08em;
    margin: 0;
}

/* =========================
   Photo
========================= */
.crosstalk-photo {
    width: 100%;
}

.crosstalk-photo img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================
   Talk section
========================= */
.talk-section {
    padding: 82px 0 160px;
    color: #2750DF;
}

.talk-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.talk-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 100px 0 80px;
    position: relative;
}

.talk-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #2750DF;
    margin: 30px auto 0;
}

.talk-block {
    margin: 0 auto;
}

.talk-question {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0 0 65px;
}

.talk-item {
    display: grid;
    grid-template-columns: 200px minmax(0, 680px) 200px;
    align-items: center;
    column-gap: 60px;
    margin-bottom: 50px;
}

.talk-item:last-child {
    margin-bottom: 0;
}

.talk-item.left .talk-icon {
    grid-column: 1;
    justify-self: center;
}

.talk-item.left .talk-balloon {
    grid-column: 2;
}

.talk-item.right .talk-balloon {
    grid-column: 2;
}

.talk-item.right .talk-icon {
    grid-column: 3;
    justify-self: center;
}

.talk-icon {
    width: 200px;
    text-align: center;
}

.talk-icon img {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.talk-icon span {
    display: block;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
}

.talk-balloon {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 7px;
    padding: 30px 35px 35px;
    color: #1F3170;
}

.talk-balloon::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.talk-item.left .talk-balloon::before {
    left: -28px;
    border-width: 15px 30px 15px 0;
    border-color: transparent #fff transparent transparent;
}

.talk-item.right .talk-balloon::before {
    right: -28px;
    border-width: 15px 0 15px 30px;
    border-color: transparent transparent transparent #fff;
}

.talk-balloon p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2.1;
    letter-spacing: 0.1em;
    margin: 0;
}

/* =========================
   Responsive
========================= */
@media screen and (max-width: 900px) {
    .crosstalk-intro {
        padding: 64px 0 80px;
    }

    .crosstalk-heading {
        margin-bottom: 56px;
    }

    .member-list {
        gap: 24px;
    }

    .member-name {
        font-size: 22px;
    }

    .member-position {
        font-size: 14px;
    }

    .member-text {
        font-size: 13px;
    }

    .talk-item {
        grid-template-columns: 120px minmax(0, 1fr) 120px;
        column-gap: 24px;
    }

    .talk-icon {
        width: 120px;
    }

    .talk-icon img {
        width: 120px;
        height: 120px;
    }

    .talk-icon span {
        font-size: 19px;
    }
}

@media screen and (max-width: 767px) {
    .sp-only {
        display: block;
    }

    .crosstalk-inner,
    .talk-inner {
        width: min(100% - 32px, 520px);
    }

    .crosstalk-intro {
        padding: 48px 0 64px;
    }

    .crosstalk-heading {
        margin-bottom: 46px;
    }

    .crosstalk-heading h1 {
        font-size: 24px;
        text-align: left;
        margin-bottom: 28px;
    }

    .crosstalk-heading p {
        font-size: 13px;
        text-align: left;
        line-height: 1.9;
    }

    .member-block h2 {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .member-list {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .member-img {
        margin-bottom: 18px;
    }

    .member-name {
        font-size: 24px;
    }

    .member-position {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .member-text {
        font-size: 13px;
        line-height: 1.9;
    }

    .talk-section {
        padding: 56px 0 72px;
    }

    .talk-title {
        font-size: 20px;
        margin: 0 0 48px;
    }

    .talk-title::after {
        width: 70px;
        height: 3px;
        margin: 15px auto 0;
    }

    .talk-question {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    .talk-item,
    .talk-item.left,
    .talk-item.right {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .talk-item.left {
        align-items: flex-start;
    }

    .talk-item.right {
        align-items: flex-end;
    }

    .talk-icon {
        order: 1;
        width: 100px;
        text-align: center;
    }

    .talk-icon img {
        width: 90px;
        height: 90px;
        margin: 0 auto 10px;
    }

    .talk-icon span {
        font-size: 17px;
    }

    .talk-balloon {
        order: 2;
        width: 100%;
        padding: 18px 20px;
    }

    .talk-balloon::before {
        display: none;
    }

    .talk-balloon p {
        font-size: 13px;
        line-height: 1.9;
    }
	
	.recruitChildMv--crosstalk {
		background-position: 35% center!important;
	}
	
}