@charset "UTF-8";

.c-contents {
    /* 下層C共通CSS */
    font-family: "Noto Sans JP", sans-serif;
}

/* pages
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.page_wrap {
    overflow: hidden;
}
.page_wrap .clearfix::after {
    content: "";
    display: block;
    clear: both;
}
.page_wrap .clearfix > * {
    float: left;
}
.page_wrap .float-left {
    float: left;
}
.page_wrap .float-right {
    float: right;
}
.page_wrap .flex_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    box-sizing: border-box;
}
.page_wrap .flex_box.Middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.page_wrap .flex_box.Column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.page_wrap .flex_box.Bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.page_wrap .flex_box.Column > * {
    width: 100%;
}
.page_wrap .flex_box.Nowrap {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.page_wrap .flex_box.Reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.page_wrap .flex_box.End {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.page_wrap .flex_box.Start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.page_wrap .flex_box.Center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page_wrap .inner {
    max-width: 1040px;
    margin: 0 auto;
}
.page_wrap p {
    font-size: 16.5px;
    line-height: 1.9;
}
.page_wrap .align-right {
    text-align: right;
    margin: 20px 0 0 0;
}

/*-- js-animation --*/
.page_wrap .js-animation {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 1s;
}
.page_wrap .js-animation.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*-- entry box --*/
.entry-box {
    margin: 90px auto 0;
    background: #2c79bb url(../images/pages/bg-entry.png) no-repeat 50% 50%;
    background-size: cover;
    padding: 110px 0 100px;
    box-sizing: border-box;
}
.entry-box .box {
    width: 71%;
    max-width: 870px;
    background: #fff;
    box-sizing: border-box;
}
.entry-box .box a {
    position: relative;
    display: block;
    padding: 60px 116px 52px;
}
.entry-box .box a .more {
    position: absolute;
    right: 100px;
    top: 50%;
    margin-top: -30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #2c79bb;
    font-size: 17.9px;
    padding: 20px 17px;
}
.entry-box .box a .more:before {
    content: "";
    width: 10px;
    height: 10px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    background: #2c79bb;
    border-radius: 100%;
}
.entry-box .box .title {
    font-size: 31px;
    color: #2c79bb;
    font-weight: bold;
}
.entry-box .box .title i {
    font-style: normal;
    color: #b3b3b3;
    font-size: 18.5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    display: block;
    margin: 15px 0 0 0;
}

/*-- child page --*/

.child-header {
    max-width: 1025px;
    margin: 0 auto 60px;
}
.child-header .child-header__parent {
    margin-bottom: 58px;
    text-align: right;
}
.child-header .child-header__parent .slash {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #808080;
    display: inline-block;
    margin-right: 20px;
}
.child-header .child-header__parent .en {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #007540;
    display: inline-block;
    margin-right: 20px;
}
.child-header .child-header__parent .ja {
    font-size: 14px;
    color: #333;
    display: inline-block;
}
.nav-menu {
    margin: 60px auto;
}
/*
.nav-menu li {
    width: 235px;
    height: 90px;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0,0,0,.15);
    margin: 0 16px;
}
*/
.nav-menu li {
    width: 232px;
    height: 94px;
    margin: 0 16px;
}
.nav-menu li a {
    display: block;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    color: #007540;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 34px 0;
    box-sizing: border-box;
    position: relative;
    transition: all 0.4s;
}
.nav-menu li a:hover {
    box-shadow: 2px 2px 8px rgb(0 0 0 / 40%);
}
.nav-menu li a:before {
    content: "";
    width: 100%;
    height: 28px;
    position: absolute;
    bottom: -17px;
    left: 0;
    z-index: 1;
    background: url(../images/pages/nav-arrow.png) no-repeat 50% 50%;
    background-size: contain;
    transition: all 0.4s;
}
.nav-menu li a:hover:before {
    transform: translateY(10px);
}

