@media screen and (max-width:750px) {
    header {
        margin-bottom: 3vw;
    }
}

.contents {
    position: relative;
}

.contents-navi-wrp {
    display: block;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, .95);
    border-top: 2px solid;
    border-bottom: 1px solid #ccc;
}

.contents-navi {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5em 0;
}

@media screen and (max-width:767px) {
    .contents-navi {
        font-size: .8em;
        padding: .5em;
    }

    @media screen and (max-width:600px) {
        .contents-navi {
            font-size: 1.2em;
            gap: .5em 0;
        }
    }
}

.contents-navi li {
    width: 15%;
    padding: 0 5px;
    flex-grow: 1;
    border-left: 1px solid;
}

.contents-navi li:first-child {
    border-left: none;
}

@media screen and (max-width:600px) {
    .contents-navi li {
        width: 33%;
        border-left: 1px solid;
    }

    .contents-navi li:nth-child(4) {
        border-left: none;
    }
}

.contents-navi li a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 .5em;
    text-align: center;
}

.contents-navi li a.on {
    color: var(--d-green);
}

.contents-navi li.interview a.on {
    color: var(--brand-color);
    filter: saturate(110%);
    color: color-mix(in srgb, var(--brand-color) 90%, #000);
}

@media screen and (max-width:600px) {
    .contents-navi li:not(.interview) a {
        height: 100%;
        padding: 0 .5em;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        gap: 1em;
    }

    .contents-navi li.interview a {
        /* padding: 0 .25em; */
        text-align: left;

    }
}

.contents-navi li .en-num {
    font-size: 1.8em;
    line-height: 1;
}

@media screen and (max-width:600px) {
    .contents-navi li .en-num {
        width: 1.2em;
    }
}

.contents-navi li.interview .en-num {
    font-size: 1.6em;
}

@media screen and (max-width:600px) {
    .contents-navi li.interview .en-num {
        font-size: 1.4em;
    }
}

.contents-navi li .page-title {
    margin-top: .5em;
    font-size: .9em;
}

.inner {
    width: 100%;
    max-width: var(--main_w);
    margin: 0 auto;
}

.btn-wrp {
    text-align: center;
}

.btn {
    display: inline-block;
    width: fit-content;
    padding: .5em 3em;
    position: relative;
    border: 1px solid;
    margin: 1em auto;
}

.btn.btn-more {
    margin: 2em auto 1em;
}

.btn.btn-more::after,
.btn.btn-more::before {
    content: '';
    border-bottom: 1px solid #222;
    position: absolute;
    top: 50%;
    right: 1em;
    height: 0;

}

.btn.btn-more::after {
    width: 1em;
}

.btn.btn-more::before {
    width: .5em;
    transform: rotate(30deg);
    transform-origin: top right;

}


.title-wrp {
    display: block;
    padding: 0 3em;
    text-align: center;
}

.title {
    font-size: min(2.5em, 5vw);
    font-weight: 300;
}

.title-sub {
    display: block;
    width: fit-content;
    margin: 0 auto 1em;
    padding: .2em 1em;
    font-size: .7em;
    font-weight: 400;
    position: relative;
    border: 2px solid #666;
}

.title-sub::after {
    content: '';
    width: .75em;
    height: .75em;
    position: absolute;
    bottom: calc(-.75em + .25px);
    left: calc(50% - .75em);
    border-right: 2.5px solid #666;
    background-color: #fff;
    transform: skewX(-45deg);
}

.title-sub.bggray::after {
    background-color: var(--gray);
}

.title-sub.bggray-w::after {
    background-color: var(--gray-w);
}


.dash-title {
    font-size: min(1.3em, 4vw);
    font-weight: 300;
    display: inline-block;
    padding: .5em 2.5em;
    position: relative;
}

.dash-title::before,
.dash-title::after {
    content: '';
    width: 1.6em;
    height: 0;
    border-top: 1px solid;
    position: absolute;
    top: 50%;
}

.dash-title::before {
    left: 0;
}

.dash-title::after {
    right: 0;
}

/* contents share style */
.co-main-wrp {
    width: 100%;
    overflow: hidden;
    background-color: var(--gray);
    position: relative;
}

.co-main-title-wrp {
    width: 45%;
    max-height: 460px;
    padding: 1.5em 0;
    padding-left: 8%;
    display: flex;
    align-items: center;
}

@media screen and (max-width:960px) {
    .co-main-title-wrp {
        padding-left: 4%;
        padding-right: 1em;
    }
}

@media screen and (max-width:640px) {
    .co-main-title-wrp {
        width: 100%;
        padding: 2em;
    }

    .co-main-title-inner {
        display: grid;
        grid-template-areas: 'num title' 'text text';
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: .5em 2em;
    }
}

.co-main-title-wrp .en-num {
    grid-area: num;
    font-size: clamp(2em, 6vw, 110px);
    font-weight: 300;
    line-height: 1.5;
}

@media screen and (max-width:640px) {
    .co-main-title-wrp .en-num {
        font-size: min(40px, 9vw);
    }
}

.co-main-title-wrp .page-title {
    grid-area: title;
    font-size: clamp(1em, 4vw, 40px);
    font-weight: 300;
    margin-bottom: .5em;
}

@media screen and (max-width:640px) {
    .co-main-title-wrp .page-title {
        margin-bottom: 0;
        font-size: min(28px, 5.6vw);
    }
}

.co-main-title-wrp p {
    grid-area: text;
    font-size: clamp(.7em, 2vw, 16px);
    line-height: 1.6;
}

@media screen and (max-width:640px) {
    .co-main-title-wrp p {
        font-size: min(14px, 3.2vw);
        line-height: 1.6;
    }

    .co-main-title-wrp p br {
        display: none;
    }
}

.co-main-img {
    width: 55%;
    max-height: 460px;
    overflow: hidden;
}

@media screen and (max-width:640px) {
    .co-main-img {
        width: 100%;
    }

    .co-main-img img {
        object-position: center bottom;
    }
}

.co-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fixedBnr {
    z-index: 10;
}

.fixedBnr .bnr-check {
    margin: 0 !important;
    padding: 0;
}


.fixedBnr .bnr-check-inner {
    background-color: var(--gray-w);
    display: inline-flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .85em;
    padding: .5em;
    transition: all .3s;
    border: 1px solid #ccc;
    border-bottom: none;
}

.fixedBnr .bnr-check:hover .bnr-check-inner {
    opacity: 1;
    padding-bottom: 10%;
    height: 110%;
    transform: translateY(-10%);
}

.fixedBnr .bnr-check-illust {
    margin: 0 auto;
    width: 80%;
}

.fixedBnr .bnr-check-illust img {
    width: 100%;
}

.bannerBlock .withnote img {
    margin-bottom: 1em;
}

.bannerBlock .withnote .note {
    text-align: right;
}