@charset "UTF-8";

#top-area {
    position: relative;
    z-index: 0;
    margin: 0 0 80px;
    background: #DCDEE3;
    overflow-x: clip;
}

#top-area>.inner {
    width: 100%;
    max-width: none;
    padding-bottom: 80px;
}

#top-area .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: none;
}

#top-area .bg-pc {
    position: fixed;
    inset: 0 0 auto;
    display: flex;
    justify-content: center;
    transform: scale(1.1);
    transition: transform 2s 0s cubic-bezier(.2, .5, .35, 1);
}

.loaded #top-area .bg-pc {
    transform: scale(1.0);
}

#top-area .bg-cross {
    position: fixed;
    top: 30px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
    height: 100vh;
    aspect-ratio: 1;
    --line-thickness: 6px;
}

#top-area .bg-cross::before,
#top-area .bg-cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% * pow(2, .5));
    height: var(--line-thickness);
    background: #ffffff;
}

#top-area .bg-cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#top-area .bg-cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#top-area .bg-pc>.inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
    min-width: 1280px;
    max-width: none;
}

#top-area .bg-img {
    display: flex;
    width: 32%;
    --img-position: top center;
}

#top-area .bg-img picture {
    display: contents;
}

#top-area .bg-img img {
    width: 100%;
    height: 100%;
    object-position: var(--img-position);
    object-fit: cover;
}

#top-area .bg-img.left {
    justify-content: right;
    --img-position: top right;
}

#top-area .bg-img.right {
    justify-content: left;
    --img-position: top left;
}

.kv-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    height: calc(100vh - 60px);
    min-height: 720px;
}

.kv-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.kv-portrait-sp {
    display: none;
}

.kv-name {
    display: grid;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    opacity: 0;
    transform: translate(0, 8px);
    transition: opacity .5s 1.2s, transform .5s 1.2s;
}

.loaded .kv-name {
    color: #262626;
    opacity: 1;
    transform: none;
}

.kv-name .post {
    margin: 0 0 .3em;
    font-size: 1.6rem;
    font-weight: 500;
}

.kv-name .name {
    line-height: 1.2;
    font-size: 3.2rem;
}

.kv-copy {
    position: relative;
    z-index: 0;
    width: 112px;
    padding: 10px;
}

.kv-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #262626;
}

.kv-copy .caret {
    position: relative;
    display: block;
    width: 100%;
    opacity: 1;
    transition: opacity .25s .875s;
}

.kv-copy .caret::before {
    content: "";
    position: absolute;
    inset: 0 -6px;
    height: 6px;
    background: #ffffff;
}

.loaded .kv-copy .caret {
    opacity: 0;
}

.kv-copy .kv-copy {
    width: 100%;
}

.kv-copy .charactor {
    display: block;
    opacity: 0;
}

.kv-copy .charactor img {
    width: 100%;
    height: auto;
}

.loaded .kv-copy .charactor {
    opacity: 1;
    animation: kv-copy-charactor-show .25s calc(.075s * var(--charactor-index) + .125s) 1 normal both linear;
}

@keyframes kv-copy-charactor-show {
    0% {
        height: 0;
        opacity: 0;
    }

    1% {
        height: auto;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

#interview-intro {
    display: flex;
    justify-content: center;
    align-self: stretch;
    padding: 110px 0;
}

#interview-intro .intro-text {
    display: grid;
    gap: 1.8em;
    width: 50%;
    min-width: 440px;
    text-align: center;
    line-height: 2.3;
    font-size: 1.8rem;
    word-break: keep-all;
    font-weight: 600;
    color: #262626;
}

.interview-block {
    padding: 80px 15px;
    overflow-x: clip;
    --content-horizontal-offset: 120px;
}

.interview-block .inner {
    display: grid;
    justify-content: center;
}

.interview-block .section-heading {
    width: 100%;
}

.interview-block.align-left .inner {
    padding-right: var(--content-horizontal-offset);
}

.interview-block.align-right .inner {
    padding-left: var(--content-horizontal-offset);
}

.interview-block .section-heading {
    justify-self: flex-end;
    margin-left: 0;
    margin-right: 0;
}

.interview-block:has(.interview-content.direction-reverse) .section-heading {
    justify-self: flex-start;
}

.interview-content {
    display: flex;
    align-items: flex-start;
    gap: 60px 40px;
    width: 100%;
    max-width: 1080px;
}

.interview-block.wide .interview-content {
    flex-direction: column;
}

.interview-block.wide .section-heading {
    justify-self: center;
}

.interview-content.direction-reverse {
    flex-direction: row-reverse;
}

.interview-block-padding {
    height: 80px;
}

.interview-text {
    flex: 3;
    display: grid;
    gap: 1.5em;
    line-height: 2;
}

.interview-img {
    flex: 4;
}

.interview-img.wide {
    width: 100%;
}