.child-pages.parent.inner {
    max-width: 1025px;
}
.child-pages .flex_box li {
    position: relative;
    cursor: pointer;
}
.child-pages.parent .flex_box li {
    width: 47%;
    background: #fff;
    margin: 0 0 60px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.child-pages .flex_box li .box {
    padding: 34px 0 60px;
    position: static;
}
.child-pages .flex_box li .box p span {
    font-size: 41.5px;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    height: 1em;
    line-height: 1.1;
    overflow: visible;
}
.child-pages .flex_box li .box p {
    text-align: center;
    font-size: 16.5px;
}
.child-pages .flex_box li .box .more-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.child-pages .flex_box li .box .more-btn .more {
    position: absolute;
    right: 3px;
    bottom: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: italic;
    padding: 20px 17px;
    color: #007540;
    box-sizing: border-box;
}
.child-pages .flex_box li .box .more-btn .more:before {
    content: "";
    width: 8px;
    height: 8px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    background: #007540;
    border-radius: 100%;
}
.child-pages.parent .flex_box .data .box p,
.child-pages.parent .flex_box .data .box .more-btn .more {
    color: #9b723a;
}
.child-pages.parent .flex_box li.data .box .more-btn .more:before {
    background: #9b723a;
}
.child-pages.parent .flex_box .data .box p,
.child-pages.parent .flex_box .data .box .more-btn .more,
.child-pages.parent .flex_box .interview .box p,
.child-pages.parent .flex_box .interview .box .more-btn .more {
    color: #9b723a;
}
.child-pages.parent .flex_box li.data .box .more-btn .more:before,
.child-pages.parent .flex_box li.interview .box .more-btn .more:before {
    background: #9b723a;
}
.child-pages.parent .flex_box .works .box p,
.child-pages.parent .flex_box .works .box .more-btn .more,
.child-pages.parent .flex_box .benefits .box p,
.child-pages.parent .flex_box .benefits .box .more-btn .more {
    color: #2c79bb;
}
.child-pages.parent .flex_box li.works .box .more-btn .more:before,
.child-pages.parent .flex_box li.benefits .box .more-btn .more:before {
    background: #2c79bb;
}

.page_wrap .child-pages {
    position: relative;
}
.page_wrap .child-pages.child {
    padding: 110px 0 100px;
    background: #fff;
}
.page_wrap .child-pages:before {
    content: "";
    width: 100%;
    height: 65%;
    background: #f2f2f2;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.page_wrap .child-pages > * {
    position: relative;
    z-index: 3;
}
.page_wrap .child-pages .inner {
    max-width: 1025px;
}
.child-pages.child .flex_box {
    margin: 0 auto;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.child-pages.child .flex_box li {
    width: 25%;
    background: #fff;
    position: relative;
}
.child-pages.child .flex_box li:first-child:before {
    display: none;
}
.child-pages.child .flex_box li:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e6e6e6;
    z-index: 3;
}
.child-pages .flex_box li .box {
    padding: 34px 0 60px;
    /* position: relative; */
}
.child-pages.child .flex_box li .box .more-btn {
    padding: 15px 12px;
}
.child-pages.child .flex_box li .box {
    padding: 46px 0 62px;
}
.child-pages.child .flex_box li .box--row2 {
    padding: 34px 0 52px;
}
.child-pages.child .flex_box .data .box {
    padding: 30px 0 46px;
}
.child-pages.child .flex_box li p {
    font-size: 18.75px;
    font-weight: bold;
    line-height: 1.5;
}

/*-- link --*/
.bubbly a {
    outline: none;
}
.bubbly .animation {
    transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
}
.bubbly .animation:before,
.bubbly .animation:after {
    position: absolute;
    content: "";
    display: block;
    width: 120%;
    height: 70%;
    left: -10%;
    z-index: -1000;
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat;
}
.bubbly .animation:before {
    display: none;
    top: -25%;
    background-image: radial-gradient(circle, #007540 2px, transparent 2px),
        radial-gradient(circle, #2c79bb 2px, transparent 2px),
        radial-gradient(circle, #2c79bb 2px, transparent 2px),
        radial-gradient(circle, #9b723a 2px, transparent 2px),
        radial-gradient(circle, #9b723a 2px, transparent 2px),
        radial-gradient(circle, #58c065 2px, transparent 2px),
        radial-gradient(circle, #58c065 2px, transparent 2px),
        radial-gradient(circle, #2c79bb 2px, transparent 2px);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%,
        15% 15%, 10% 10%, 18% 18%;
    z-index: 1;
}
.bubbly .animation:after {
    display: none;
    bottom: -25%;
    background-image: radial-gradient(circle, #007540 2px, transparent 2px),
        radial-gradient(circle, #2c79bb 2px, transparent 2px),
        radial-gradient(circle, #9b723a 2px, transparent 2px),
        radial-gradient(circle, #9b723a 2px, transparent 2px),
        radial-gradient(circle, #58c065 2px, transparent 2px),
        radial-gradient(circle, #58c065 2px, transparent 2px),
        radial-gradient(circle, #2c79bb 2px, transparent 2px);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%,
        20% 20%;
    z-index: 1;
}
.bubbly .animation:active {
    transform: scale(0.9);
    background-color: darken(#2c79bb, 5%);
    box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.bubbly:hover .animation:before {
    display: block;
    animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly:hover .animation:after {
    display: block;
    animation: bottomBubbles ease-in-out 0.75s forwards;
}
@media screen and (max-width: 750px) {
    .bubbly:hover .animation:before,
    .bubbly:hover .animation:after {
        animation: none;
        display: none;
    }
}
@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }
    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }
    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }
    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%,
            95% 60%, 105% 0%;
    }
    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%,
            95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

/*-- title --*/
.heading-child {
    font-size: 34.38px;
    font-weight: bold;
    padding: 0 0 39px 0;
    margin: 0 auto 40px;
    border-bottom: 1px solid #c8c8c8;
}
.heading-child:before {
    content: "";
    width: 28px;
    height: 4px;
    display: inline-block;
    background: #007540;
    margin: -5px 22px 0 0;
    vertical-align: middle;
}
.heading-a {
    font-size: 31.25px;
    font-weight: bold;
    color: #007540;
    position: relative;
    margin: 0 auto 42px;
}
.heading-a > * {
    position: relative;
    z-index: 3;
}
.heading-a:before {
    content: "";
    width: 104px;
    height: 104px;
    background: #cce3d9;
    position: absolute;
    top: -53px;
    left: -36px;
    border-radius: 100%;
}
.heading-a i {
    font-style: normal;
    color: #b3b3b3;
    font-size: 18.5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    display: inline-block;
    margin: 0 0 0 22px;
}
.heading-a.blue {
    color: #2c79bb;
}
.heading-a.blue:before {
    background: #ddeaf4;
}
.heading-a.brown {
    color: #9b723a;
}
.heading-a.brown:before {
    background: #efe8df;
}
.heading-a.green {
    color: #67a621;
}
.heading-a.green:before {
    background: #e1edd3;
}

.page_wrap .bold_text {
    font-size: 22.9px;
    font-weight: bold;
    margin: 60px auto 36px;
    line-height: 1.7;
}
.heading-b {
    font-size: 16.66px;
    font-weight: bold;
    margin: 0 0 15px;
}
.heading-b.blue {
    color: #2c79bb;
}
.heading-b.brown {
    color: #9b723a;
}
.heading-c {
    font-size: 18.75px;
    margin: 0 0 15px;
    color: #007540;
    font-weight: bold;
    position: relative;
    z-index: 2;
}
.heading-c span {
    font-size: 21px;
    color: #67a621;
    display: inline-block;
    margin: 0 22px 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
.heading-d {
    font-size: 20.85px;
    color: #007540;
    font-weight: bold;
    margin: 0 0 28px;
}
.heading-d span {
    display: block;
}
.heading-d span i {
    display: inline-block;
    background: #2c79bb;
    color: #fff;
    font-size: 16.65px;
    padding: 6px 13px;
    font-style: normal;
    margin: 0 0 25px;
}
.heading-e {
    font-size: 27.9px;
    font-weight: bold;
}
.heading-e:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #007540;
    display: inline-block;
    margin: -3px 15px 0 -2px;
    vertical-align: middle;
}

/*-- recruit --*/

#recruit #message {
    position: relative;
}
#recruit #message figure {
    position: absolute;
    left: 52%;
    top: 18px;
    width: 50%;
    max-width: 624px;
}
#recruit #message .box {
    width: 47%;
    padding: 74px 0 0 0;
    position: relative;
}
#recruit #message .box > * {
    position: relative;
    z-index: 1;
}
#recruit #message .box:before {
    content: "";
    width: 643px;
    height: 348px;
    position: absolute;
    bottom: -100px;
    right: 0;
    background: url(../images/recruit/bg-message.png) no-repeat 100% 100%;
    background-size: 643px auto;
    z-index: 0;
}
#recruit #message .box .heading-a:after {
    content: "";
    width: 185px;
    height: 79px;
    position: absolute;
    top: -25px;
    right: -13px;
    background: url(../images/recruit/ttl-recruit.png) no-repeat 0 0;
    background-size: contain;
}
#recruit #message .inner {
    max-width: 986px;
    margin: 0 auto;
}
#recruit .inner {
    margin: 190px auto 90px;
}

/*-- data --*/
#data {
    padding-top: 142px;
    background: #fff;
}
#data .page_wrap .data-list {
    max-width: 1040px;
}
#data .child-header {
    margin: 0 auto 72px;
}
#data .page_wrap .data-list li {
    margin: 0 0.75% 9px;
    box-sizing: border-box;
}
#data .page_wrap .data-list li.data-01 {
    width: 48.5%;
}
#data .page_wrap .data-list li.data-02 {
    width: 48.5%;
}
#data .page_wrap .data-list li.data-03 {
    width: 34.5%;
}
#data .page_wrap .data-list li.data-04 {
    width: 62.5%;
}
#data .page_wrap .data-list li.data-05 {
    width: 31.7%;
}
#data .page_wrap .data-list li.data-06 {
    width: 31.7%;
}
#data .page_wrap .data-list li.data-07 {
    width: 31.7%;
}
#data .page_wrap .data-list li.data-08 {
    width: 36.8%;
}
#data .page_wrap .data-list li.data-09 {
    width: 60.2%;
}
#data .page_wrap .data-list li.data-10 {
    width: 41.3%;
}
#data .page_wrap .data-list li.data-11 {
    width: 26.2%;
}
#data .page_wrap .data-list li.data-12 {
    width: 28%;
}
#data .page_wrap .align-right {
    margin: 2px 7px 90px 0;
    font-size: 15.65px;
}
#data .entry-box {
    margin: 94px auto 0;
}

