@charset "UTF-8";

/* ---------------------
command
--------------------- */
.breadcrumbs {
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .breadcrumbs {
        margin-top: 8rem;
    }
}

.page-hero {
    width: 100%;
    position: relative;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    width: calc(100% - 8vw);
    height: 100%;
    margin: 0 auto;
    border-left: solid 1px var(--c-border);
    border-right: solid 1px var(--c-border);
}

@media (min-width: 1024px) {
    .breadcrumbs {
        margin-top: 12rem;
    }
}


/* ---------------------
page-head
--------------------- */
.page-head {
    padding: 2.5rem 10vw;
    gap: 10px 64px;
    border-bottom: solid 1px var(--c-border);
}

.page-head .label {
    width: 100%;
    padding: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
    background: var(--c-gry_bg);
}

.page-head .desc {
    line-height: 2;
}

@media (min-width: 768px) {
    .page-head {
        padding: 4rem 10vw;
    }

    .page-head .label {
        width: 25%;
    }

    .page-head .desc {
        width: calc(75% - 64px);
    }
}

/* ---------------------
profile-wrap
--------------------- */
.profile-wrap {
    border-bottom: solid 1px var(--c-border);
    background: var(--c-gry_bg);
    padding: 0 4vw;
    margin-bottom: 4rem;
    position: relative;
    z-index: -2;
}

.profile-grid {
    padding: 0;
    margin: 0;
    list-style: none;
}

.profile-item {
    width: 100%;
    padding: 1rem;
    border-right: solid 1px var(--c-border);
    gap: 0 53px;
    align-items: center;
}

.profile-item:nth-child(1) {
    border-bottom: solid 1px var(--c-border);
}

.profile-item .txt {
    order: 2;
}

.profile-item .txt .name {
    font-size: 20px;
    letter-spacing: .05em;
    text-align: center;
}

.profile-item .txt .name .blue {
    color: var(--blue);
    font-size: 15px;
    margin-right: 1rem;
}

.profile-item .txt .com {
    font-size: 14px;
}

.profile-item .img {
    max-width: 200px;
    margin: 0 auto;
    order: 1;
}

@media (min-width: 768px) {
    .profile-item {
        gap: 20px 53px;
        padding: 1rem 1rem 1rem 3rem;
    }

    .profile-item .txt {
        width: calc(70% - 53px);
        order: 1;
    }

    .profile-item .txt .name {
        text-align: left;
    }

    .profile-item .img {
        max-width: none;
        width: 30%;
        order: 2;
    }
}

@media (min-width: 1024px) {
    .profile-item {
        width: 50%;
    }

    .profile-item:nth-child(1) {
        border-bottom: none;
    }
}


/* ---------------------
sec-interview
--------------------- */
.sec-interview {
    border-top: solid 1px var(--c-border);
    padding: 0 4vw;
}

/* chapter-title */
.sec-interview .chapter-title {
    padding: 2rem 5vw;
    border-bottom: solid 1px var(--c-border);
}

.sec-interview .chapter-title .en {
    color: var(--blue);
    letter-spacing: .05em;
    font-weight: 600;
    font-size: clamp(16px, 2.8vw, 24px);
}

.sec-interview .chapter-title .title-h3 {
    margin: 0;
    letter-spacing: .05em;
    font-weight: 600;
    font-size: clamp(24px, 3.8vw, 44px);
}

/* chapter-detail */
.chapter-detail {
    width: 100%;
    margin: 0 0 0 auto;
    border-left: solid 1px var(--c-border);
}

.chapter-detail .inner {
    padding: 1rem;
}

.chapter-detail .img {
    margin-bottom: 3rem;
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
}

/* interview-grid */
.interview-grid .interview-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    margin: 0 0 40px;
}

.interview-grid .interview-item::before {
    display: inline-block;
    width: 91px;
    padding: 1px;
    text-align: center;
    font-size: 13px;
    background: var(--blue);
    color: #fff;
}

.interview-grid .interview-item.er::before {
    content: "山川";
}

.interview-grid .interview-item.ee::before {
    content: "松村社長";
}

/* chapter03 */
.chapter03 {
    border-bottom: solid 1px var(--c-border);
}

/* chapter04 */
.chapter04 {
    margin-top: 4rem;
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
}

@media (min-width: 768px) {

    /* chapter-title */
    .sec-interview .chapter-title {
        padding: 3rem 5vw;
    }

    /* chapter-detail */
    .chapter-detail {
        width: 90%;
    }

    .chapter-detail .inner {
        padding: 2rem;
    }

    /* interview-grid */
    .interview-grid .interview-item {
        display: block;
        padding-left: 110px;
        margin: 0 0 40px;
    }

    .interview-grid .interview-item::before {
        position: absolute;
        left: 0;
        top: 2px;
    }
}

@media (min-width: 1024px) {

    /* chapter-detail */
    .chapter-detail {
        width: 70%;
    }

    .chapter-detail .inner {
        padding: 4rem;
    }

    .chapter-detail .img {
        margin-bottom: 4rem;
    }
}