.interview-img picture {
    display: contents;
}

.interview-img img {
    width: 100%;
    height: auto;
}

.cta-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.cta-line h3 {
    font-size: 3.0rem;
    color: #011540;
    background: #FFFFFF;
    width: 100%;
    padding: 3px 5px;
    margin-bottom: 30px;
    text-align: center;
}

.cta-line .btns {
    width: 100%;
}

.cta-line .btns>.flexBlock {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: calc(50% - 15px);
}

.cta-line .btns>.flexBlock>p {
    margin-bottom: 15px;
    font-size: 2.0rem;
}

.cta-line .btns>.flexBlock>.btn {
    width: 100%;
}

.cta-line .btns>.flexBlock>.btn>span>.bold {
    width: 100%;
    text-align: center;
    padding-left: 70px;
    padding-right: 20px;
}

.cta-line .btns>.flexBlock:nth-child(1)>.btn {
    margin: 0;
}

.cta-line-btn .icon {
    width: 60px;
    height: 60px;
    left: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.cta-line-btn .icon img {
    width: 100%;
    height: auto;
}

.cta-line-btn[target="_blank"]::after {
    display: none;
}


@media screen and (max-width: 1200px) {
    .interview-block {
        --content-horizontal-offset: 40px;
    }

    .interview-content {
        gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .cta-line .btns>.flexBlock>.btn>span>.bold {
        padding-left: 60px;
        padding-right: 20px;
    }

    .cta-line .btns {
        flex-direction: column;
        align-items: center;
    }

    .cta-line .btns>.flexBlock {
        width: 100%;
        max-width: 320px;
    }

    .cta-line-btn .icon {
        width: 40px;
        height: 40px;
    }

    .cta-line .btns>.flexBlock:nth-child(1) {
        margin-bottom: 30px;
    }

    .cta-line .btns>.flexBlock>p {
        font-size: 1.8rem;
    }

    .cta-line h3 {
        font-size: 2.4rem;
        max-width: 360px;
        line-height: 1.6;
        padding: 5px;
    }

    .interview-block.wide .inner {
        display: block;
    }

    #top-area {
        padding-top: 30px;
    }

    #top-area .bg-pc {
        display: none;
    }

    #top-area .inner {
        padding-bottom: 70px;
    }

    #top-area .bg-cross {
        position: absolute;
        height: 100vw;
        top: 0;
        --line-thickness: 4px;
    }

    .kv-content {
        height: auto;
        display: grid;
        grid-template-columns: 2fr 1fr 2fr;
        grid-template-rows: auto auto;
        justify-content: space-between;
        align-items: center;
        justify-items: center;
        gap: 40px 24px;
        min-height: 0;
    }

    .kv-copy {
        width: 55px;
        padding: 4px;
    }

    .kv-copy .caret::before {
        height: 2px;
    }

    .kv-left,
    .kv-right {
        display: grid;
        grid-row: span 2;
        grid-template-rows: subgrid;
        width: 100%;
    }

    .kv-center {
        align-self: stretch;
    }

    .kv-portrait-sp {
        display: block;
        width: 100%;
        transform: scale(1.05);
        --img-position: top center;
        transition: transform 2s 0s cubic-bezier(.2, .5, .35, 1);
    }

    .kv-portrait-sp picture {
        display: contents;
    }

    .kv-portrait-sp img {
        width: 100%;
        height: auto;
        min-height: 360px;
        object-fit: cover;
        object-position: var(--img-position);
    }

    .loaded .kv-portrait-sp {
        transform: none;
    }

    .kv-left .kv-portrait-sp {
        --img-position: top right;
    }

    .kv-right .kv-portrait-sp {
        --img-position: top left;
    }

    .kv-name .post {
        font-size: 1.4rem;
    }

    .kv-name .name {
        font-size: 2.4rem;
    }

    #interview-intro {
        padding: 40px 0;
    }

    #interview-intro .intro-text {
        width: 100%;
        min-width: 0;
        padding: 0 15px;
        text-align: left;
        line-height: 1.8;
        font-size: 1.6rem;
        word-break: normal;
        opacity: 0;
        transform: translate(0, 16px);
        transition: opacity .75s 1.25s, transform .75s 1.25s;
    }

    .loaded #interview-intro .intro-text {
        opacity: 1;
        transform: none;
    }

    #interview-intro .intro-text wbr {
        display: inline-block;
    }

    .interview-block {
        padding: 30px 15px;
        --content-horizontal-offset: 0;
    }

    .interview-content,
    .interview-content.direction-reverse {
        flex-direction: column;
    }


    .interview-text {
        line-height: 1.8;
    }

    .interview-block-padding {
        height: 50px;
    }

    .interview-img.wide {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        display: flex;
        justify-content: center;
    }

    .cta-line {
        padding: 64px 0;
    }
}