/*-- job --*/
#job {
    padding-top: 142px;
    background: #fff;
}
#job #technical {
    margin-top: 17px;
    position: relative;
    padding-top: 90px;
}
#job #technical:before {
    content: "";
    width: 60%;
    height: 605px;
    position: absolute;
    top: 268px;
    right: 0;
    background: #f2f2f2;
}
#job #technical > * {
    position: relative;
    z-index: 3;
}
#job #manufacturing {
    margin: 28px auto 140px;
    position: relative;
    padding-top: 90px;
}
#job #manufacturing:before {
    content: "";
    width: 60%;
    height: 600px;
    position: absolute;
    top: 268px;
    right: 0;
    background: #f2f2f2;
}
#job #manufacturing > * {
    position: relative;
    z-index: 3;
}
#job .entry-box {
    margin: 80px auto 0;
}
#job .inner_box {
    margin: 0 auto 78px;
    max-width: 1025px;
}
#job .inner_box .figure {
    width: 50%;
}
#job .inner_box .figure figure {
    width: 644px;
    position: relative;
    right: 140px;
    margin: 15px auto 80px;
}
#job .inner_box .box {
    width: 44.8%;
    padding: 66px 0 0 0;
}
#job .inner_box .box section {
    margin: 0 auto 28px;
}
#job .inner_box .box figure {
    width: 530px;
    position: relative;
    left: -70px;
    margin: 38px auto 0;
}
#job .schedule-box {
    border: 4px solid #000;
    width: 428px;
    padding: 39px 0px 46px 56px;
    box-sizing: border-box;
    position: relative;
}
#job .schedule-box:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #000;
    position: absolute;
    top: 18px;
    left: 16px;
}
#job .schedule-box:after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: #000;
    position: absolute;
    top: 18px;
    right: 16px;
}
#job .schedule-box dt {
    font-size: 22.9px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 32px;
    position: relative;
}
#job .schedule-box dt span {
    font-size: 18px;
}
#job .schedule-box dt:before {
    content: "";
    width: 135px;
    height: 87px;
    position: absolute;
    top: -16px;
    right: 10px;
    background: url(../images/works/title-schedule.png) no-repeat 0 0;
    background-size: contain;
}
#job .schedule-box dd ul {
    padding: 0 0 0 10px;
}
#job .schedule-box dd ul li {
    font-size: 16.65px;
    margin: 0 auto 21px;
    padding: 0 0 0 4.1em;
    position: relative;
    line-height: 1.4;
}
#job .schedule-box dd ul li span {
    font-size: 18.7px;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: -6px;
}
#job #technical .schedule-box {
    border-color: #2c79bb;
}
#job #technical .schedule-box:before,
#job #technical .schedule-box:after {
    background: #2c79bb;
}
#job #technical .schedule-box dd ul li span {
    color: #2c79bb;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
#job #manufacturing .schedule-box {
    border-color: #9b723a;
}
#job #manufacturing .schedule-box:before,
#job #manufacturing .schedule-box:after {
    background: #9b723a;
}
#job #manufacturing .schedule-box dd ul li span {
    color: #9b723a;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}
#job .schedule-note {
    font-size: 14px;
}

/*-- interview / cross talk --*/

#interview-cross_talk {
    padding-top: 142px;
}
#interview-cross_talk .entry-box {
    margin: 100px auto 0;
}
#interview-cross_talk .page_wrap .inner {
    max-width: 1024px;
}
#interview-cross_talk .page_wrap .heading-a {
    padding: 0 0 0 30px;
    margin: 0 auto 69px;
}
#interview-cross_talk .page_wrap .heading-a:before {
    left: 0;
}
#interview {
    margin: 107px auto 155px;
}
#interview-cross_talk .page_wrap section .child {
    cursor: default;
}
.accordion {
    cursor: pointer;
}
.interview-box {
    background: #fff;
    position: relative;
    margin: 0 auto 30px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.interview-box .parent {
    position: relative;
}
.interview-box .parent:before {
    content: "";
    width: 52px;
    height: 80px;
    position: absolute;
    top: 33px;
    right: 36px;
    box-sizing: border-box;
    background: url(../images/interview/ico-acc-01_off.png) no-repeat 0 0;
    background-size: contain;
}
.interview-box.active .parent:before {
    background: url(../images/interview/ico-acc_on.png) no-repeat 0 0;
    background-size: contain;
}
.interview-box .parent figure {
    width: 290px;
}
.interview-box .parent figure img {
    display: block;
}
.interview-box .parent p:before {
    content: "";
    width: 151px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 25px;
}
#interview-01 .parent p:before {
    background: url(../images/interview/ttl-interview-01.png) no-repeat 50% 50%;
    background-size: contain;
}
#interview-02 .parent p:before {
    background: url(../images/interview/ttl-interview-02.png) no-repeat 50% 50%;
    background-size: contain;
}
#interview-03 .parent p:before {
    background: url(../images/interview/ttl-interview-03.png) no-repeat 50% 50%;
    background-size: contain;
}
#interview-04 .parent p:before {
    background: url(../images/interview/ttl-interview-04.png) no-repeat 50% 50%;
    background-size: contain;
}
#interview-05 .parent p:before {
    background: url(../images/interview/ttl-interview-05.png) no-repeat 50% 50%;
    background-size: contain;
}
.interview-box .parent p {
    width: 734px;
    box-sizing: border-box;
    position: relative;
    padding: 5px 0 5px 195px;
    font-size: 27px;
}
.interview-box .parent p span {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    color: #67a621;
    font-weight: bold;
}
.interview-box .child {
    padding: 55px 60px 18px;
}
.interview-box .child > section {
    margin: 0 auto 45px;
}
.interview-box .child .flex_box .box {
    width: 55%;
}
.interview-box .child .flex_box.Reverse .box {
    width: 56%;
}
.interview-box .child .flex_box figure {
    width: 40%;
}
.interview-box .q-1 figure {
    position: relative;
}
.interview-box .q-1 figure:before {
    content: "";
    width: 86px;
    height: 99px;
    background: url(../images/interview/ico-q1.png) no-repeat 0 0;
    background-size: contain;
    position: absolute;
    left: -28px;
    top: -21px;
    z-index: 3;
}
.interview-box .q-2 {
    position: relative;
}
.interview-box .q-2 > * {
    position: relative;
    z-index: 3;
}
.interview-box .q-2:before {
    content: "";
    width: 55px;
    height: 57px;
    background: url(../images/interview/ico-q2.png) no-repeat 0 0;
    background-size: contain;
    position: absolute;
    left: 40%;
    top: -30px;
    z-index: 1;
}
.interview-box .q-3 {
    position: relative;
}
.interview-box .q-3 > * {
    position: relative;
    z-index: 3;
}
.interview-box .q-3:before {
    content: "";
    width: 73px;
    height: 82px;
    background: url(../images/interview/ico-q3.png) no-repeat 0 0;
    background-size: contain;
    position: absolute;
    right: 7px;
    top: -4px;
    z-index: 1;
}

