@charset "utf-8";


/* --------------------------------------------------------- */
/* Chapter section outline */

.chapter-section {
    position: relative;
    max-width: 1580px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 80px;
}

.chapter-section:before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 3px;

    background-image: var(--svg-v-line-bk);
    opacity: 0.5;
}

.chapter-section:first-of-type:before {
    display: none;
}

.chapter-section:first-of-type {
    padding-top: 40px;
}

.chapter-section-header {
    width: calc(100% - 10px);
    margin: 0 auto 70px auto;
    box-sizing: border-box;
    text-align: center;
}

.chapter-section-header.-col2 {}

.chapter-section-header.-col2>* {
    margin-top: 60px;
}

.chapter-section-header.-col2>*:first-child {
    margin-top: 0;
}

.chapter-section-header__ttl {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 0.15em;
}

.chapter-section-header__more {
    display: none;
}

.chapter-section-header .more-btn__label {}

.chapter-section-body {}

@media print,
screen and (min-width: 768px) {
    .chapter-section {
        padding-top: 80px;
        margin-bottom: 80px;
    }

    .chapter-section-header {
        width: calc(100% - 100px);
    }
}

@media screen and (min-width: 1280px) {
    .chapter-section {}

    .chapter-section-header {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
        width: calc(100% - 180px);
        text-align: left;
    }

    .chapter-section-header__more {
        display: block;
    }

    .chapter-section-header>* {
        margin-bottom: 0;
    }

    .chapter-section-header.-col2 {}

    .chapter-section-header.-col2>* {
        width: calc(50% - 20px);
    }

    .chapter-section-header.-col2>* {
        margin-top: 40px;
    }

    .chapter-section-header.-col2>*:first-child {
        margin-top: 0;
    }

    .chapter-section-header.-col2>*:nth-child(even) {
        margin-top: 120px;
    }

    .chapter-section-header.-col2>*:nth-child(2) {
        margin-top: 80px;
    }

    .chapter-section-header.-col2 .extra__body-outer {
        height: 280px;
    }

    .chapter-section-header__ttl {
        font-size: 2.8rem;
        transform: scaleY(0.95) !important;
        transform-origin: left;
        letter-spacing: 0.15em;
    }
}

@media screen and (min-width: 1440px) {

    .chapter-section-header.-col2>* {
        width: calc(50% - 40px);
    }

    .chapter-section-header.-col2 .extra__body-outer {
        height: 260px;
    }

}



/* --------------------------------------------------------- */
/* Chapter contents */

