@charset "UTF-8";
/*====================================================================================
■01.ContentPAGE
 ├ _01_1 layout
 |             1-1. #l-pageHeader
 └ _01_2 module
■02.page-contact
■03.page-products
 ├ _04_0 common
 ├ _04_2 page-pack
 └ _04_3 detail
■04.page-requirement
■05.page-about
■06.page-history
■07.page-support


■**.page-***
 ├ _**_1 common
 ├ _**_2 list
 └ _**_3 detail


====================================================================================*/
/*====================================================================================
■01.Content PAGE
====================================================================================*/
/* -----------------------------------------------
/* _01_1 layout
-------------------------------------------------- */
/* 1-1. #l-pageHeader
-------------------------------------------------- */
.pageHeader {
    height: 67.555vh;
    margin-bottom: 40px;
    padding-bottom: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .pageHeader {
        padding-bottom: 50px;
    }
}

@media (min-width: 1025px) {
    .pageHeader {
        margin-bottom: 140px;
        padding-bottom: 0;
    }
}

.pageHeader__image {
    height: 100%;
    margin-left: 30px;
    background-image: url(../images/mainImg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

@media (min-width: 1025px) {
    .pageHeader__image {
        margin-left: calc(((100% - 1100px) / 2) + (60px / 2));
    }
}

.pageHeader__image::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.pageHeader__bg {
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #2e2e2e;
    width: calc(100% - ((100% - 1100px) / 2) - (60px / 2));
    height: calc(100% - 60px);
    z-index: 0;
}

@media (min-width: 768px) {
    .pageHeader__bg {
        top: 60px;
    }
}

@media (min-width: 1025px) {
    .pageHeader__bg {
        height: calc(100% - 20px);
        top: 80px;
    }
}

/* -----------------------------------------------
/* _01_2 module
-------------------------------------------------- */
/* 2-1. mod-bgSection
-------------------------------------------------- */
.mod-bgSection {
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (min-width: 768px) {
    .mod-bgSection {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

/* 2-2. mod-stickyColumn
-------------------------------------------------- */
.mod-stickyColumn {
    max-width: 100%;
    margin-top: -40px;
    margin-right: 30px;
    margin-left: 30px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 1025px) {
    .mod-stickyColumn {
        margin-right: calc(((100% - 1100px) / 2) + 60px);
        padding-left: calc(((100% - 1100px) / 2) - 200px - 60px / 2);
        margin-top: 0;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media all and (-ms-high-contrast: none) and (min-width: 1025px) {
    .mod-stickyColumn *::-ms-backdrop, .mod-stickyColumn {
        padding-left: 30px;
    }
}

@media all and (-ms-high-contrast: none) and (min-width: 1500px) {
    .mod-stickyColumn *::-ms-backdrop, .mod-stickyColumn {
        padding-left: calc(((100% - 1100px) / 2) - 200px - 60px / 2);
    }
}

.mod-stickyColumn .stick__inner {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    background-color: #efefef;
}

@media (min-width: 1025px) {
    .mod-stickyColumn .stick__inner {
        background-color: #fff;
        box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.15);
        padding-top: 38px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 38px;
        border: none;
    }
}

.mod-stickyColumn .chapter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

@media (min-width: 1025px) {
    .mod-stickyColumn .chapter {
        display: block;
    }
}

.mod-stickyColumn .chapter__item {
    font-size: 1.2rem;
    width: 48%;
    text-align: center;
}

@media (min-width: 1025px) {
    .mod-stickyColumn .chapter__item {
        font-size: 1.4rem;
        font-weight: bold;
        width: auto;
        text-align: left;
    }
}

.mod-stickyColumn .chapter__item + .chapter__item {
    border-left: 1px solid #ccc;
}

@media (min-width: 1025px) {
    .mod-stickyColumn .chapter__item + .chapter__item {
        margin-top: 30px;
        border: none;
    }
}

.mod-stickyColumn .chapter__item .btn-chapter__txt {
    display: block;
    position: relative;
    overflow: hidden;
    color: #999;
}

.mod-stickyColumn .chapter__item .btn-chapter__txt::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #111;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mod-stickyColumn .chapter__item:not(.is-current) .btn-chapter__txt::after {
    transform-origin: right;
    -webkit-animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
    animation: act-linelink-black-out 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

.mod-stickyColumn .chapter__item.is-current .btn-chapter__txt {
    color: #111;
}

.mod-stickyColumn .chapter__item.is-current .btn-chapter__txt::after {
    width: 100%;
}

@media (min-width: 768px) {
    body:not(.flgiOs) .mod-stickyColumn .chapter__item:hover .btn-chapter__txt::after {
        -webkit-animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
        animation: act-linelink-black-over 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
    }
    body:not(.flgiOs) .mod-stickyColumn .chapter__item:hover.is-current .btn-chapter__txt::after {
        -webkit-animation: act-linelink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
        animation: act-linelink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    }
}

.mod-stickyColumn .btn-chapter {
    display: inline-block;
}

.mod-stickyColumn .btn-chapter__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mod-stickyColumn .btn-chapter__arrow {
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 15px;
    display: none;
}

@media (min-width: 1025px) {
    .mod-stickyColumn .btn-chapter__arrow {
        display: block;
    }
}

.mod-stickyColumn .btn-chapter__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.mod-stickyColumn .btn-chapter__icon svg {
    width: 20px;
    height: 20px;
    fill: #4c4c4c;
}

.mod-stickyColumn .btn-chapter__border {
    stroke: #cbcbcb;
    stroke-width: 1px;
    fill: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mod-stickyColumn__side {
    width: 100vw;
    margin-left: -30px;
    position: relative;
    z-index: 10;
}

@media (min-width: 1025px) {
    .mod-stickyColumn__side {
        margin-left: 0;
        width: 200px;
    }
}

.mod-stickyColumn__side::after {
    content: '';
    display: block;
    width: 200px;
    z-index: -1;
}

.mod-stickyColumn__stick {
    width: 100%;
}

@media (min-width: 1025px) {
    .mod-stickyColumn__stick {
        width: 200px;
    }
}

.mod-stickyColumn__content {
    width: 100%;
    padding-top: 75px;
}

@media (min-width: 1025px) {
    .mod-stickyColumn__content {
        width: calc(100% - 200px - 60px);
        margin-left: 60px;
        padding-top: 0;
    }
}

/* 2-3. mod-lead
-------------------------------------------------- */
.mod-lead {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .mod-lead {
        font-size: 1.6rem;
    }
}

/*====================================================================================
■02.page-staff
====================================================================================*/
/* 02-1. common
-------------------------------------------------- */
.page-staff {
    /* staff
-------------------------------------------------- */
    /* modal */
    /* modal > staff */
    /* schedule
-------------------------------------------------- */
    /* staffLink
-------------------------------------------------- */
}

.page-staff .staffWrap {
    position: relative;
    padding-bottom: 50px;
}

@media (min-width: 1025px) {
    .page-staff .staffWrap {
        padding-bottom: 0;
    }
}

.page-staff .staffWrap .l-container {
    max-width: 960px;
}

@media (min-width: 1200px) {
    .page-staff .staffWrap .l-container {
        max-width: 1260px;
    }
}

.page-staff .staffWrap .l-container::before {
    content: '';
    display: block;
    width: 200vw;
    height: calc(100% + 20px);
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 30px;
    left: -50vw;
    right: 0;
    z-index: -1;
    margin: auto;
}

@media (min-width: 1025px) {
    .page-staff .staffWrap .l-container::before {
        top: 60px;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .page-staff .row-staff {
        width: 100%;
        margin: auto;
    }
}

@media (min-width: 1025px) {
    .page-staff .row-staff {
        width: 90%;
        margin: auto;
    }
}

@media (min-width: 1200px) {
    .page-staff .row-staff {
        width: auto;
    }
}

.page-staff .col-staff {
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .page-staff .col-staff {
        margin-bottom: 60px;
    }
}

@media (min-width: 1025px) {
    .page-staff .card-staff:hover .card-staff-image::before {
        opacity: 1;
    }
    .page-staff .card-staff:hover .card-staff__text {
        opacity: 1;
        filter: blur(0);
        transform: scale(1) translateZ(0) translateY(-50%);
        will-change: transform;
    }
}

.page-staff .card-staff-image {
    position: relative;
}

.page-staff .card-staff-image > img {
    width: 100%;
}

.page-staff .card-staff-image::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 0, transparent 50%, #000 100%);
}

@media (min-width: 1025px) {
    .page-staff .card-staff-image::before {
        background-image: none;
        background-color: rgba(233, 70, 60, 0.9);
        opacity: 0;
        transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
}

.page-staff .card-staff__text {
    display: block;
    position: absolute;
    text-align: center;
    right: 0;
    bottom: 15px;
    left: 0;
    z-index: 2;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-staff .card-staff__text {
        bottom: 50px;
    }
}

@media (min-width: 1025px) {
    .page-staff .card-staff__text {
        top: 50%;
        bottom: auto;
        opacity: 0;
        filter: blur(5px);
        transform: scale(1.1) translateZ(0) translateY(-50%);
        transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
}

.page-staff .card-staff__text img {
    max-width: 90%;
    max-height: 80px;
}
.page-staff .card-staff__text img.mh110 {
    max-height: 110px;
}
.page-staff .card-staff__text img.mh140 {
    max-height: 140px;
}

.page-staff .card-staff-body {
    background-color: #131313;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px 25px;
}

@media (min-width: 768px) {
    .page-staff .card-staff-body {
        margin-top: -30px;
        margin-left: -30px;
        padding-top: 25px;
        padding-right: 40px;
        padding-bottom: 25px;
        padding-left: 40px;
    }
}

.page-staff .card-staff__time {
    color: #9e9e9e;
    font-size: 1.1rem;
}

@media (min-width: 1025px) {
    .page-staff .card-staff__time {
        font-size: 1.2rem;
    }
}

.page-staff .card-staff__role {
    color: #fff;
    font-weight: bold;
    /*margin-top: 10px;*/
}
.page-staff .card-staff__role span{
    font-size: 1.2rem;
    font-weight: normal;
}

@media (min-width: 1025px) {
    .page-staff .card-staff__role {
        font-size: 1.6rem;
    }
    .page-staff .card-staff__role span{
        font-size: 1.2rem;
        font-weight: normal;
    }
}

.page-staff .modal-staff {
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-staff .slide-staff {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.page-staff .slide-staff.is-active-slide {
    height: auto;
    visibility: visible;
    opacity: 1;
}

@media (min-width: 768px) {
    .page-staff .slide-staff {
        height: auto;
    }
}

.page-staff .slide-staff__container {
    overflow-y: scroll;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

@media (min-width: 768px) {
    .page-staff .slide-staff__container {
        overflow-y: hidden;
        height: auto;
    }
}

.page-staff .slide-staff__image {
    height: 285px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .page-staff .slide-staff__image {
        position: fixed;
        width: 40%;
        height: 100%;
        top: 0;
        left: 0;
    }
}

.page-staff .slide-staff__body {
    counter-reset: number 0;
    width: 100%;
    padding: 27px 30px 30px;
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .page-staff .slide-staff__body {
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 75px 120px 25px 60px;
        margin-bottom: 0;
    }
}

.page-staff .slide-staff__body > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .page-staff .slide-staff__body > *:last-child {
        margin-bottom: 100px;
    }
}

.page-staff .pagination-staff {
    background-color: #e9463c;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
    padding-right: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
    position: fixed;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 10;
}

@media (min-width: 768px) {
    .page-staff .pagination-staff {
        width: 60%;
        padding-top: 20px;
        padding-right: 60px;
        padding-bottom: 20px;
        padding-left: 60px;
    }
}

.page-staff .pagination-staff [class*="btn-circle"] {
    color: #fff;
}

.page-staff .pagination-staff .btn-circle__border {
    stroke: #fff;
}

.page-staff .pagination-staff .btn-circle__icon svg {
    fill: #fff;
}

.page-staff .btn-close-modal {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 10;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .page-staff .btn-close-modal {
        right: 45px;
    }
}

.page-staff .btn-close-modal svg {
    width: 36px;
    height: 36px;
}

.page-staff .staff-number {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .page-staff .staff-number {
        margin-bottom: 30px;
    }
}

.page-staff .staff-number__line {
    display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
    width: 115px;
    height: 1px;
    background-color: #131313;
}

.page-staff .staff-comment {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 2;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: #131313;
}

@media (min-width: 768px) {
    .page-staff .staff-comment {
        font-size: 3rem;
    }
}

.page-staff .staff-role {
    font-weight: bold;
    margin-bottom: 60px;
    position: relative;
}
.page-staff .staff-role span{
       font-weight: normal;
       font-size: 1.2rem;
    }

@media (min-width: 768px) {
    .page-staff .staff-role {
        margin-bottom: 90px;
    }
    .page-staff .staff-role span{
       font-weight: normal;
       font-size: 1.2rem;
    }
}

.page-staff .staff-role::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: #131313;
    position: absolute;
    bottom: -15px;
    left: 0;
}

.page-staff .staff-faq__title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9463c;
    position: relative;
}

.page-staff .staff-faq__title::before {
    counter-increment: number 1;
    content: "Q" counter(number) ". ";
}

.page-staff .staff-faq__title::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-left: 1px solid #e9463c;
    border-bottom: 1px solid #e9463c;
    background-color: #fff;
    position: absolute;
    bottom: -7px;
    left: 28px;
    z-index: 1;
    transform: rotate(-45deg);
}

.page-staff .staff-faq__answer + .staff-faq__title {
    margin-top: 45px;
}

.page-staff .staff-faq__image {
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .page-staff .staff-faq__image {
        margin-top: 0;
    }
}

.page-staff .staff-message {
    margin-top: 75px;
    padding: 45px 30px 30px;
    position: relative;
}

@media (min-width: 768px) {
    .page-staff .staff-message {
        margin-top: 120px;
        padding: 45px 60px 30px;
    }
}

.page-staff .staff-message__title .title-en {
    position: absolute;
    top: -35px;
    left: -24px;
}

@media (min-width: 768px) {
    .page-staff .staff-message__title .title-en {
        top: -40px;
        left: -40px;
    }
}

.page-staff .staff-message__title .title-en img {
    max-width: 203px;
}

.page-staff .staff-message__title .title-jp {
    font-weight: bold;
    font-size: 1.8rem;
    color: #131313;
    margin-bottom: 10px;
    display: inline-block;
}

@media (min-width: 768px) {
    .page-staff .staff-message__title .title-jp {
        font-size: 2.1rem;
    }
}

.page-staff .staff-message__image {
    margin-top: 20px;
}

@media (min-width: 1200px) {
    .page-staff .staff-message__image {
        margin-top: 0;
        margin-right: -130px;
    }
}

.page-staff .scheduleWrap .tbl-border--column {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.page-staff .scheduleWrap .tbl-border__th {
    color: #e9463c;
}

.page-staff .scheduleWrap .tbl-border__th svg {
    fill: #e9463c;
}

.page-staff .scheduleWrap .schedule--inner {
    margin: 0 0 35px 4%;
    border-left: 2px solid #e6e6e6;
    height: 100%;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--inner {
        margin: 0 0 70px 0;
        border-left: none;
        height: auto;
    }
}

.page-staff .scheduleWrap .schecule-pc {
    display: none;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schecule-pc {
        display: block;
    }
}

.page-staff .scheduleWrap .schecule-sp {
    display: block;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schecule-sp {
        display: none;
    }
}

.page-staff .scheduleWrap .schedule-item--sp {
    margin-left: -1.5%;
    margin-bottom: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-staff .scheduleWrap .schedule-item--sp:first-of-type {
    margin-bottom: 50px;
}

.page-staff .scheduleWrap .schedule-item--sp:first-of-type .schedule-item-txt::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    margin: auto;
    background: url(../../recruit/staff/graduates/images/schedule_hand_01_sp.png) center center/contain no-repeat;
    width: 150px;
    height: 35px;
}

.page-staff .scheduleWrap .schedule-item--sp:nth-of-type(3) {
    margin-bottom: 50px;
}

.page-staff .scheduleWrap .schedule-item--sp:nth-of-type(3) .schedule-item-txt::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    margin: auto;
    background: url(../../recruit/staff/graduates/images/schedule_hand_02.png) center center/contain no-repeat;
    width: 150px;
    height: 35px;
}

.page-staff .scheduleWrap .schedule-item--sp:nth-of-type(5) {
    margin-bottom: 50px;
}

.page-staff .scheduleWrap .schedule-item--sp:nth-of-type(5) .schedule-item-txt::before {
    content: "";
    position: absolute;
    bottom: -35px;
    left: 0;
    margin: auto;
    background: url(../../recruit/staff/graduates/images/schedule_hand_03_sp.png) center center/contain no-repeat;
    width: 150px;
    height: 35px;
}

.page-staff .scheduleWrap .schedule-item--sp .schedule-item-txt::after {
    border-bottom: 5px solid transparent;
    border-right: 15px solid #ebf5f8;
    border-top: 5px solid transparent;
    left: -15px;
    top: 10px;
}

.page-staff .scheduleWrap .schedule--top {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 26px;
    width: 100%;
}

.page-staff .scheduleWrap .schedule--top .schedule-item-txt::after {
    border-top: 14px solid #ebf5f8;
    bottom: -14px;
}

.page-staff .scheduleWrap .schedule--top .schedule-item-txt-01 {
    width: 21%;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--top .schedule-item-txt-01 {
        width: 21%;
        height: 104px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--top .schedule-item-txt-01::after {
        border-left: 0px solid transparent;
        border-right: 15px solid transparent;
        left: 34%;
    }
}

.page-staff .scheduleWrap .schedule--top .schedule-item-txt-02 {
    width: 15%;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--top .schedule-item-txt-02 {
        width: 15%;
        height: 60px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--top .schedule-item-txt-02::after {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        left: 43%;
    }
}

.page-staff .scheduleWrap .schedule--top .schedule-item-txt-03 {
    width: 21%;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--top .schedule-item-txt-03 {
        width: 21%;
        height: 104px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--top .schedule-item-txt-03::after {
        border-left: 15px solid transparent;
        border-right: 0px solid transparent;
        right: 32%;
    }
}

.page-staff .scheduleWrap .schedule-item-txt {
    box-sizing: border-box;
    display: inline-block;
    padding: 8px 2%;
    background-color: #ebf5f8;
    position: relative;
    width: calc(100% - 100px);
    margin-left: 25px;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-txt {
        box-sizing: border-box;
        display: inline-block;
        padding: 8px 14px 12px 14px;
        width: auto;
        margin-left: unset;
    }
}

.page-staff .scheduleWrap .schedule-item-txt::after {
    content: "";
    position: absolute;
}

.page-staff .scheduleWrap .schedule-item-txt--ttl {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 2px;
    font-weight: 700;
    text-align: left;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-txt--ttl {
        text-align: center;
    }
}

.page-staff .scheduleWrap .schedule-item-txt--txt {
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: left;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-txt--txt {
        text-align: center;
    }
}

.page-staff .scheduleWrap .schedule--middle {
    position: relative;
}

.page-staff .scheduleWrap .schedule--middle::before {
    border-bottom: 2px solid #e6e6e6;
    content: "";
    left: 86px;
    position: absolute;
    top: 15px;
    width: 83.5%;
    z-index: -1;
}

.page-staff .scheduleWrap .schedule--middle .schedule-item-timelist {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-staff .scheduleWrap .schedule-item-time {
    display: inline-block;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time {
        display: inline-block;
        height: 55px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time:first-of-type {
        width: 22%;
        margin-left: 5%;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time:nth-of-type(2) {
        width: 33%;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time:nth-of-type(3) {
        width: 10%;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time:nth-of-type(4) {
        width: 26%;
        text-align: right;
    }
}
@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time:nth-of-type(5) {
        width: 22%;
        text-align: right;
        margin-right: 5%;
    }
    .page-staff .scheduleWrap .schedule-item-time--icon2 {
        display: inline-block;
        vertical-align: top;
        width: 75px;
        margin-top: -33px;
    }
}

.page-staff .scheduleWrap .schedule-item-time--icon {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
}
@media (max-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time--icon2 {
        display: inline-block;
        vertical-align: top;
        width: 50px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time--icon {
        display: inline-block;
        vertical-align: baseline;
        margin: 0 auto;
        width: 30px;
    }
}

.page-staff .scheduleWrap .schedule-item-time--txt {
    display: inline-block;
    font-size: 1.5rem;
    vertical-align: middle;
    width: 38px;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule-item-time--txt {
        display: block;
        font-size: 1.4rem;
        vertical-align: baseline;
        line-height: 2.6rem;
        margin: 0 auto;
        width: auto;
    }
}

.page-staff .scheduleWrap .schedule--bottom {
    margin-top: -10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.page-staff .scheduleWrap .schedule--bottom .schedule-item-txt {
    vertical-align: top;
}

.page-staff .scheduleWrap .schedule--bottom .schedule-item-txt::after {
    border-bottom: 14px solid #ebf5f8;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    left: 43%;
    top: -14px;
}

.page-staff .scheduleWrap .schedule--bottom .schedule-item-txt-01 {
    width: 18%;
    margin: 0 1% 0 0;
}

.page-staff .scheduleWrap .schedule--bottom .schedule-item-txt-02 {
    width: 18%;
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--bottom .schedule-item-img-01 {
        margin-left: -1%;
        margin-top: 10px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--bottom .schedule-item-img-01 img {
        width: 160px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--bottom .schedule-item-img-02 {
        margin: 15px 4% 0;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--bottom .schedule-item-img-02 img {
        width: 161px;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--bottom .schedule-item-img-03 {
        margin-top: 10px;
        margin-right: -2%;
    }
}

@media (min-width: 1025px) {
    .page-staff .scheduleWrap .schedule--bottom .schedule-item-img-03 img {
        width: 170px;
    }
}

.page-staff .card-staffLink {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 45px;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.page-staff .card-staffLink:hover .card-staffLink__image > img {
    transform: scale(1.1);
}

.page-staff .card-staffLink:hover::before {
    -webkit-animation: act-staffLink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
    animation: act-staffLink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink:hover .card-staffLink__image::before {
        opacity: 1;
    }
    .page-staff .card-staffLink:hover .card-staffLink__text {
        opacity: 1;
        filter: blur(0);
        transform: scale(1) translateZ(0) translateY(-50%);
        will-change: transform;
    }
}

.page-staff .card-staffLink::before, .page-staff .card-staffLink::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.page-staff .card-staffLink::before {
    background-color: #fff;
    z-index: 2;
    transform: translateY(-20px);
}

.page-staff .card-staffLink::after {
    background-color: #131313;
    z-index: 1;
}

.page-staff .card-staffLink__image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink__image {
        margin-right: 25px;
        width: 52.656%;
    }
}

.page-staff .card-staffLink__image > img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.page-staff .card-staffLink__image::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 0, transparent 50%, #000 100%);
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink__image::before {
        background-image: none;
        background-color: rgba(233, 70, 60, 0.9);
        opacity: 0;
        transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
}

.page-staff .card-staffLink__text {
    display: block;
    position: absolute;
    text-align: center;
    right: 0;
    bottom: 15px;
    left: 0;
    z-index: 2;
    margin: 0 auto;
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink__text {
        top: 50%;
        bottom: auto;
        opacity: 0;
        filter: blur(5px);
        transform: scale(1.1) translateZ(0) translateY(-50%);
        transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), filter 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
}

.page-staff .card-staffLink__text img {
    max-width: 90%;
    max-height: 80px;
}

.page-staff .card-staffLink__body {
    width: 100%;
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink__body {
        width: 47.344%;
    }
}

.page-staff .card-staffLink__comment {
    font-size: 1.6rem;
    font-weight: 700;
    color: #131313;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 1025px) {
    .page-staff .card-staffLink__comment {
        margin-top: 0;
        margin-bottom: 15px;
    }
}

.page-staff .card-staffLink__role {
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .page-staff .card-staffLink__role {
        font-size: 1.3rem;
    }
    .page-staff .card-staffLink__role span{
        font-size: 1.2rem;
    }
}

.ly_youtube {
    text-align: center;
    margin-bottom: 80px;
}
.ly_youtube iframe {
    width: calc(560px * 1.5);
    height: calc(315px * 1.5);
}

@media (max-width: 767px) {
    .ly_youtube {
        position: relative;
        height: 0;
        padding-top: 56.25%;
        margin-left: 30px;
        margin-right: 30px;
    }
    .ly_youtube iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* 02-2. graduates
-------------------------------------------------- */
.page-staff.page-graduates .slide-staff[data-modal="1"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff01-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="1"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff01-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="2"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff02-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="2"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff02-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="3"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff03-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="3"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff03-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="4"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff04-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="4"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff04-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="5"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff05-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="5"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff05-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="6"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff06-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="6"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff06-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="7"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff07-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="7"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff07-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="8"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff08-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="8"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff08-large.jpg);
    }
}

.page-staff.page-graduates .slide-staff[data-modal="9"] .slide-staff__image {
    background-image: url(../staff/graduates/images/img-staff09-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-graduates .slide-staff[data-modal="9"] .slide-staff__image {
        background-image: url(../staff/graduates/images/img-staff09-large.jpg);
    }
}

/* 02-3. career
-------------------------------------------------- */
.page-staff.page-career .staffWrap .l-container {
    max-width: 1560px;
}

.page-staff.page-career .card-staff-body {
    padding: 20px 25px;
}

.page-staff.page-career .card-staff__role {
    margin-top: 0;
}

@media (min-width: 1025px) {
    .page-staff.page-career .card-staff__role {
        font-size: 1.4rem;
    }
}

.page-staff.page-career .slide-staff[data-modal="1"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff01-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="1"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff01-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="2"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff02-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="2"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff02-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="3"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff03-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="3"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff03-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="4"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff04-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="4"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff04-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="5"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff05-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="5"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff05-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="6"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff06-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="6"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff06-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="7"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff07-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="7"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff07-large.jpg);
    }
}

.page-staff.page-career .slide-staff[data-modal="8"] .slide-staff__image {
    background-image: url(../staff/career/images/img-staff08-large-sp.jpg);
}

@media (min-width: 768px) {
    .page-staff.page-career .slide-staff[data-modal="8"] .slide-staff__image {
        background-image: url(../staff/career/images/img-staff08-large.jpg);
    }
}

/*====================================================================================
■04.page-environment
====================================================================================*/
.page-environment {
    /* common
-------------------------------------------------- */
    /* development
-------------------------------------------------- */
    /* office
-------------------------------------------------- */
    /* number
-------------------------------------------------- */
    /* equipment
-------------------------------------------------- */
}

@media (min-width: 1025px) {
    .page-environment .mod-stickyColumn {
        margin-right: calc(((100% - 1100px) / 2) + 60px / 2);
    }
}

@media (min-width: 1025px) {
    .page-environment .mod-stickyColumn__content {
        width: calc(100% - 200px - 60px / 2);
        margin-top: 30px;
        margin-left: 30px;
    }
}

.page-environment .slick-dots {
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
}

.page-environment .slick-dots button {
    text-indent: -9999px;
    width: 8px;
    height: 8px;
    background-color: #dce5eb;
    border-radius: 50%;
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}

.page-environment .slick-dots .slick-active button {
    background-color: #e9463c;
}

.page-environment .slick-nav-arrows {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
}

.page-environment .slick-arrow {
    position: absolute;
    top: 0;
}

.page-environment .slick-arrow.slick-prev {
    left: -10px;
}

.page-environment .slick-arrow.slick-next {
    right: -10px;
}

.page-environment .slick-slide {
    position: relative;
}

.page-environment .slick-label {
    color: #fff;
    background-color: #e9463c;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 3px 10px;
}

.page-environment .slide-thumbs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}

.page-environment .slide-thumbs::after {
    content: '';
    display: block;
    width: 31%;
    height: 0;
}

.page-environment .slide-thumb {
    position: relative;
    width: 30%;
    height: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 12px;
}

@media (min-width: 576px) {
    .page-environment .slide-thumb {
        width: 15%;
        height: 96px;
    }
}

.page-environment .slide-thumb.is-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background: #111111;
}

.page-environment .developmentWrap {
    position: relative;
    margin-right: calc(-1 *  (60px / 4));
    margin-left: calc(-1 *  (60px / 4));
}

@media (min-width: 768px) {
    .page-environment .developmentWrap {
        margin-right: 0;
        margin-left: 0;
    }
}

.page-environment .developmentWrap::before {
    content: '';
    display: block;
    width: 200vw;
    height: calc(100% + 45px);
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: -50vw;
    right: 0;
    margin: auto;
}

@media (min-width: 1025px) {
    .page-environment .developmentWrap::before {
        height: calc(100% + 90px);
    }
}

.page-environment .development__image img {
    width: 100%;
}

.page-environment .development__body {
    background-color: #fff;
    padding-top: 30px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 30px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-environment .development__body {
        padding-top: 60px;
        padding-right: 60px;
        padding-bottom: 60px;
        padding-left: 60px;
    }
}

@media (min-width: 1025px) {
    .page-environment .development__body {
        padding-top: 100px;
    }
}

.page-environment .development__lead {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .page-environment .development__lead {
        margin-bottom: 100px;
        padding-bottom: 100px;
    }
}

@media (min-width: 1025px) {
    .page-environment .development__lead {
        font-size: 1.6rem;
    }
}

.page-environment .development__lead::after {
    content: '';
    display: block;
    width: 100vw;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    right: 0;
    bottom: 0;
    left: -60px;
}

.page-environment .development__lead .development__bnr {
  display: block;
  margin-top: 20px;
}

.page-environment .development__lead .development__bnr img{
	width: 100%;
  display: block;
}

@media (min-width: 768px) {
    .page-environment .development__lead .development__bnr img{
        width: 287px !important;
        height: auto;
    }
}


.page-environment .js-content {
    display: none;
}

.page-environment .js-trigger {
    border-top: solid 1px #CCCCCC;
    border-bottom: solid 1px #CCCCCC;
    position: relative;
    padding: 20px;
}
.page-environment .js-trigger.is-open,
.page-environment .js-trigger:hover {
    background-color: #f5f6f8;
}
.page-environment .icon-trigger {
    position: absolute;
    top: 0;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: background-color 0.3s ease-in-out;
}
.page-environment .js-trigger.is-open .icon-trigger,
.page-environment .js-trigger:hover .icon-trigger {
    background-color: #ff3426;
}
.page-environment .js-trigger.is-open .icon-trigger::before {
    display: none;
}

.page-environment .flow {
    border: 2px solid #e8e8e8;
    padding: 30px 20px;
}

@media (min-width: 1025px) {
    .page-environment .flow {
        padding: 50px;
    }
}

.page-environment .flow__group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    .page-environment .flow__group {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.page-environment .flow__group + .flow__group {
    padding-top: 30px;
}

@media (min-width: 768px) {
    .page-environment .flow__group + .flow__group {
        padding-top: 60px;
    }
}

.page-environment .flow__group:last-child .flow__body {
    border: none;
    padding-bottom: 0;
}

.page-environment .flow__group:last-child .flow__number::before {
    display: none;
}

.page-environment .flow__number {
    width: 125px;
    position: relative;
    margin-right: 30px;
}

.page-environment .flow__number::before {
    content: '';
    width: 1px;
    height: 80%;
    position: absolute;
    top: 20%;
    left: 50%;
    background-color: #e9463c;
    display: none;
}

@media (min-width: 768px) {
    .page-environment .flow__number::before {
        display: block;
    }
}

.page-environment .flow__number .step {
    color: #fff;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    background-color: #e9463c;
    padding: 5px 15px;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .page-environment .flow__number .step {
        font-size: 2.4rem;
    }
}

.page-environment .flow__body {
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
    .page-environment .flow__body {
        padding-bottom: 60px;
    }
}

.page-environment .flow__inner {
    max-width: 640px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .page-environment .flow__inner {
        margin-top: 0;
        padding-left: 70px;
        border-left: 1px solid #e5e5e5;
    }
}

.page-environment .flow__image {
    margin-bottom: 20px;
}

.page-environment .flow__image img {
    width: 100%;
}

.page-environment .flow__title {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #131313;
}

.page-environment .office__slide {
    position: relative;
    margin-top: 30px;
}

.page-environment .numberWrap {
    position: relative;
}

.page-environment .numberWrap::before {
    content: '';
    display: block;
    width: 200vw;
    height: calc(100% + 90px);
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: -45px;
    left: -50vw;
    right: 0;
    margin: auto;
}

@media (min-width: 1025px) {
    .page-environment .numberWrap::before {
        top: -90px;
        height: calc(100% + 180px);
    }
}

.page-environment .number__body {
    background-color: #fff;
    margin-right: calc(-1 *  (60px / 4));
    margin-left: calc(-1 *  (60px / 4));
    padding: 20px 20px 15px;
}

@media (min-width: 768px) {
    .page-environment .number__body {
        margin-right: 0;
        margin-left: 0;
        padding: 60px 60px 15px;
    }
}

.page-environment .number__item {
    margin-bottom: 45px;
}
@media (min-width: 768px) {
    .page-environment .number__item.col-md-4 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.page-environment .number__title {
    margin-bottom: 15px;
}

.page-environment .number__title .title-jp,
.page-environment .number__title .title-en {
    display: block;
}

.page-environment .number__title .title-jp {
    font-size: 1.75rem;
    font-weight: bold;
    color: #131313;
}

@media (min-width: 1336px) {
    .page-environment .number__title .title-jp {
        font-size: 2.1rem;
    }
}

.page-environment .number__title .title-en {
    font-size: 1.4rem;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    color: #e9463c;
}

.page-environment .number__image {
    border: 5px solid #e9463c;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px;
}

.page-environment .number__image img {
    width: 100%;
    max-width: 627px;
}

.page-environment .equipment__slide {
    position: relative;
}

/*====================================================================================
■05.page-jobs
====================================================================================*/
@media (min-width: 1025px) {
    .page-jobs .mod-lead {
        margin-right: 20px;
        margin-left: 20px;
    }
}

.page-jobs .mod-lead__image {
    text-align: left;
    margin-top: 35px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    background-color: rgba(5, 14, 95, 0.1);
}

@media (min-width: 768px) {
    .page-jobs .mod-lead__image {
        margin-top: 70px;
        padding-top: 45px;
        padding-right: 40px;
        padding-bottom: 45px;
        padding-left: 40px;
    }
}

.page-jobs .mod-lead__image img {
    width: 100%;
    height: auto;
}

.page-jobs .mod-stickyColumn {
    margin-top: 45px;
}

@media (min-width: 768px) {
    .page-jobs .mod-stickyColumn {
        margin-top: 75px;
        padding-top: 27px;
    }
}

@media (min-width: 1025px) {
    .page-jobs .mod-stickyColumn {
        margin-top: 100px;
        padding-top: 100px;
        margin-right: 60px;
    }
}

.page-jobs .mod-stickyColumn::before {
    content: '';
    display: block;
    width: 200vw;
    height: calc(100% + 90px);
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: -50vw;
    right: 0;
    margin: auto;
}

@media (min-width: 768px) {
    .page-jobs .mod-stickyColumn::before {
        height: calc(100% + 250px);
    }
}

.page-jobs .mod-stickyColumn__content {
    padding-top: 0;
}

.page-jobs .assistWrap {
    margin-top: -48px;
    padding-top: 48px;
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap {
        margin-top: 0;
        padding-top: 0;
        margin-left: -180px;
    }
}

@media (min-width: 1200px) {
    .page-jobs .assistWrap {
        margin-left: auto;
    }
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap-left {
        margin-left: 70px;
    }
}

@media (min-width: 1500px) {
    .page-jobs .assistWrap-left {
        margin-left: auto;
    }
}

.page-jobs .assist__head {
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    max-width: 1050px;
}

@media (min-width: 1025px) {
    .page-jobs .assist__head {
        margin-left: 160px;
        width: 774px;
    }
}

@media (min-width: 1500px) {
    .page-jobs .assist__head {
        width: 1050px;
    }
}

.page-jobs .assist__image .image__item:not(:first-child) {
    display: none;
}

.page-jobs .assist__image.slick-initialized .image__item:not(:first-child) {
    display: block;
}

.page-jobs .assist__image img {
    width: 100%;
}

.page-jobs .assist__body {
    margin-top: -10px;
    position: relative;
    max-width: 980px;
    width: 100%;
}

@media (min-width: 768px) {
    .page-jobs .assist__body {
        width: 76vw;
        margin-top: -50px;
    }
}

@media (min-width: 1025px) {
    .page-jobs .assist__body {
        margin-top: -80px;
        width: 810px;
    }
}

@media (min-width: 1500px) {
    .page-jobs .assist__body {
        width: 100%;
    }
}

.page-jobs .assist__body::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    top: 10px;
    right: -150%;
    width: 210%;
    height: 100%;
    background-color: #2e2e2e;
}

@media (min-width: 768px) {
    .page-jobs .assist__body::after {
        top: 34px;
    }
}

@media (min-width: 1025px) {
    .page-jobs .assist__body::after {
        top: 80px;
    }
}

.page-jobs .assistWrap-left .assist__image .slick-arrow {
    right: auto;
}

.page-jobs .assistWrap-left .assist__image .slick-arrow.btn-circle--left {
    left: 0;
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap-left .assist__image .slick-arrow.btn-circle--left {
        left: 105px;
    }
}

.page-jobs .assistWrap-left .assist__image .slick-arrow.btn-circle--right {
    left: 40px;
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap-left .assist__image .slick-arrow.btn-circle--right {
        left: 145px;
    }
}

.page-jobs .assistWrap-left .assist__image .slick-dots {
    right: auto;
    left: 10px;
}

.page-jobs .assistWrap-left .assist__head {
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap-left .assist__head {
        margin-left: -190px;
    }
}

.page-jobs .assistWrap-left .assist__body {
    margin-left: auto;
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap-left .assist__body {
        margin-right: auto;
        margin-left: 30px;
    }
}

.page-jobs .assistWrap-left .assist__body::after {
    right: auto;
    left: -150%;
}

.page-jobs .assist__inner {
    margin-right: 30px;
    margin-left: -30px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .page-jobs .assist__inner {
        margin-right: 30px;
        margin-left: -30px;
        padding-top: 60px;
        padding-right: 45px;
        padding-bottom: 60px;
        padding-left: 45px;
        font-size: 1.6rem;
    }
}

.page-jobs .assistWrap-left .assist__inner {
    margin-right: -30px;
    margin-left: 30px;
}

@media (min-width: 1025px) {
    .page-jobs .assistWrap-left .assist__inner {
        margin-right: auto;
        margin-left: auto;
    }
}

.page-jobs .slick-arrow {
    position: absolute;
    bottom: 70px;
    z-index: 1;
    /*opacity: 0;
    visibility: hidden;*/
}

@media (min-width: 768px) {
    .page-jobs .slick-arrow {
      right: 0;
    bottom: -55px;
        opacity: 1;
        visibility: visible;
    }
}

@media (min-width: 1025px) {
    .page-jobs .slick-arrow {
        right: 44px;
    }
}

@media (min-width: 1500px) {
    .page-jobs .slick-arrow {
        right: 150px;
    }
}

.page-jobs .slick-arrow.btn-circle--left {
    right: 84px;
}

@media (min-width: 1500px) {
    .page-jobs .slick-arrow.btn-circle--left {
        right: 190px;
    }
}

@media (min-width: 768px) {
.page-jobs .slick-arrow .btn-circle__icon svg {
    fill: #fff;
}

.page-jobs .slick-arrow .btn-circle__arrow .btn-circle__border {
    stroke: #fff;
}
}

@media (max-width: 767px) {
  .page-jobs .slick-arrow.btn-circle--right {
    right: -20px;
  }
  .page-jobs .slick-arrow.btn-circle--left {
    left: -20px;
  }
}

.page-jobs .slick-dots {
    position: absolute;
    right: 10px;
    bottom: 30px;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 768px) {
    .page-jobs .slick-dots {
        right: 20px;
        bottom: 20px;
    }
}

.page-jobs .slick-dots button {
    text-indent: -9999px;
    width: 8px;
    height: 8px;
    background-color: #dce5eb;
    border-radius: 50%;
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    display: block;
}

.page-jobs .slick-dots .slick-active button {
    background-color: #e9463c;
}

@media (min-width: 768px) {
    .page-jobs .try-footer {
        margin-top: 250px;
    }
}

/*====================================================================================
■06.page-entry
====================================================================================*/
.page-entry {
    /*
* 入力ページ以降
*/
    /*
* 確認ページ
*/
    /*
* 完了ページ
*/
}

.page-entry .contactWrap {
    margin-bottom: 45px;
}

@media (min-width: 1025px) {
    .page-entry .contactWrap {
        margin-bottom: 90px;
    }
}

.page-entry .contactWrap .l-container--fluid {
    margin-right: 30px;
    margin-left: 30px;
}

@media (min-width: 1025px) {
    .page-entry .contactWrap .l-container--fluid {
        margin-right: calc(((100% - 1100px) / 2) + 60px);
        padding-left: calc(((100% - 1100px) / 2) - 200px - 60px / 2);
    }
}

@media all and (-ms-high-contrast: none) and (min-width: 1025px) {
    .page-entry .contactWrap .l-container--fluid *::-ms-backdrop, .page-entry .contactWrap .l-container--fluid {
        padding-left: 30px;
    }
}

@media all and (-ms-high-contrast: none) and (min-width: 1500px) {
    .page-entry .contactWrap .l-container--fluid *::-ms-backdrop, .page-entry .contactWrap .l-container--fluid {
        padding-left: calc(((100% - 1100px) / 2) - 200px - 60px / 2);
    }
}

.page-entry .contactWrap .frm-basic .tbl-basic .tbl-basic__th {
    width: 25%;
}

.page-entry .contact__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 1025px) {
    .page-entry .contact__inner {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.page-entry .contact__sidebar {
    width: 100%;
}

@media (min-width: 1025px) {
    .page-entry .contact__sidebar {
        width: 200px;
        min-width: 200px;
    }
}

@media (min-width: 1025px) {
    .page-entry .contact__sidebar::after {
        content: '';
        display: block;
        width: 200px;
    }
}

.page-entry .contact__stick {
    width: 100%;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick {
        width: 200px;
    }
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .stick__inner {
        padding-top: 38px;
        padding-right: 20px;
        padding-bottom: 38px;
        background-color: #fff;
        box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.15);
    }
}

.page-entry .contact__stick .step {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .step {
        display: block;
        position: relative;
        padding-left: 20px;
    }
}

.page-entry .contact__stick .step::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    background-color: #111;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .step::after {
        display: none;
    }
}

.page-entry .contact__stick .step__item {
    text-align: center;
    width: 30%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border: 1px solid #111;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .step__item {
        padding-top: 12px;
        padding-right: 0;
        padding-bottom: 12px;
        padding-left: 0;
        position: relative;
        text-align: left;
        width: auto;
        border: none;
        background-color: transparent;
    }
}

.page-entry .contact__stick .step__item::before {
    content: '';
    display: none;
    width: 2px;
    height: 1.4rem;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .step__item::before {
        display: block;
    }
}

.page-entry .contact__stick .step__item.is-current {
    background-color: #e9473c;
    border: 1px solid #e9473c;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .step__item.is-current {
        background-color: transparent;
        border: none;
    }
}

.page-entry .contact__stick .step__item.is-current::before {
    background-color: #131313;
}

.page-entry .contact__stick .step__txt {
    color: #111;
    font-weight: bold;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .step__txt {
        color: #d1d1d1;
    }
}

.page-entry .contact__stick .is-current .step__txt {
    color: #fff;
}

@media (min-width: 1025px) {
    .page-entry .contact__stick .is-current .step__txt {
        color: #111;
    }
}

.page-entry .contact__form {
    width: 100%;
    margin-top: 30px;
}

@media (min-width: 1025px) {
    .page-entry .contact__form {
        width: calc(100% - 200px);
        margin-top: 0;
        margin-left: 60px;
    }
}

.page-entry .ppWrap {
    background-color: #eee;
    margin-bottom: 0;
}

.page-entry .ppWrap .l-container {
    background-color: #fff;
    margin-right: 15px;
    margin-left: 15px;
    padding: 30px 15px;
}

@media (min-width: 768px) {
    .page-entry .ppWrap .l-container {
        margin-right: auto;
        margin-left: auto;
        padding: 60px;
    }
}

.page-entry .pp__purpose {
    border: 1px dotted #4c4c4c;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .page-entry .pp__purpose {
        padding: 15px 30px;
    }
}

.page-entry.input .bannerWrap {
    margin-top: 0;
}

 .page-entry.error .g-footer{
    margin-top: 80px;
}

@media (min-width: 768px) {
     .page-entry.error .g-footer{
        margin-top: 160px;
    }
}

.page-entry.confirm .frm__th {
    padding-top: 44px;
    padding-bottom: 40px;
}

.page-entry.completion .frm-button__items {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/*====================================================================================
■07.page-requirement
====================================================================================*/
.page-requirement .graduateWrap {
    position: relative;
    margin-bottom: 45px;
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (min-width: 768px) {
    .page-requirement .graduateWrap {
        margin-bottom: 75px;
        padding-top: 75px;
        padding-bottom: 75px;
    }
}

@media (min-width: 1025px) {
    .page-requirement .graduateWrap {
        margin-bottom: 90px;
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

.page-requirement .graduateWrap::before {
    content: '';
    display: block;
    width: 200vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: -50vw;
    right: 0;
    margin: auto;
}

@media (min-width: 1025px) {
    .page-requirement .graduateWrap::before {
        top: 30px;
        height: calc(100% - 30px);
    }
}

.page-requirement .careerWrap .tbl-background__th,
.page-requirement .careerWrap .tbl-background__td {
    background-color: #f5f5f5;
}

.page-requirement .mapWrap{
   background-color: #fefffe;
   text-align: center;
   cursor: pointer;
}
.page-requirement .mapWrap img{
   max-width: 100%;
}
.page-requirement .mapWrap area{
   background: red;
}


.page-requirement .r-youtube{
    text-align: center;
    padding: 20px 0 30px;
        margin-bottom: 60px; 
}

.page-requirement .r-youtube a{
    padding: 0 20px;
    height: 100%;
    display: inline-block;
}

.page-requirement .r-youtube a img{
    width: 150px;
}

@media (min-width: 768px) {
    .page-requirement .r-youtube a img{
        width: 200px;
    }
    .page-requirement .r-youtube{
        padding: 0;
        margin-bottom: 30px; 
    }
}

/*# sourceMappingURL=content.css.map */


/*  新卒採用 中途採用 */
.mod-stickyColumn__content2{
    width: 100%;
    padding-top: 0px;
}
.entry_h{
    width: 100%;
}
.tbl-entryWrap{
    margin: 3% 0;
    padding: 0 0 1% 0;
}
.tbl-entry{
    width: 100%;
    background: white;

}
 .entrybtn button.oubobtn,
 .entrybtn button.detailbtn {
    color: #fff;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    background-color: #e9463c;
    margin: 6px 0;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    width: 100%;
}

.entrybtn button.detailbtn {
   background: #1d2652;
}
.entrybtn button.oubobtn:hover,
.entrybtn button.detailbtn:hover{
  opacity: 0.6;
}

.tbl-entry .entrybtn a{
    display: block;
    color: white;
}
.entrybtn .road_btn{
    font-weight: 700;
    font-family: 'Jost', sans-serif;
	border: 1px solid #e9463c;
    color: #e9463c;
    margin: 6px 0;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    width: 100%!important;
	margin-bottom: 8px;
	display: block;
	font-size: 16px;
}
.entrybtn .road_btn:hover{
	border: 1px solid #1d2652;
    color: #1d2652;
}





.entry_h{
    background: #e5e5e5;
    vertical-align: middle;
    font-size: 120%;
    padding: 20px;
    width: 97%;
}
.tbl-entry td{
    width: 50%;
    padding:0px 0px;
    vertical-align: middle;
}
.tbl-entry td.pt10{
   padding-top: 10px;
}
.tbl-entry td.pb10{
   padding-bottom: 25px;
}

.entry_detail{
    padding: 10px;

}
.offertitle{
    background-color: #ebf5f8;
    color: #4c4c4c;
    margin: 5px 10px;
   margin-top: 10px;
    padding: 20px;
    font-size: 160%;
    font-weight: bold;
    position: relative;
    display: block;
    z-index: 100;
}




#requirement_detail .offertitle:hover{
   background-color: #ebf5f8;
   color: #4c4c4c;
}


/*
.offertitle::after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: #1d2652;
    position: absolute;
    top: 0;
    left: 0;
}



.offertitle:hover::after {
    width: 100%;
    opacity: 0.3;

}
*/



.cheackArea{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
    padding: 10px 30px 3px 75px;


}
.cheackArea input{
    vertical-align: text-bottom;
}
.cheackArea li{
   margin-bottom: 10px;
   width: 20%;
   font-size: 16px;

}
.cheackArea.forOccup li {
  width: 32%;
}
.bosyuArea{
  background: #1c2551;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight:600;
  color: white;

}
.requirement_search_btn{
   margin: 0 auto;
   text-align: center;
}
.requirement_search_btn button{
   color: #fff;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    background-color: #e9463c;
    margin: 15px 0;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    width: 60%;
    font-size: 18px;
   position: relative;
}
.requirement_search_btn button:before{
   content:"";

   background-image:url(../requirement/images/search_icon.png);

    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
   height: 30px;
   width: 30px;
   position: absolute;
  top: 21%;
   left: 38%;
   z-index: 100;
}
.tbl-entry tbody td{

}
.pad20{
   padding: 20px !important;
}
.tbl-background__th,
.tbl-background__td {
    background-color: #fff;
    display: block;
    width: 100%;
}

.tbl-background__th {
    margin-bottom: 1px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.kyuzinBox{
    background: white;
    display: flex;
    flex-direction: row-reverse;
    padding: 10px 10px 0px 10px;
}
.kyuzinBox > div:nth-child(1){
    width: 40%;
}

.kyuzinBox > div:nth-child(2){
  width: 60%;
}
.entryimg img{
    padding: 0px;
    width: 100%;
    max-width: 100%;
}
.entry_hikitugiBox{
    margin: 0 15px 50px;
    padding: 15px;
    background:#e4e5ee;


}
.entry_hikitugiBox th{
    padding: 10px;
    font-weight: bold;
}
.entry_hikitugiBox td{
    padding: 10px;
}
@media screen and (max-width: 768px){
   .cheackArea{
      padding: 5%;
   }
    .cheackArea li{
        width: 33%;
        margin-right: 0;
        align-items: baseline;
    }
    .cheackArea.forOccup li {
      width: 100%;
    }
    .kyuzinBox{
        background: white;
        display:block;
        flex-direction: row-reverse;
    }
    .tbl-entry {

      width: 100%;
    }
    .tbl-entry tr {
        width: 100%;
        display: block;
    }

    .tbl-entry th {
        width: 100%;
        display: block;
    }

    .tbl-entry td {
        width: 100%;
        display: block;
         padding: 0px 0px;
    }
    .kyuzinBox > div:nth-child(1),
    .kyuzinBox > div:nth-child(2){
        width: 100%;
      }
    .entry_h{
      width: 100%;
      padding: 10px;
    }

   .entryimg img{

        max-width: 100%;
    }
    .requirement_search_btn button {
        width: 100%;
    }
    .requirement_search_btn button:before{
        left: 25%;

    }


}
#page-requirement-detail .pinkred{
    background-color: #de4e4e;
}

#page-requirement-detail .pinkred .btn-chapter__txt {
    color: white !important;
}

#page-requirement-detail .pinkred .btn-chapter__txt::after {
    background-color:  white !important;
}

.tbl-entrydetail{
    padding: 20px;

}

.tbl_inner{
    padding: 20px;
}

#requirement_detail .tbl-entry td {
    width: 50%;
    padding: 0;

    vertical-align: middle;
}

#requirement_detail .tbl-entry td .date {

    margin:10px auto;
}


.kyuzinBox_detail .offertitle{
   margin: 5px auto;
}
.kyuzinBox_detail .entryimg {
   display:flex;

}
.keisaiDate{
   margin:10px auto;
}
.kyuzinBox_detail .entryimg > div{

   width: 50%;
}

.kyuzinBox_detail .entryimg > div.gaiyou{
   padding: 15px;
   margin-right: 5px;
   border: 2px solid #e8e8e8;
   order:1;


}
.kyuzinBox_detail .entryimg > div.gaiyouImg{
    order: 2;
}
.requirement__slide {
    position: relative;
}
.requirement__slide .slick-nav-arrows{
    position: absolute;
    top: 30%;
    width: 100%;
}
.requirement__slide .slick-arrow {
    position: absolute;
    top: 0;
}
.requirement__slide .slick-arrow.slick-prev {
    left: -22px;
}
.requirement__slide .slick-arrow.slick-next {
    right: -1px;
}
.requirement__slide .slide-thumbs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}
.requirement__slide .slide-thumb {
    position: relative;
    width: 30%;
    height: 70px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 12px;
}
@media (min-width: 576px) {
    .page-environment .slide-thumb {
        width: 15%;
        height: 96px;
    }
}
.requirement__slide .slide-thumb.is-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background: #111111;
}

.tbl-entryWrap{
    background: white;
}
.entrynaiyou{
    background: white;
}
.entrynaiyou_dl dt{
    background: #e5e5e5;
    vertical-align: middle;
    font-size: 120%;
    padding: 15px;
    margin: 15px;
}
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
.entrynaiyou_dl dd{
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
    padding: 15px 25px;
    border: 2px solid #e8e8e8;

}
.entrynaiyou_dl dd > div.cat{
    font-size: 16px;
    font-weight: bold;
    /*width: 100px;*/
    width: 120px;
}
.entrynaiyou_dl dd > div.txt{
    width: 70%;
    text-align: left;
}
.pc_mt15{
    margin-top: 15px;
}


@media screen and (max-width: 768px){
    .pc_mt15{
        margin-top: 0;
    }

    .kyuzinBox_detail .entryimg {
       display:block;
    }

    .kyuzinBox_detail .entryimg > div{
       width: 100%;
    }

    .mod-stickyColumn .chapter__item {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    #requirement_detail .tbl-entry td {
        width: 100%;
        padding: 0;
        vertical-align: middle;
    }
    #page-requirement-detail   .mod-stickyColumn__stick {
        width: 100%;
        display: flex;
    }
    #page-requirement-detail  .mod-stickyColumn .stick__inner{
        width: 100%;
        margin-top: 0px;
    }

    .entrynaiyou_dl dd{
      display: block;
    }
    .entrynaiyou_dl dd > div.cat{
        margin-bottom: 0.5em;
    }
    .entrynaiyou_dl dd > div.txt{
      width: 100%;
    }


}




/*====================================================================================
add 20240501 nakano
====================================================================================*/
a.link{background: url(../common_img/ico_link.png) 100% 50% no-repeat; padding:  0 20px 0 10px; background-size: 16px 16px;       
	font-size: 1.7rem;color:#e9473c;
}