.page_wrap #crosstalk .heading-a {
    margin: 0 0 50px;
}
#crosstalk > p {
    margin: 0 0 48px 8px;
}
.crosstalk-box {
    background: #fff;
    position: relative;
    margin: 0 auto 25px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.crosstalk-box .parent {
    position: relative;
}
.crosstalk-box .parent:before {
    content: "";
    width: 52px;
    height: 80px;
    position: absolute;
    top: 38px;
    right: 36px;
    box-sizing: border-box;
    background: url(../images/interview/ico-acc-02_off.png) no-repeat 0 0;
    background-size: contain;
}
.crosstalk-box.active .parent:before {
    background: url(../images/interview/ico-acc_on.png) no-repeat 0 0;
    background-size: contain;
}
.crosstalk-box figure {
    line-height: 0;
    width: 100%;
}
.crosstalk-box figure img {
    display: block;
    width: 100%;
}
.crosstalk-box .child section > figure.flex_box {
    margin-top: 10px;
}
.crosstalk-box figure.flex_box img {
    display: inline;
}

.crosstalk-box figure.flex_box .img-02 {
    width: 60%;
    text-align: right;
    position: relative;
    margin: 0 auto;
}
.crosstalk-box figure.flex_box .img-02:before {
    content: "";
    width: 101px;
    height: 91px;
    position: absolute;
    bottom: 115px;
    left: -87px;
    background: url(../images/interview/ico-cir-02.png) no-repeat 0 0;
    background-size: contain;
    z-index: 3;
}
.crosstalk-box figure.flex_box .img-02:after {
    content: "";
    width: 85px;
    height: 95px;
    position: absolute;
    top: 270px;
    right: -110px;
    background: url(../images/interview/ico-cir-01.png) no-repeat 0 0;
    background-size: contain;
    z-index: 3;
}
.crosstalk-box figure.flex_box .img-03 {
    width: 53%;
    padding: 42px 0 0 0px;
    text-align: right;
    position: relative;
}
.crosstalk-box figure.flex_box .img-03:before {
    content: "";
    width: 103px;
    height: 82px;
    position: absolute;
    top: 10px;
    left: 173px;
    background: url(../images/interview/ico-cir-03.png) no-repeat 0 0;
    background-size: contain;
    z-index: 3;
}
.crosstalk-box figure.flex_box .img-04 {
    width: 37.5%;
    text-align: center;
    padding: 123px 50px 0 0;
    box-sizing: border-box;
    position: relative;
}
.crosstalk-box figure.flex_box .img-04:before {
    content: "";
    width: 113px;
    height: 89px;
    position: absolute;
    top: 84px;
    left: -42px;
    background: url(../images/interview/ico-cir-04.png) no-repeat 0 0;
    background-size: contain;
    z-index: 3;
}
.crosstalk-box figure.flex_box .img-04:after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -29px;
    right: -2px;
    background: url(../images/interview/ico-cir-05.png) no-repeat 0 0;
    background-size: contain;
    z-index: 3;
}
.crosstalk-box .child {
    padding: 54px 62px;
}
.crosstalk-box .child .box.gray {
    background: #f2f2f2;
}
.crosstalk-box .child .box {
    padding: 25px 40px;
    margin: 0 auto;
}
.crosstalk-box .child .box.clearfix > p {
    width: 710px;
}
.crosstalk-box .child .box figure {
    width: 80px;
    text-align: center;
}
.crosstalk-box .child .box figure.float-left {
    margin: 0 25px 0 0;
}
.crosstalk-box .child .box figure.float-right {
    margin: 0 0 0 25px;
}
.crosstalk-box .child .box figure figucaption {
    display: block;
    color: #2c79bb;
    font-size: 14.58px;
    margin: 7px 0 0 0;
    font-weight: bold;
}
.crosstalk-box .child section {
    margin: 0 auto 80px;
}
.crosstalk-box .child section > figure {
    margin: 45px auto 0;
}
.crosstalk-box .child .align-right {
    position: relative;
    margin-top: -17px;
}
.crosstalk-box .child .align-right a {
    font-weight: bold;
    color: #007540;
    display: block;
    position: relative;
}
.crosstalk-box .child .align-right:after {
    content: "";
    width: 14px;
    height: 28.5px;
    display: block;
    position: absolute;
    right: -30px;
    bottom: 0;
    background: url(../images/pages/nav-arrow.png) no-repeat 50% 50%;
    background-size: contain;
    transition: all 0.4s;
    transform: rotate(180deg);
}

/*-- welfare --*/
#welfare {
    padding-top: 142px;
}
#welfare .anc {
    margin-top: 0px;
    padding-top: 0px;
}
#welfare .page_wrap .inner {
    max-width: 1024px;
}
#welfare .entry-box {
    margin-top: 70px;
}
#welfare .heading-wrap {
    margin: 0 auto 40px;
}
#welfare .heading-wrap .heading-a {
    width: 250px;
    padding: 0 0 0 48px;
    margin: 0;
    font-size: 27px;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
#welfare .heading-wrap .heading-a:before {
    left: 0;
    top: -40px;
}
#welfare .heading-wrap p {
    width: 716px;
}
#welfare .child-header {
    margin: 0 auto 75px;
}
#welfare #benefits {
    margin: 150px auto 0;
}
#welfare #benefits dl dt,
#welfare #benefits ul li {
    background: #e1edd3;
    color: #007540;
    font-size: 18px;
    width: calc(33.3333% - 13.4px);
    margin: 0 20px 11px 0;
    text-align: center;
    padding: 26px 0;
    font-weight: bold;
}

#welfare #benefits ul {
    margin-bottom: 4px;
}

#welfare #benefits ul li:nth-of-type(3n) {
    margin-right: 0;
}

#welfare #benefits ul li span {
    font-weight: normal;
}

#welfare #benefits dl {
    background: #fff;
    margin: 0 0 15px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
#welfare #benefits dl dt {
    margin: 0;
    width: 32%;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#welfare #benefits dl dd {
    width: 67.333%;
    font-size: 16.65px;
    padding: 26px 20px 26px 12px;
    line-height: 1.9;
    box-sizing: border-box;
}
#welfare #training {
    margin: 115px auto 0;
}
#welfare #training dl {
    width: 49%;
    background: #fff;
    margin: 10px 0 0;
}
#welfare #training dl dt {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 20.8px;
    padding: 16px 0;
}
#welfare #training dl.system-01 dt {
    background: #2c79bb;
}
#welfare #training dl.system-02 dt {
    background: #007540;
}
#welfare #training dl dd {
    background: #fff;
    padding: 25px 25px 20px;
}
#welfare #training dl dd p {
    font-size: 16px;
    margin: 20px -1em 0 -0.1em;
    letter-spacing: -0.2px;
}
#welfare #training dl dd ul li {
    font-size: 17.75px;
    width: 49%;
    text-align: center;
    font-weight: bold;
}
#welfare #training dl.system-01 dd ul li {
    padding: 44px 0 36px 0;
    background: #eaf2f8;
    color: #2c79bb;
}
#welfare #training dl.system-02 dd ul li {
    padding: 20px 0 15px 0;
    background: #e1edd3;
    color: #007540;
}
#welfare #career {
    margin: 80px auto 0;
}
#welfare #career .heading-wrap {
    margin: 0 auto 26px;
}