.extra-outer {
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

.extra {
    width: 100%;
    text-align: left;
}

@media screen and (min-width: 1280px) {

    .pick-up-contents {
        position: relative;
        padding-top: 100px;
    }

    .pick-up-contents::before {
        content: "";
        position: absolute;
        top: 0;
        display: block;
        width: 100%;
        height: 3px;

        background-image: var(--svg-v-line-bk);
        opacity: 0.5;
    }

    .extra-outer {
        margin-bottom: 140px;
    }

    .extra {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
}


.extra__ttl {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: 0.15em;
}

@media screen and (min-width: 1280px) {

    /* 
    chromeだけ 縦書中に position + padding の同要素指定にバグがある。
    配置とpaddingは別要素に指定する必要がある。
    */

    .extra__ttl-outer {
        writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: normal;
        position: absolute;
        right: -40px;
        top: -20px;
        bottom: auto;
        left: auto;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
    }

    .extra__ttl {
        position: absolute;
        left: auto;
        width: auto;
        background-color: #f9faf5;
        border-radius: 0 0 0 20px;
        padding: 0 30px 10px;
        /* height: auto; */
        margin: 0;
        font-size: 28px;
        letter-spacing: 0.05em;
    }

    .extra__ttl-inner {
        display: inline-block;
        height: calc(100% / 0.99);
    }

    .extra__ttl-text-transform {
        display: inline-block;
        transform: scaleY(0.9);
        transform-origin: 0 0;
    }

    .extra__ttl::before,
    .extra__ttl::after {
        position: absolute;
        display: block;
        top: 0;
        width: 30px;
        height: 30px;
        content: "";
        background-image: var(--svg-round-out-corners-RT-wt);
        background-size: cover;
    }

    .extra__ttl::before {
        left: -30px;
        top: 20px;
        bottom: auto;
    }

    .extra__ttl::after {
        right: 40px;
        top: auto;
        bottom: -30px;
    }

    .extra__ttl .in-corner {
        pointer-events: none;
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .extra__ttl .in-corner::before {
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        width: 20px;
        height: 20px;
        content: "";
        background-image: var(--svg-round-in-corners-RT-wt);
        background-size: cover;
    }
}


.extra__anchor {
    display: block;
    font-weight: bolder;
}




.extra__img {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
}

.extra__img .img-in-corner::before,
.extra__img .img-in-corner::after {
    width: 30px;
    height: 30px;
}

.extra__img-inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.extra__img-inner.current {
    opacity: 1;
}

.extra__img-inner:first-child {
    position: relative;
}

.extra__img img {
    display: block;
    width: 100%;
    /* 	height: 45vh;
    min-height: 260px; */
    object-fit: cover;
}




@media screen and (min-width: 768px) {
    .extra__img img {
        height: auto;
    }

    .extra__img img {
        display: block;
        width: 100%;
        height: 45vh;
        min-height: 260px;
        object-fit: cover;
    }



}

@media screen and (min-width: 1280px) {
    .extra__img {
        width: calc(100% - 160px);
        transform: translateX(0);
        margin: 0;
        border-radius: 5px;
    }

    .extra__img img {
        border-radius: 5px;
        object-fit: cover;
        width: 100%;
        min-height: 500px;
    }
}



.extra__video {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
}

.extra__video .img-in-corner::before,
.extra__video .img-in-corner::after {
    width: 30px;
    height: 30px;
}

.extra__video img {
    display: block;
    width: 100%;
    height: 45vh;
    min-height: 260px;
}

.extra__video-inner {
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
}

.extra__video .main-player {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 300%;
    height: 100%;
    left: -100%;
    /*opacity: 0;*/
    transition: opacity 1s ease;
}

.extra__video.video_playing .main-player {
    opacity: 1;
}


@media screen and (min-width: 768px) {
    .extra__video img {
        height: auto;
    }
}

@media screen and (min-width: 1280px) {
    .extra__video {
        width: calc(100% - 160px);
        transform: translateX(0);
        margin: 0;
        border-radius: 10px;
    }

    .extra__video img {
        border-radius: 5px;
        object-fit: cover;
        width: 100%;
        min-height: 500px;
    }
}


/* ------------------------- */

.extra.carrers .extra__video {
    background-image: url(/assets/img/careers/main.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ------------------------- */



.extra__body {
    flex-direction: column;
    align-items: flex-start;
}

.extra__body>* {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .extra__body {
        width: 100%;
    }
}

@media screen and (min-width: 1280px) {

    /* 
    chromeだけ 縦書中に position + padding の同要素指定にバグがある。
    配置とpaddingは別要素に指定する必要がある。
    */

    .extra__body-outer {
        position: absolute;
        top: auto;
        right: auto;
        left: 0;
        bottom: -1px;
        width: auto;
        height: 360px;
        margin: 0;
    }

    .extra__body {
        position: relative;
        width: auto;
        margin: 0;
        padding: 30px 30px 30px 30px;
        box-sizing: border-box;
        background-color: #f9faf5;
        border-radius: 0 15px 0 0;
        writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: normal;
        text-align: justify;
        letter-spacing: 0.05em;
    }

    .extra__body::before,
    .extra__body::after {
        position: absolute;
        display: block;
        top: 0;
        width: 30px;
        height: 30px;
        content: "";
        background-image: var(--svg-round-out-corners-LB-wt);
        background-size: cover;
    }

    .extra__body::before {
        left: 160px;
        top: -30px;
        bottom: auto;
    }

    .extra__body::after {
        right: -30px;
        top: auto;
        bottom: 0px;
    }


    .extra__body .in-corner {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .extra__body .in-corner::before {
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        width: 20px;
        height: 20px;
        content: "";
        background-image: var(--svg-round-in-corners-LB-wt);
        background-size: cover;
    }

    .extra__body>* {
        width: auto;
    }
}



.extra__des {
    margin: 0 0 20px;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}

@media screen and (min-width: 1280px) {
    .extra__des {
        margin: 0 0 0 00px;
        transform: scaleY(0.9);
        transform-origin: 0 0;
        height: calc(100% / 0.9);
        font-size: 16px;
        line-height: 1.9;
    }
}



.extra-chapter__list {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.extra-chapter__list.-sub {
    display: none;
}

.extra-chapter__list li {
    margin-bottom: 0.75em;
}

.extra-chapter__list li:last-child {
    margin-bottom: 0;
}


@media screen and (min-width: 1280px) {
    .extra-chapter__list {
        display: block;
        margin: 0;
        text-align: right;
    }

    .extra-chapter__list.-sub {
        display: block;
        text-align: right;
    }

    .extra-chapter__list li {
        display: inline-block;
        margin-right: 30px;
        margin: 0 15px 15px 0;
    }

    .extra-chapter__list.-sub li {
        margin: 15px 15px 0 0;
    }

}

/* ----------------------------------------------------------------------- */
/* type : more-btn */
/* ----------------------------------------------------------------------- */


.more-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 3px 0;
}

.more-btn__icon {
    position: relative;
    overflow: hidden;
}

.more-btn__icon:first-child {
    left: -3px;
}

.more-btn__label {
    margin-right: 10px;
}

.more-btn__label:last-child {
    margin-right: 0;
}

.more-btn::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    content: "";
}


@media screen and (min-width: 1280px) {

    .-vert .more-btn {
        position: relative;
        min-width: 40px;
        min-height: 40px;
        padding: 15px 5px;
        border: none;
        border-radius: 6px;
        box-sizing: border-box;
        font-weight: 500;
        text-align: center;
        text-decoration: none !important;
        white-space: nowrap;
        transition: 0.2s cubic-bezier(.65, .05, .36, 1);
        transition-property: padding, color, background-color;
        font-size: 90%;
    }

    .-vert .more-btn::before {
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border: 1px solid currentColor;
        background-color: transparent;
        opacity: 0.5;
        box-sizing: border-box;
        content: "";
        border-radius: 6px;
        transition: 0.2s cubic-bezier(.65, .05, .36, 1);
        transition-property: opacity, border-color;
    }

    .-vert .more-btn__label {
        margin-right: 0;
    }

    .-vert .more-btn .more-btn__icon {
        position: absolute;
        top: auto;
        bottom: 12px;
        left: 0;
        right: 0;
        display: block;
        width: 16px;
        height: 16px;
        margin: auto;
        opacity: 0;
        transition: opacity 0.3s cubic-bezier(.65, .05, .36, 1);

    }

    .-vert .more-btn .more-btn__icon svg {
        width: 16px;
        height: 16px;
        stroke-width: 1.8;
    }

    .-vert .more-btn-trgr:hover+* .more-btn,
    .-vert .more-btn:hover {
        color: #fff;
        background-color: var(--color-a-link);
        padding-bottom: 36px;
    }

    .-vert .more-btn-trgr:hover+* .more-btn .more-btn__icon,
    .-vert .more-btn:hover .more-btn__icon {
        opacity: 1;
        animation: more-btn-arrow-in 0.3s cubic-bezier(.65, .05, .36, 1);
    }

    .-vert .more-btn-trgr:hover+* .more-btn::before,
    .-vert .more-btn:hover::before {
        opacity: 1;
        border-color: var(--color-a-link);
    }

    .-vert .more-btn__label {
        margin-right: 0;
    }


    /* contrast-mode */

    .contrast-mode--normal .-vert .more-btn {
        color: inherit;
    }

    .contrast-mode--normal .-vert .more-btn-trgr:hover+* .more-btn,
    .contrast-mode--normal .-vert .more-btn:hover {
        color: #fff;
        background-color: rgb(156, 154, 146);
    }

    .contrast-mode--normal .-vert .more-btn-trgr:hover+* .more-btn::before,
    .contrast-mode--normal .-vert .more-btn:hover::before {
        border-color: rgb(156, 154, 146);
    }

}


/* .txtQcds */
.txtQcds {
    float: right;
    width: 70%;
    padding: 2%;
}

.txtQcds p {
    font-size: 17px;
    line-height: 1.7;
}

.boxQcds {
    position: relative;
    margin: 2em 0;
    padding: 1.5em 1em;
    border: solid 3px #18274d;
    border-radius: 8px;
}

.boxQcds .box-title {
    position: absolute;
    display: inline-block;
    top: -18px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #f9faf5;
    color: #18274d;
    font-weight: bold;
    line-height: 1.5;
}

.boxQcds p {
    margin: 0;
    padding: 0;
}


.design08 {
    width: 99%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
}

.design08 th {
    padding: 10px;
    background: #778ca3;
    border: solid 1px #666666;
    color: #ffffff;
}

.design08 td {
    padding: 10px;
    border: solid 1px #666666;
}

.design08 td:first-child {
    background: #e9faf9;
}

.chapter-section-header p {
    /* font-size: 14px; */
    /* letter-spacing: 0.08em; */
    /* line-height: 200%; */
    text-align: left;
}



@media only screen and (max-width: 768px) {
    .boxQcds p {
        text-align: left
    }
}