#welfare #photo-gallery {
    margin: 94px auto 0;
}
#welfare #photo-gallery .heading-e {
    font-size: 22px;
}
#welfare #photo-gallery ul.flex_box {
    margin: 45px auto;
}
#welfare #photo-gallery ul.flex_box li {
    width: 30.3333%;
    margin: 0 0 44px;
    font-size: 16.65px;
    letter-spacing: -0.04em;
    line-height: 1.5;
}
#welfare #photo-gallery ul.flex_box li img {
    display: block;
    margin: 0 0 20px;
}

/*-- history --*/
.page-history .ttl_page {
    background: #fff;
    justify-content: flex-end;
    height: 300px;
    margin-bottom: 60px;
}
#history {
    background: #fff;
}
#history .timeline-box {
    max-width: 1024px;
    padding-bottom: 38px;
    margin-bottom: 95px;
}
#history .inner .flex_box .time-right {
    width: 50%;
}
#history .inner .flex_box .time-left {
    width: 50%;
}
#history .inner .flex_box .time-right ul {
    padding: 0 0 0 22px;
    box-sizing: border-box;
}
#history .inner .flex_box .time-left ul {
    padding: 0 18px 0 0;
    box-sizing: border-box;
}
#history .inner .flex_box.flex_box-01 {
    margin-top: 20px;
}
#history .inner .flex_box-02_01 {
    margin-top: 30px;
}
#history .inner .flex_box figure {
    width: 48%;
}
#history .inner .flex_box figure figcaption {
    font-size: 14.5px;
    margin-top: 0.7em;
    color: #007540;
}
#history .inner .flex_box figure.figure-01 {
    margin-top: 10px;
}
#history .inner .flex_box figure.figure-02 {
    margin-top: 60px;
}
#history .inner .flex_box figure.figure-02_01 {
    margin-top: 30px;
}
#history .inner .flex_box figure.figure-03 {
    margin-top: 20px;
    margin-bottom: 30px;
}
#history .inner .flex_box figure.figure-04 {
    margin-top: 50px;
}
#history .inner .flex_box figure.figure-05 {
    margin-top: 20px;
}
.timeline-content p:before {
    content: "・";
}
.timeline-content p {
    text-indent: -1em;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}
.timeline-content {
    width: 60%;
    padding-bottom: 17px;
}
.timeline-year {
    width: 40%;
    /*top: 0;
    left: 0;
    position: absolute;*/
    color: #007540;
    font-size: 20.5px;
    font-weight: bold;
    margin-bottom: 15px;
}
.timeline-year .year i {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 24px;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.timeline-year .month {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.2em;
    letter-spacing: 0.1em;
}
.timeline-box {
    position: relative;
}
.timeline-box:before {
    content: "";
    width: 1px;
    margin-left: -0.5px;
    height: 100%;
    background: #b3b3b3;
    position: absolute;
    left: 50%;
    top: 7px;
    z-index: 0;
}
.timeline > * {
    position: relative;
    z-index: 5;
}
.timeline {
    list-style: none;
    position: relative;
}
.timeline > li {
    margin-bottom: 17px;
    padding-bottom: 1px;
    position: relative;
    border-bottom: 1px solid #007540;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    box-sizing: border-box;
}
.timeline > li:last-child {
    margin-bottom: 0;
}
.timeline > li h3:before {
    content: "";
    width: 13px;
    height: 13px;
    background: #007540;
    position: absolute;
    left: -28px;
    top: 6px;
    border-radius: 100%;
    z-index: 3;
}
.time-left .timeline > li h3:before {
    left: inherit;
    right: -25px;
}
.time-left .timeline-year .year {
    position: absolute;
    right: 0;
}
.timeline-year .year.hidden {
    opacity: 0;
}
.time-left .timeline-year {
    width: 19%;
}
.time-left .timeline-year .month {
    margin-left: 0;
}
.time-left .timeline-content {
    width: 81%;
    box-sizing: border-box;
    padding-right: 8em;
}

/* Max 751
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
@media screen and (min-width: 751px) {
    .page_wrap br.sp {
        display: none;
    }
    .page_wrap img.sp {
        display: none;
    }
    .page_wrap img.pc {
        display: inline;
    }
    .page_wrap figure.pc {
        display: block;
    }
    .page_wrap figure.sp {
        display: none;
    }
} /* Min 751 */

/* Max 750
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
@media screen and (max-width: 750px) {
    /*-- pages --*/
    .page_wrap {
        overflow: visible;
    }
    .page_wrap br.sp {
        display: block;
    }
    .page_wrap br.pc {
        display: none;
    }
    .page_wrap img.sp {
        display: inline;
    }
    .page_wrap img.pc {
        display: none;
    }
    .page_wrap figure.pc {
        display: none;
    }
    .page_wrap figure.sp {
        display: block;
    }
    .page_wrap .inner {
        width: 88vw;
    }
    .page_wrap p {
        font-size: 3.6vw;
        font-size: 3.9vw;
        line-height: 1.9;
    }
    .nav-menu {
        margin: 8% auto;
        width: 88%;
    }
    .nav-menu li {
        width: 48%;
        height: 6.6em;
        margin: 0 1% 8.5%;
    }
    .nav-menu li a {
        font-size: 37.5px;
        font-size: 5vw;
        padding: 1.8em 0;
    }

    /*-- child-pages --*/
    .child-header {
        max-width: 88vw;
        margin: 0 auto 10%;
    }
    .child-header .child-header__parent {
        margin-bottom: 6.6vw;
    }
    .child-header .child-header__parent .slash {
        font-size: 4.2vw;
    }
    .child-header .child-header__parent .en {
        font-size: 4.8vw;
    }
    .child-header .child-header__parent .ja {
        font-size: 3.4vw;
    }
    .page_wrap .child-pages:before {
        bottom: 0;
    }
    .child-pages.parent .flex_box {
        display: block;
    }
    .child-pages.parent .flex_box li {
        width: 100%;
        margin: 0 0 5%;
    }
    .child-pages.child .flex_box li {
        width: 50%;
    }
    .child-pages.child .flex_box li:nth-child(3):before {
        display: none;
    }
    .child-pages.child .flex_box {
        width: 100%;
        max-width: 100%;
    }
    .page_wrap .child-pages.child {
        padding: 15vw 0 18vw;
    }
    .child-pages.child .flex_box li .box {
        padding: 2.5em 0 3.2em;
    }
    .child-pages.child .flex_box li .box--row2 {
        padding: 1.5em 0 3.2em;
    }
    .child-pages.child .flex_box .data .box {
        padding: 1.7em 0 2.3em;
    }
    .child-pages .flex_box li .box p span {
        font-size: 75px;
        font-size: 10vw;
    }
    .child-pages .flex_box li .box p {
        font-size: 30px;
        font-size: 4vw;
    }
    .child-pages.child .flex_box li .box .more-btn {
        padding: 3vw 1em;
    }
    .child-pages .flex_box li .box .more-btn .more:before {
        width: 0.55em;
        height: 0.55em;
        margin-right: 0.4em;
    }
    .child-pages .flex_box li .box .more-btn {
        font-size: 2.8vw;
    }
    .child-pages.parent .flex_box li.interview .box .more-btn .more,
    .child-pages.parent .flex_box .interview .box p,
    .child-pages.parent .flex_box .interview .box .more-btn {
        color: #2c79bb;
    }
    .child-pages.parent .flex_box li.interview .box .more-btn .more:before {
        background: #2c79bb;
    }
    .child-pages.parent .flex_box li.benefits .box .more-btn .more,
    .child-pages.parent .flex_box .benefits .box p,
    .child-pages.parent .flex_box .benefits .box .more-btn {
        color: #9b723a;
    }
    .child-pages.parent .flex_box li.benefits .box .more-btn .more:before {
        background: #9b723a;
    }
    .crosstalk-box .child .align-right {
        position: relative;
        margin-top: 1em;
        padding-right: 5%;
    }
    .crosstalk-box .child .align-right:after {
        width: 3.74vw;
        height: 7.6vw;
        right: 3.74vw;
        bottom: 0;
    }
    .crosstalk-box .child .align-right a {
        padding: 0 5vw 0 0;
    }
    /*-- entry-box --*/
    .entry-box {
        height: auto;
        margin: 14% auto 0;
        padding: 20% 0;
        background: #2c79bb url(../images/pages/bg-entry.png) no-repeat 50% 50%;
        background-size: cover;
    }
    .entry-box .box {
        width: 87%;
        max-width: 100%;
    }
    .entry-box .box a {
        padding: 13% 8% 11% 10%;
    }
    .entry-box .box .title {
        font-size: 45px;
        font-size: 6vw;
    }
    .entry-box .box .title i {
        margin: 0.5em 0 0 0;
        font-size: 30px;
        font-size: 4vw;
    }
    .entry-box .box a .more {
        right: 7%;
        font-size: 25.82px;
        font-size: 3.5vw;
    }
    .entry-box .box a .more:before {
        width: 0.55em;
        height: 0.55em;
        margin-right: 0.5em;
    }

    /*-- title --*/
    .heading-child {
        font-size: 48.5px;
        font-size: 6.47vw;
        line-height: 1.5;
        padding: 0 0 0.85em 1.7em;
        position: relative;
        margin: 0 auto 0.9em;
    }
    .heading-child:before {
        position: absolute;
        top: 0.75em;
        left: 0.3em;
        width: 0.85em;
        height: 3px;
        margin: 0;
    }
    .heading-a {
        font-size: 52px;
        font-size: 6.94vw;
        margin: 0 auto 1.5em;
    }
    .heading-a i {
        font-size: 33.75px;
        font-size: 4.5vw;
        margin: 0 0 0 0.85em;
    }
    .heading-a:before {
        width: 25vw;
        height: 25vw;
        top: -13vw;
        left: -9vw;
    }
    .heading-b {
        font-size: 3.8vw;
    }
    .heading-c {
        font-size: 33.75px;
        font-size: 4.5vw;
        margin: 0 0 1.2em;
    }
    .heading-c span {
        font-size: 39.375px;
        font-size: 5.25vw;
        display: block;
        margin: 0 0 0.5em 0;
    }
    .heading-d {
        font-size: 37.5px;
        font-size: 5vw;
    }
    .heading-d span i {
        padding: 0.2em 0.8em;
        margin: 0 0 0.8em;
        font-size: 30px;
        font-size: 4vw;
    }
    .heading-e {
        font-size: 41.25px;
        font-size: 5.5vw;
    }
    .heading-e:before {
        width: 0.4em;
        height: 0.4em;
        margin: -0.2em 0.7em 0 0.2em;
    }

    /*-- recruit --*/
    #recruit {
        padding-top: 9vw;
        overflow: visible;
    }
    #recruit .inner {
        margin: 38vw auto 22vw;
    }
    #recruit #message .box {
        width: 100%;
        padding: 0;
    }
    #recruit #message .box .heading-a:after {
        width: 43.5vw;
        height: 18vw;
        top: -14vw;
        right: -2vw;
    }
    #recruit #message .box:before {
        display: none;
    }
    #recruit #message figure:before {
        content: "";
        width: 100vw;
        height: 100%;
        position: absolute;
        top: -72vw;
        right: 0;
        background: url(../images/recruit/sp/bg-message.png) no-repeat 100% 100%;
        background-size: 100% auto;
        z-index: 0;
    }
    #recruit #message figure {
        position: relative;
        left: inherit;
        top: inherit;
        width: 100%;
        max-width: 100%;
        margin-top: 11%;
    }
    .page_wrap .align-right {
        text-align: right;
        margin: 1.5em 0 0 0;
    }

    /*-- interview --*/
    #interview {
        margin: 19% auto 22%;
    }
    #interview-cross_talk {
        padding-top: 20vw;
    }
    #interview-cross_talk .page_wrap .inner {
        max-width: 100%;
        width: 100%;
    }
    #interview-cross_talk .page_wrap .heading-a {
        padding: 0 0 0 1em;
        margin: 0 auto 15.5%;
    }
    #interview-cross_talk .page_wrap .heading-a:before {
        left: -2vw;
        top: -12vw;
    }
    #interview-cross_talk .page_wrap section .child {
        padding: 3% 6.5%;
    }
    .interview-box .parent {
        display: block;
    }
    .crosstalk-box .parent:before,
    .interview-box .parent:before {
        width: 12vw;
        height: 16vw;
        top: 7.6vw;
        right: 7vw;
    }
    .interview-box .parent figure {
        width: 70%;
        width: 70vw;
    }
    .interview-box .parent p {
        width: 100%;
        padding: 9% 7% 9% 48%;
        font-size: 48.75px;
        font-size: 6.5vw;
    }
    .interview-box .parent p span {
        font-size: 30px;
        font-size: 4vw;
    }
    .interview-box .parent p:before {
        width: 34.5%;
        height: 100%;
        top: 0;
        left: 8%;
    }
    .interview-box .child > section {
        margin: 0 auto 5%;
        display: block;
    }
    .interview-box .child .flex_box .box {
        width: 100%;
    }
    .interview-box .child .flex_box figure {
        width: 100%;
        margin: 10% auto;
    }
    .interview-box .q-1 figure:before {
        width: 20vw;
        height: 22vw;
        left: -6vw;
        top: -5vw;
    }
    .interview-box .q-1 figure:before {
        width: 20vw;
        height: 22vw;
        left: -6vw;
        top: -5vw;
    }
    .interview-box .q-2:before {
        width: 47px;
        height: 48px;
        left: 58%;
        top: 2px;
    }
    .interview-box .q-3:before {
        display: none;
    }
    .interview-box .q-3 .box:before {
        content: "";
        background: url(../images/interview/ico-q3.png) no-repeat 0 0;
        background-size: contain;
        position: absolute;
        z-index: 1;
        width: 16vw;
        height: 18vw;
        right: 0.5vw;
        top: -4vw;
    }
    .interview-box .child .flex_box.q-3 .box {
        width: 100%;
    }
    #interview-cross_talk .page_wrap #crosstalk .child {
        padding: 0;
    }
    #interview-cross_talk .entry-box {
        margin: 14% auto 0;
    }
    #crosstalk .heading-d {
        width: 87vw;
        margin: 7.5% auto 5%;
        line-height: 1.5;
        font-size: 4.8vw;
    }
    #crosstalk > p {
        margin: -3% auto 9.5%;
        width: 87%;
        width: 87vw;
    }
    .crosstalk-box {
        margin-bottom: 0;
    }
    .crosstalk-box.active {
        padding-bottom: 15vw;
    }
    .crosstalk-box .child .box {
        padding: 5vw 7%;
    }
    .crosstalk-box .child .box.clearfix > p {
        width: 100%;
    }
    .crosstalk-box .child .box figure.float-left {
        margin: 3% 4% 0 0%;
        width: 21%;
    }
    .crosstalk-box .child .box figure.float-right {
        margin: 2% 0 0 4%;
        width: 21%;
    }
    .crosstalk-box .child .box.clearfix > p {
        width: 73%;
    }
    .crosstalk-box .child section {
        margin-bottom: 15vw;
    }
    .crosstalk-box .child section.last {
        margin-bottom: 0;
    }
    .crosstalk-box .child section > figure.flex_box {
        margin-top: 7%;
        display: block;
    }
    .crosstalk-box .child section > figure {
        margin-top: 0;
    }
    .crosstalk-box figure.flex_box .img-01 {
        width: 100%;
        text-align: left;
        padding: 0 0 0 12%;
        z-index: 2;
    }
    .crosstalk-box figure.flex_box .img-01 img {
        width: 43vw;
    }
    .crosstalk-box figure.flex_box .img-02 {
        width: 100%;
        padding: 0;
        margin-top: -3vw;
    }
    .crosstalk-box figure.flex_box .img-02 img {
        width: 75vw;
    }
    .crosstalk-box figure.flex_box .img-03 {
        width: 100%;
        padding: 3vw 0 0 7%;
        text-align: left;
    }
    .crosstalk-box figure.flex_box .img-03 img {
        width: 73vw;
    }
    .crosstalk-box figure.flex_box .img-04 {
        width: 100%;
        text-align: right;
        padding: 3vw 7vw 0 0;
    }
    .crosstalk-box figure.flex_box .img-04 img {
        width: 43vw;
    }
    .crosstalk-box figure.flex_box .img-01:before {
        width: 16vw;
        height: 17vw;
        top: 2vw;
        left: 4vw;
    }
    .crosstalk-box figure.flex_box .img-02:before {
        background: url(../images/interview/sp/ico-cir-02.png) no-repeat 0 0;
        background-size: contain;
        width: 11vw;
        height: 22vw;
        bottom: 9vw;
        left: 18vw;
    }
    .crosstalk-box figure.flex_box .img-03:before {
        width: 10vw;
        height: 10vw;
        top: inherit;
        left: inherit;
        bottom: 2vw;
        right: 20vw;
        background: url(../images/interview/ico-cir-05.png) no-repeat 0 0;
        background-size: contain;
    }
    .crosstalk-box figure.flex_box .img-04:before {
        width: 19vw;
        height: 19vw;
        top: 4vw;
        left: 21vw;
        background: url(../images/interview/ico-cir-03.png) no-repeat 0 0;
        background-size: contain;
    }
    .crosstalk-box figure.flex_box .img-04:after {
        display: none;
    }

    /*-- job --*/
    #job {
        padding-top: 20vw;
    }
    #job .nav-menu {
        margin-bottom: 0;
    }
    #job #technical {
        padding-top: 27vw;
        margin-top: 0;
    }
    #job #technical:before {
        display: none;
    }
    #job #technical .inner-sp > * {
        position: relative;
        z-index: 3;
    }
    #job #technical .inner-sp {
        position: relative;
    }
    #job #technical .inner-sp:before {
        content: "";
        width: 85vw;
        height: 123%;
        position: absolute;
        top: 20px;
        right: -6vw;
        background: #f2f2f2;
        z-index: 1;
    }
    #job .entry-box {
        margin: 15% auto 0;
    }
    #job .inner_box {
        margin: 0 auto 15%;
        max-width: 100%;
        display: block;
    }
    #job .inner_box .box {
        width: 100%;
        padding: 0;
    }
    #job .inner_box .box figure {
        width: 115%;
        position: relative;
        left: 0;
        margin: 10vw auto 0;
        transform: translateX(-7%);
    }
    #job .page_wrap .inner_box .box .bold_text {
        font-size: 5vw;
        margin: 6vw 0 7vw;
    }
    #job .inner_box .figure {
        width: 100%;
        position: relative;
        z-index: 3;
    }
    #job .inner_box .figure figure {
        width: 100%;
        right: 0;
        margin: 7vw auto 0;
    }
    #job .schedule-box {
        width: 100%;
        padding: 12% 1% 12% 7%;
        margin-top: 11vw;
    }
    #job .schedule-box dt {
        font-size: 41.5px;
        font-size: 5.5vw;
        margin: 0 0 1.3em;
    }
    #job .schedule-box dt span {
        font-size: 4.8vw;
    }
    #job .schedule-box dt:before {
        width: 29vw;
        height: 18vw;
        top: -4vw;
        right: -1vw;
    }
    #job #technical .schedule-box dd ul li span {
        font-size: 33.75px;
        font-size: 4.2vw;
    }
    #job .schedule-box dd ul li {
        margin: 0 auto 1.5em;
        padding: 0 0 0 4em;
        font-size: 30px;
        font-size: 3.8vw;
    }
    #job #manufacturing {
        margin: 0 auto;
        padding-top: 17vw;
    }
    #job .schedule-note {
        font-size: 3.8vw;
    }

    #job #manufacturing:before {
        display: none;
    }
    #job #manufacturing .inner-sp > * {
        position: relative;
        z-index: 3;
    }
    #job #manufacturing .inner-sp {
        position: relative;
    }
    #job #manufacturing .inner-sp:before {
        content: "";
        width: 85vw;
        height: 123%;
        position: absolute;
        top: 20px;
        right: -6vw;
        background: #f2f2f2;
        z-index: 1;
    }
    #job #manufacturing .schedule-box dd ul li span {
        font-size: 33.75px;
        font-size: 4.2vw;
    }

    /*-- welfare --*/
    #welfare {
        padding-top: 20vw;
    }
    #welfare .child-header {
        margin: 0 auto 8%;
    }
    #welfare .heading-wrap .heading-a {
        width: 100%;
        font-size: 48.75px;
        font-size: 6.5vw;
        padding: 0;
        margin: 0 auto 10%;
    }
    #welfare .heading-wrap .heading-a:before {
        left: -11vw;
        top: -12vw;
    }
    #welfare #training .heading-wrap .heading-a:before {
        top: -7.5vw;
    }
    #welfare .heading-wrap {
        margin: 0 auto 8%;
    }
    #welfare .heading-wrap p {
        width: 100%;
        position: relative;
    }
    #welfare .nav-menu {
        margin-bottom: 0;
    }
    #welfare #benefits {
        margin: 26% auto 0;
    }
    #welfare #benefits dl dt,
    #welfare #benefits ul li {
        font-size: 33.75px;
        font-size: 4.5vw;
        width: 100%;
        margin: 3.5% auto 0;
        padding: 1.4em 0;
        float: none;
    }
    #welfare #benefits ul {
        margin-bottom: 3.5%;
    }
    #welfare #benefits dl {
        margin: 0 auto 3.5%;
        display: block;
    }
    #welfare #benefits dl dt {
        margin: 0;
        height: auto;
        width: 100%;
    }
    #welfare #benefits dl dd {
        width: 100%;
        font-size: 30px;
        font-size: 4vw;
        padding: 5%;
    }
    #welfare #training {
        margin: 24% auto 0;
    }
    #welfare #training > .flex_box {
        display: block;
    }
    #welfare #training dl {
        width: 100%;
        margin: 0 auto 5%;
    }
    #welfare #training dl dt {
        font-size: 37.5px;
        font-size: 5vw;
        padding: 0.7em 0;
    }
    #welfare #training dl dd {
        padding: 6%;
    }
    #welfare #training dl.system-02 dd ul li,
    #welfare #training dl.system-01 dd ul li {
        padding: 1em 0;
    }
    #welfare #training dl dd p {
        margin: 1em 0 0 0;
    }
    #welfare #training dl dd p,
    #welfare #training dl dd ul li {
        font-size: 30px;
        font-size: 4vw;
    }
    #welfare #career {
        margin: 26% auto 0;
    }

    #welfare #photo-gallery {
        margin: 20% auto 0;
    }
    #welfare #photo-gallery .heading-e {
        font-size: 5.3vw;
    }
    #welfare #photo-gallery ul.flex_box {
        width: 85%;
        display: block;
        margin: 9% auto 0;
    }
    #welfare #photo-gallery ul.flex_box li {
        width: 100%;
        margin: 0 auto 13%;
        font-size: 30px;
        font-size: 4vw;
        letter-spacing: -0.04em;
        line-height: 1.5;
    }
    #welfare #photo-gallery ul.flex_box li img {
        display: block;
        margin: 0 auto 4.5%;
    }

    /*-- history --*/
    .page-history .ttl_page {
        justify-content: center;
        height: 60vw;
        margin-bottom: 2vw;
    }
    .timeline-box.inner > .flex_box {
        display: block;
    }
    #history .inner .flex_box .time-right ul {
        padding-left: 6vw;
    }
    #history .inner .flex_box figure,
    #history .inner .flex_box .time-left,
    #history .inner .flex_box .time-right {
        width: 100%;
        margin-top: 1em;
    }
    #history .timeline-box {
        width: 87%;
        width: 87vw;
        max-width: 100%;
        padding-bottom: 0%;
        margin-bottom: 15vw;
    }
    .timeline-box:before {
        left: 1.5vw;
        top: 7px;
    }
    .timeline > li h3:before {
        width: 0.7em;
        height: 0.7em;
        left: -0.7em;
        margin-left: -3vw;
        top: 6px;
    }
    .time-left .timeline > li h3:before {
        left: -0.7em;
        right: inherit;
    }
    .timeline-year .year.hidden {
        opacity: 0;
        display: none;
        margin-top: 0.5em;
    }

    .time-left .timeline-year .year {
        position: static;
        right: inherit;
    }
    .time-left .timeline-year {
        width: 100%;
    }
    .timeline-year {
        width: 100%;
        font-size: 4vw;
        margin-bottom: 1vw;
    }
    .timeline-year .year {
        font-size: 4.8vw;
        margin-right: 1em;
        margin-bottom: 5px;
        display: block;
    }
    .timeline-year .year i {
        font-size: 5.8vw;
        margin-right: 5px;
        position: relative;
        top: -0.1em;
    }
    .timeline-year .month {
        font-size: 3.8vw;
        margin-left: 1.2em;
        letter-spacing: 3px;
        display: block;
    }
    .time-left .timeline-year:first-child .month,
    .timeline-year:first-child .month {
        margin-top: 0;
    }
    .time-left .timeline-year .month,
    .timeline-year .month {
        margin-top: 1em;
        margin-left: 0;
    }
    .timeline-content {
        width: 100%;
        padding: 0 0 0 1em;
        box-sizing: border-box;
    }
    .time-left .timeline-content {
        width: 100%;
        padding: 0 0 0 1em;
        box-sizing: border-box;
    }
    .timeline-content p {
        margin-bottom: 0;
        line-height: 1.4;
        font-size: 3.4vw;
    }
    .timeline > li {
        display: block;
        padding-bottom: 1.4em;
        margin-bottom: 1em;
    }
    #history .inner .flex_box figure {
        width: 100%;
        margin: 0 auto 6%;
        padding: 0 0 0 6vw;
        box-sizing: border-box;
    }
    #history .inner .flex_box .time-left ul {
        padding: 0 0 0 22px;
        padding: 0 0 0 6vw;
        box-sizing: border-box;
    }
    #history .inner .flex_box figure.figure-01,
    #history .inner .flex_box figure.figure-02,
    #history .inner .flex_box figure.figure-02_01,
    #history .inner .flex_box figure.figure-03,
    #history .inner .flex_box figure.figure-04,
    #history .inner .flex_box figure.figure-05 {
        margin-top: 1em;
        margin-bottom: 1.5em;
    }
    #history .inner .flex_box figure.figure-03,
    #history .inner .flex_box figure.figure-04 {
        padding-left: 0;
    }
    #history .inner .flex_box figure figcaption {
        font-size: 3.2vw;
    }

    /*-- data --*/
    #data {
        padding-top: 20vw;
    }
    #data .entry-box {
        margin: 14% auto 0;
    }
    #data .child-header {
        margin-bottom: 9vw;
    }
    #data .page_wrap .align-right {
        margin-bottom: 0;
    }
    #data .page_wrap .data-list li.data-01,
    #data .page_wrap .data-list li.data-02,
    #data .page_wrap .data-list li.data-03,
    #data .page_wrap .data-list li.data-04,
    #data .page_wrap .data-list li.data-05,
    #data .page_wrap .data-list li.data-06,
    #data .page_wrap .data-list li.data-07,
    #data .page_wrap .data-list li.data-08,
    #data .page_wrap .data-list li.data-09,
    #data .page_wrap .data-list li.data-10,
    #data .page_wrap .data-list li.data-11,
    #data .page_wrap .data-list li.data-12 {
        width: 100%;
    }
    /* Max 750 */
}

/* Max 460
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
@media screen and (max-width: 460px) {
    /* Max 460 */
}

/* Max 375
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
@media screen and (max-width: 375px) {
    /* Max 375 */
}

/* Max 320
━━━━━━━━━━━━━━━━━━━―…‥・★・‥…―━━━━━━━━━━━━━━━━━━*/
@media screen and (max-width: 320px) {
    /* Max 320 */
}
