@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    margin: 0 auto;
    padding-top: 60px;
    max-width: 1154px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .contents {
        padding-top: 8vw;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    margin-top: 65px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .footer {
        margin-top: 8vw;
    }
}

/*  footer-container
--------------------------------------------- */
/*  footer-logo
--------------------------------------------- */
.footer-logo__link {
    display: block;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 158px;
    width: 179px;
    height: 0;
    background: url(../img/logo_footer.jpg) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (min-width: 751px) {
    .footer-logo__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-logo__link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .footer-logo__link {
        padding-top: 6.66667vw;
        width: 7.33333vw;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    margin-top: 50px;
    font-size: 0.75rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    line-height: 2;
}

@media screen and (max-width: 750px) {
    .footer-copyright {
        margin-top: 6.4vw;
        font-size: 2.4vw;
        line-height: 1.4;
    }
}

.footer-copyright__txt {
    display: block;
}

.footer-copyright__link {
    display: inline-block;
}

@media screen and (min-width: 751px) {
    .footer-copyright__link:hover {
        text-decoration: underline;
    }
}

/*  footer-linnks
--------------------------------------------- */
.footer-links {
    margin-top: 55px;
    padding: 40px 20px;
    width: 100%;
    background-color: #ffda00;
}

@media screen and (max-width: 750px) {
    .footer-links {
        margin-top: 7.33333vw;
        padding: 5.33333vw 2.66667vw;
    }
}

.footer-links__link {
    display: inline-block;
    font-size: 1.25rem;
}

@media screen and (max-width: 750px) {
    .footer-links__link {
        font-size: 2.66667vw;
    }
}

.footer-links__link + .footer-links__link {
    margin-left: 25px;
}

@media screen and (max-width: 750px) {
    .footer-links__link + .footer-links__link {
        margin-left: 3.33333vw;
    }
}

@media screen and (min-width: 751px) {
    .footer-links__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-links__link:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #ffda00;
}

.mfp-active .windows .header {
    padding-right: 17px;
}

/*  header-container
--------------------------------------------- */
.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 0 auto;
    padding: 0 85px;
    max-width: 1154px;
    height: 100px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .header-container {
        padding: 0 2.34375vw 0 4.42708vw;
    }
}

@media screen and (max-width: 750px) {
    .header-container {
        padding: 0 2vw;
        height: 11.46667vw;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.header-logo__link {
    display: block;
    width: 254px;
    height: 48px;
}

@media screen and (min-width: 751px) {
    .header-logo__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-logo__link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .header-logo__link {
        width: 33.86667vw;
        height: 6.4vw;
    }
}

/*  header-menu
--------------------------------------------- */
.header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

/*  header-btns
--------------------------------------------- */
.header-btns {
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.is-drawer-active .header-btns {
    opacity: 0;
}

.header-btns__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-btns__item {
    width: 170px;
    height: 48px;
}

@media screen and (max-width: 750px) {
    .header-btns__item {
        width: 11.46667vw;
        height: 11.46667vw;
    }
}

.header-btns__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    color: #fff;
    font-weight: bold;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    -webkit-transition: background .3s;
    transition: background .3s;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.header-btns__link--1 {
    background-color: #0b1e3b;
}

.header-btns__link--1:hover {
    background-color: #3c4b62;
}

@media screen and (max-width: 750px) {
    .header-btns__link {
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 0;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}

.header-btns__link-year {
    display: inline-block;
    font-size: 1.375rem;
}

@media screen and (max-width: 750px) {
    .header-btns__link-year {
        font-weight: bold;
        font-size: 2.66667vw;
        line-height: 1;
    }
    .iphone .header-btns__link-year {
        margin-top: .2em;
    }
    .android .header-btns__link-year {
        margin-top: .2em;
    }
}

.header-btns__link-entry {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
    .header-btns__link-entry {
        margin-left: 0;
        font-weight: bold;
        font-size: 2.13333vw;
    }
}

/*  header-nav
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .header-nav__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-nav__link:hover {
        opacity: 0.8;
    }
}

/*  header-hamb
--------------------------------------------- */
.header-hamb {
    position: relative;
    margin: 0 15px;
    padding: 30px 25px 25px;
    cursor: pointer;
}

@media screen and (min-width: 751px) {
    .header-hamb {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-hamb:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .header-hamb {
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .header-hamb {
        margin-right: 2.4vw;
        margin-left: 2.66667vw;
        padding: 2.66667vw 2.13333vw 1.46667vw;
    }
}

.header-hamb__lines {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 38px;
}

@media screen and (max-width: 750px) {
    .header-hamb__lines {
        width: 6.8vw;
        height: 6.4vw;
    }
}

.header-hamb__line {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 8px;
    background-color: #0b1e3b;
    -webkit-transition: top .3s, opacity .3s, -webkit-transform .3s;
    transition: top .3s, opacity .3s, -webkit-transform .3s;
    transition: transform .3s, top .3s, opacity .3s;
    transition: transform .3s, top .3s, opacity .3s, -webkit-transform .3s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@media screen and (max-width: 750px) {
    .header-hamb__line {
        width: 6.66667vw;
        height: 1.06667vw;
    }
}

.header-hamb__line--top {
    top: 0;
}

.header-hamb__line--center {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-hamb__line--bottom {
    top: calc(100% - 8px);
}

@media screen and (max-width: 750px) {
    .header-hamb__line--bottom {
        top: calc(100% - 1.06667vw);
    }
}

.is-drawer-active .header-hamb__line--top {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-225deg);
    transform: translateY(-50%) rotate(-225deg);
}

.is-drawer-active .header-hamb__line--center {
    opacity: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.is-drawer-active .header-hamb__line--bottom {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(225deg);
    transform: translateY(-50%) rotate(225deg);
}

/*  header-drawer
--------------------------------------------- */
.header-drawer {
    overflow: auto;
    padding-top: 22px;
    padding-bottom: 50px;
    width: 100%;
    height: calc(100vh - 100px);
}

@media screen and (min-width: 751px) {
    .iphone .header-drawer {
        padding-top: 0;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 750px) {
    .header-drawer {
        padding-top: 2.93333vw;
        padding-bottom: 16vw;
        height: calc(100vh - 11.46667vw);
    }
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    .header-drawer {
        padding-top: 0;
        padding-bottom: 2.66667vw;
    }
}

.header-drawer__inner {
    overflow: auto;
    height: 100%;
}

.header-drawer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 0 auto 0;
    padding: 0 40px 8px;
    max-width: 810px;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
    .header-drawer__container {
        display: block;
        padding: 0 2.66667vw 1.06667vw;
        width: 76vw;
    }
}

/* ---------------------------------------------
*   l-space
--------------------------------------------- */
.l-space {
    letter-spacing: .05em;
}

/* ---------------------------------------------
*   txt-pos
--------------------------------------------- */
.windows .txt-pos {
    position: relative;
    top: .1em;
    display: inline-block;
}

.txt-pos {
    position: relative;
    top: .1em;
    display: inline-block;
}

.ie .txt-pos--2 {
    top: .2em;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    padding-top: 100px;
}

@media screen and (max-width: 750px) {
    .wrapper {
        padding-top: 11.33333vw;
    }
}

/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-about-us-list
--------------------------------------------- */
.c-about-us-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding-left: 10px;
    max-width: 970px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-about-us-list {
        padding-left: 0;
    }
}

@media screen and (max-width: 750px) {
    .c-about-us-list {
        padding-left: 0;
        width: 70.66667vw;
    }
    .ie .c-about-us-list {
        width: calc(70.66vw - 17px);
    }
}

.c-about-us-list__item {
    position: relative;
    width: calc(100% / 3 - 7.62887%);
    text-align: left;
}

@media screen and (min-width: 751px) {
    .c-about-us-list__item:nth-of-type(1) {
        margin-right: 110px;
    }
    .c-about-us-list__item:nth-of-type(2) {
        margin-right: 108px;
    }
    .c-about-us-list__item:nth-of-type(4) {
        margin-right: 110px;
    }
    .c-about-us-list__item:nth-of-type(5) {
        margin-right: 108px;
    }
    .c-about-us-list__item:nth-of-type(3n) {
        margin-right: 0;
    }
    .c-about-us-list__item:nth-of-type(n+4) {
        margin-top: 35px;
    }
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-about-us-list__item {
        margin-right: 1.92708vw;
        width: calc(100% / 3 - 3.85416vw);
    }
    .c-about-us-list__item:nth-of-type(1) {
        margin-right: 5.72917vw;
    }
    .c-about-us-list__item:nth-of-type(2) {
        left: -15px;
        margin-right: 5.625vw;
    }
    .c-about-us-list__item:nth-of-type(4) {
        margin-right: 5.72917vw;
    }
    .c-about-us-list__item:nth-of-type(5) {
        left: -15px;
        margin-right: 5.625vw;
    }
    .c-about-us-list__item:nth-of-type(n+4) {
        margin-top: 1.82292vw;
    }
}

@media screen and (max-width: 750px) {
    .c-about-us-list__item {
        margin-right: 5.33333vw;
        width: calc(50% - 2.66667vw);
    }
    .ie .c-about-us-list__item {
        width: calc(50% - 2.66667vw - 8px);
    }
    .c-about-us-list__item:nth-of-type(2n) {
        margin-right: 0;
    }
    .c-about-us-list__item:nth-of-type(n+3) {
        margin-top: 5.33333vw;
    }
    .c-about-us-list__item:nth-of-type(n+5) {
        margin-top: 4vw;
    }
}

.c-about-us-list__txt-wrap {
    display: inline-block;
}

.c-about-us-list__txt1 {
    font-size: 1.25rem;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__txt1 {
        font-size: 2.66667vw;
    }
}

.c-about-us-list__txt2 {
    display: inline-block;
    margin-top: 12px;
    border-bottom: 1px solid #0b1e3b;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    line-height: 1.4;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__txt2 {
        margin-top: 1.6vw;
        font-size: 3.2vw;
    }
}

.c-about-us-list__txt3 {
    margin-top: 10px;
    font-size: 0.9375rem;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__txt3 {
        margin-top: 1.33333vw;
        font-size: 2vw;
    }
}

.c-about-us-list__fig {
    position: absolute;
}

.c-about-us-list__fig--1 {
    top: 12px;
    right: 8px;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__fig--1 {
        top: 1.6vw;
        right: 1.6vw;
        width: 8.13333vw;
        height: 11.46667vw;
    }
}

.c-about-us-list__fig--2 {
    top: 12px;
    right: -25px;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__fig--2 {
        top: 1.6vw;
        right: 0;
        width: 11.46667vw;
        height: 11.46667vw;
    }
}

.c-about-us-list__fig--3 {
    top: 12px;
    right: 0;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__fig--3 {
        top: 1.6vw;
        right: 0;
        width: 11.46667vw;
        height: 10.13333vw;
    }
}

.c-about-us-list__fig--4 {
    top: -20px;
    right: 8px;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__fig--4 {
        top: -0.66667vw;
        right: 2vw;
        width: 9.73333vw;
        height: 12.93333vw;
    }
}

.c-about-us-list__fig--5 {
    top: 0;
    right: -25px;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__fig--5 {
        right: 0.53333vw;
        width: 10.66667vw;
        height: 9.86667vw;
    }
}

.c-about-us-list__fig--6 {
    top: 0;
    right: 0;
}

@media screen and (max-width: 750px) {
    .c-about-us-list__fig--6 {
        top: 0.93333vw;
        right: 2vw;
        width: 9.33333vw;
        height: 9.06667vw;
    }
}

/* ---------------------------------------------
*   c-about-us
--------------------------------------------- */
.c-about-us {
    margin-top: 47px;
}

@media screen and (max-width: 750px) {
    .c-about-us {
        margin-top: 6.26667vw;
        margin-bottom: 6.66667vw;
    }
}

.c-about-us__head {
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-about-us__head {
        margin-bottom: 5.33333vw;
    }
}

.c-about-us__head-txt {
    font-size: 15px;
}

@media screen and (max-width: 750px) {
    .c-about-us__head-txt {
        font-size: 2vw;
    }
}

/* ---------------------------------------------
*   c-acc-item
--------------------------------------------- */
.c-acc-item + .c-acc-item {
    margin-top: 35px;
}

@media screen and (max-width: 750px) {
    .c-acc-item + .c-acc-item {
        margin-top: 4.66667vw;
    }
}

.c-acc-item__head {
    position: relative;
    padding: 18px 100px;
    border: 2px solid #0b1e3b;
    background-color: #fffbe5;
    cursor: pointer;
    -webkit-transition: background .3s;
    transition: background .3s;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-acc-item__head {
        padding: 18px 5.20833vw;
    }
}

@media screen and (min-width: 751px) {
    .c-acc-item__head:hover {
        background-color: #fff6bf;
    }
}

@media screen and (max-width: 750px) {
    .c-acc-item__head {
        padding: 2.53333vw 6vw;
        border-width: 0.26667vw;
    }
}

.c-acc-item__question {
    font-weight: bold;
    font-size: 1.25rem;
}

@media screen and (max-width: 750px) {
    .c-acc-item__question {
        font-size: 2.66667vw;
    }
}

.c-acc-item__arrow {
    position: absolute;
    top: 47%;
    right: 4%;
    display: inline-block;
    width: 9px;
    height: 9px;
    border-right: 2px solid #0b1e3b;
    border-bottom: 2px solid #0b1e3b;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .c-acc-item__arrow {
        width: 1.2vw;
        height: 1.2vw;
        border-width: 0.26667vw;
    }
}

.is-acc-open .c-acc-item__arrow {
    -webkit-transform: translateY(0%) rotate(-135deg);
    transform: translateY(0%) rotate(-135deg);
}

/* ---------------------------------------------
*   c-acc-wrap
--------------------------------------------- */
.c-acc-wrap {
    margin: 65px auto 0;
    width: 86.65511%;
}

@media screen and (max-width: 750px) {
    .c-acc-wrap {
        margin-top: 8vw;
        width: 82.66667vw;
    }
}

/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
.c-btn {
    display: inline-block;
    padding: 20px 50px 23px 38px;
    background-color: #6d7889;
    -webkit-box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.15);
    box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.15);
    color: #fff;
    -webkit-transition: background .3s, -webkit-box-shadow .3s;
    transition: background .3s, -webkit-box-shadow .3s;
    transition: background .3s, box-shadow .3s;
    transition: background .3s, box-shadow .3s, -webkit-box-shadow .3s;
}

@media screen and (max-width: 750px) {
    .c-btn {
        padding: 5.33333vw 12vw 4.66667vw 10.66667vw;
        -webkit-box-shadow: 0.8vw 0.8vw 0px 0px rgba(11, 30, 59, 0.15);
        box-shadow: 0.8vw 0.8vw 0px 0px rgba(11, 30, 59, 0.15);
    }
}

@media screen and (min-width: 751px) {
    .c-btn:hover {
        background-color: #b6bbc4;
        -webkit-box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.3);
        box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.3);
    }
}

.c-btn__ico {
    display: inline-block;
    margin-right: 12px;
    width: 29px;
}

@media screen and (max-width: 750px) {
    .c-btn__ico {
        width: 6vw;
    }
}

.c-btn__txt {
    font-weight: bold;
    font-size: 1.25rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .c-btn__txt {
        font-size: 4vw;
    }
}

/* ---------------------------------------------
*   c-comment-msg
--------------------------------------------- */
.c-comment-msg {
    margin-top: 44px;
    padding: 0 170px;
    font-size: 1.25rem;
    line-height: 2.4;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-comment-msg {
        padding: 0 9.09091vw;
    }
}

@media screen and (max-width: 750px) {
    .c-comment-msg {
        margin-top: 6.66667vw;
        padding: 0 9.6vw;
        font-size: 2.66667vw;
    }
}

/* ---------------------------------------------
*   c-entry-btns
--------------------------------------------- */
.c-entry-btns {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

@media screen and (max-width: 750px) {
    .c-entry-btns {
        margin-top: 3.33333vw;
    }
}

.c-section .c-entry-btns {
    margin-top: 50px;
    padding: 0 96px;
}

@media screen and (max-width: 750px) {
    .c-section .c-entry-btns {
        margin-top: 8vw;
        padding: 0 6vw;
    }
}

.c-entry-btns__list--2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

.c-entry-btns__item {
    width: 344px;
    height: 78px;
}

@media screen and (max-width: 750px) {
    .c-entry-btns__item {
        width: 69.6vw;
        height: 16vw;
    }
}

.c-entry-btns__item + .c-entry-btns__item {
    margin-top: 37px;
}

.c-section .c-entry-btns__item + .c-entry-btns__item {
    margin-top: 0;
    margin-left: 85px;
}

.c-entry-btns__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-bottom: 8px;
    width: 100%;
    height: 100%;
    border-radius: 39px;
    -webkit-box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.15);
    box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.15);
    color: #fff;
    font-weight: bold;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    -webkit-transition: background .3s, -webkit-box-shadow .3s;
    transition: background .3s, -webkit-box-shadow .3s;
    transition: background .3s, box-shadow .3s;
    transition: background .3s, box-shadow .3s, -webkit-box-shadow .3s;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .c-entry-btns__link {
        margin-bottom: 1.06667vw;
        border-radius: 8vw;
        -webkit-box-shadow: 1.06667vw 1.06667vw 0px 0px rgba(11, 30, 59, 0.15);
        box-shadow: 1.06667vw 1.06667vw 0px 0px rgba(11, 30, 59, 0.15);
    }
}

@media screen and (min-width: 751px) {
    .c-entry-btns__link:hover {
        -webkit-box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.3);
        box-shadow: 0px 8px 0px 0px rgba(11, 30, 59, 0.3);
    }
}

.c-entry-btns__link--1 {
    background-color: #0b1e3b;
}

@media screen and (min-width: 751px) {
    .c-entry-btns__link--1:hover {
        background-color: #3c4b62;
    }
}

.c-entry-btns__ico {
    display: inline-block;
    margin-right: 25px;
    margin-left: 10px;
    width: 24px;
}

@media screen and (max-width: 750px) {
    .c-entry-btns__ico {
        margin-right: 4.66667vw;
        margin-left: 3.2vw;
        width: 5.33333vw;
    }
    .c-entry-btns__ico img {
        width: 100%;
    }
}

.c-section .c-entry-btns__ico {
    margin-right: 14px;
    margin-left: 15px;
}

@media screen and (max-width: 750px) {
    .c-section .c-entry-btns__ico {
        margin-right: 1.33333vw;
        margin-left: 2.66667vw;
    }
}

.c-entry-btns__link-year {
    display: inline-block;
    margin-right: 10px;
    letter-spacing: .2em;
    font-size: 1.875rem;
}

.c-section .c-entry-btns__link-year {
    margin-right: 6px;
    letter-spacing: 0;
}

@media screen and (max-width: 750px) {
    .c-section .c-entry-btns__link-year {
        margin-right: 1.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .c-entry-btns__link-year {
        margin-right: 2vw;
        font-size: 6vw;
    }
}

.c-entry-btns__link-entry {
    display: inline-block;
    letter-spacing: .2em;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .c-entry-btns__link-entry {
        position: relative;
        top: .1em;
        font-size: 3.2vw;
    }
}

.c-section .c-entry-btns__link-entry {
    letter-spacing: 0;
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
.c-figure {
    padding: 0 72px;
    text-align: center;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-figure {
        padding: 0 3.75vw;
    }
}

@media screen and (max-width: 750px) {
    .c-figure {
        padding: 0 9.6vw;
    }
}

.c-figure img {
    width: 100%;
}

.c-figure__caption {
    margin-top: 10px;
    padding-right: 140px;
    text-align: right;
    font-size: 1.25rem;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-figure__caption {
        padding-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .c-figure__caption {
        margin-top: 1.33333vw;
        padding-right: 0;
        font-size: 2.66667vw;
    }
}

/* ---------------------------------------------
*   c-flow-tabel
--------------------------------------------- */
.c-flow-tabel {
    padding-left: 170px;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-flow-tabel {
        padding-left: 8.85417vw;
    }
}

@media screen and (max-width: 750px) {
    .c-flow-tabel {
        padding-left: 13.33333vw;
    }
}

.c-flow-tabel__datalist {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-flow-tabel__datalist + .c-flow-tabel__datalist {
    margin-top: 35px;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__datalist + .c-flow-tabel__datalist {
        margin-top: 5.06667vw;
    }
}

.c-flow-tabel__datalist:before {
    position: absolute;
    top: 0;
    left: -50px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0b1e3b;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__datalist:before {
        left: -6.66667vw;
        width: 4.26667vw;
        height: 4.26667vw;
    }
}

.c-flow-tabel__datalist:not(:last-of-type):after {
    position: absolute;
    top: 30px;
    left: -40px;
    width: 12px;
    height: 110%;
    background-color: #0b1e3b;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__datalist:not(:last-of-type):after {
        top: 4vw;
        left: -5.33333vw;
        width: 1.6vw;
    }
}

.c-flow-tabel__datattl {
    padding-right: 1em;
    width: 262px;
    font-weight: bold;
    font-size: 1.875rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    line-height: 1;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__datattl {
        width: 34.93333vw;
        font-size: 4vw;
    }
}

.c-flow-tabel__datadetail {
    margin-top: -5px;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__datadetail {
        margin-top: -0.66667vw;
    }
}

.c-flow-tabel__datadetail + .c-flow-tabel__datadetail {
    margin-top: 1.8em;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__datadetail + .c-flow-tabel__datadetail {
        margin-top: 1.2em;
    }
}

.c-flow-tabel__head-txt {
    font-weight: bold;
    font-size: 1.875rem;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__head-txt {
        font-size: 4vw;
    }
}

.c-flow-tabel__txt {
    font-size: 1.25rem;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__txt {
        font-size: 2.66667vw;
    }
}

.c-flow-tabel__comment {
    margin-top: 25px;
    font-size: 1.25rem;
}

@media screen and (max-width: 750px) {
    .c-flow-tabel__comment {
        margin-top: 3.33333vw;
        font-size: 2.66667vw;
    }
}

/* ---------------------------------------------
*   c-form-btn
--------------------------------------------- */
.c-form-btn {
    margin: 60px auto 0;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-form-btn {
        margin-top: 8vw;
    }
}

/* ---------------------------------------------
*   c-images
--------------------------------------------- */
.c-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 60px auto 0;
    max-width: 970px;
}

@media screen and (max-width: 750px) {
    .c-images {
        margin: 6.66667vw calc(50% - 50vw) 0;
        margin-top: 6.66667vw;
        width: 100vw;
    }
}

.c-images__img {
    width: 50%;
    height: 436px;
}

@media screen and (max-width: 750px) {
    .c-images__img {
        height: 58.13333vw;
    }
}

.c-images__img--1 {
    background: url(../img/img1.jpg) center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-images__img--1 {
        background: url(../img/sp/img1.jpg) center center no-repeat;
        background-size: 100% auto;
    }
}

.c-images__img--2 {
    background: url(../img/img2.jpg) center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-images__img--2 {
        background: url(../img/sp/img2.jpg) top center no-repeat;
        background-size: 100% auto;
    }
}

/* ---------------------------------------------
*   c-info
--------------------------------------------- */
.c-info {
    margin: 0 auto 55px;
    padding: 16px 20px 25px;
    max-width: 730px;
    border: 3px solid #0b1e3b;
    text-align: center;
}

.windows .c-info {
    max-width: calc(730px - 17px);
}

@media screen and (max-width: 750px) {
    .c-info {
        margin-bottom: 8.26667vw;
        padding: 2.13333vw 2.66667vw 3.33333vw;
        width: 70.66667vw;
        border: 0.4vw solid #0b1e3b;
    }
}

.c-info__ttl {
    position: relative;
    margin: 0 auto;
    padding-bottom: 20px;
    width: 410px;
}

@media screen and (max-width: 750px) {
    .c-info__ttl {
        padding-bottom: 2.66667vw;
        width: 54.66667vw;
    }
}

.c-info__ttl:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #0b1e3b;
    content: '';
}

.c-info__txt {
    margin-top: 22px;
    letter-spacing: .13em;
    line-height: 1.9;
}

@media screen and (max-width: 750px) {
    .c-info__txt {
        margin-top: 3.2vw;
        letter-spacing: 0;
        font-size: 2.13333vw;
    }
}

/* ---------------------------------------------
*   c-lead-wrap
--------------------------------------------- */
.c-lead-wrap {
    margin: 0 auto;
    max-width: 760px;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-lead-wrap {
        padding: 0 5.72917vw;
    }
}

@media screen and (max-width: 750px) {
    .c-lead-wrap {
        width: 68.8vw;
    }
}

.c-lead-wrap__ttl {
    margin-bottom: 14px;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.6;
}

@media screen and (max-width: 750px) {
    .c-lead-wrap__ttl {
        margin-bottom: 2.13333vw;
        font-size: 4vw;
    }
}

.c-lead-wrap__txt {
    font-size: 20px;
    line-height: 2.4;
}

@media screen and (max-width: 750px) {
    .c-lead-wrap__txt {
        font-size: 2.66667vw;
    }
}

/* ---------------------------------------------
*   mfpデフォルトのスタイルを上書き
--------------------------------------------- */
.mfp-wrap {
    overflow: auto;
}

@media screen and (max-width: 750px) {
    .mfp-wrap {
        position: fixed !important;
        top: 50% !important;
        -webkit-transform: translateY(-50%) !important;
        transform: translateY(-50%) !important;
    }
}

.mfp-container {
    padding: 0 60px;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    .mfp-container {
        padding: 0 14.66667vw;
    }
}

.mfp-content {
    margin: 0 auto 0;
    max-width: 970px;
}

.mfp-bg {
    background-color: #fff;
    cursor: pointer;
}

/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.9;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease-out;
    transition: opacity 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* ---------------------------------------------
*   c-mv
--------------------------------------------- */
.c-mv {
    position: relative;
    width: 100%;
}

.c-mv__txtbox {
    position: absolute;
    top: 100px;
    left: calc(50% - 40px);
    z-index: 9;
    padding: 52px 48px 40px;
    width: 525px;
    height: 560px;
    background-color: rgba(255, 255, 255, 0.85);
}

@media screen and (max-width: 1100px) {
    .c-mv__txtbox {
        right: 65px;
        left: auto;
    }
}

@media screen and (max-width: 750px) {
    .c-mv__txtbox {
        top: 56vw;
        right: auto;
        left: 50%;
        padding: 7.2vw 6.4vw 5.06667vw;
        width: 70vw;
        height: 74.66667vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.c-mv__txt {
    overflow: hidden;
    padding-top: 468px;
    width: 100%;
    height: 100%;
    height: 0;
    background: url(../img/txt_catch.png) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 750px) {
    .c-mv__txt {
        padding-top: 62.4vw;
    }
}

.c-mv__slide {
    overflow: hidden;
    height: 735px;
    outline: none;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
    .c-mv__slide {
        height: 140vw;
    }
}

/*  slickのデフォルトcssを上書き
--------------------------------------------- */
.slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .slick-dots {
        bottom: 4vw;
    }
}

.slick-dots li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin: 0 14px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .slick-dots li {
        margin: 0 1.86667vw;
    }
}

.slick-dots li button {
    overflow: hidden;
    padding-top: 15px;
    width: 15px;
    height: 0;
    border-radius: 50%;
    background-color: #fff;
    color: transparent;
}

@media screen and (min-width: 751px) {
    .slick-dots li button {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .slick-dots li button:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .slick-dots li button {
        padding-top: 2vw;
        width: 2vw;
    }
}

.slick-dots li.slick-active button {
    background-color: #ffda00;
}

/* ---------------------------------------------
*   c-nav-list
--------------------------------------------- */
.c-nav-list {
    padding-bottom: 8px;
    width: 310px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
}

.windows .c-nav-list {
    margin-right: 17px;
}

@media screen and (max-width: 750px) {
    .c-nav-list {
        padding-bottom: 0;
        width: 100%;
    }
}

.c-nav-list__item + .c-nav-list__item {
    border-top: 2px solid #0b1e3b;
}

@media screen and (max-width: 750px) {
    .c-nav-list__item + .c-nav-list__item {
        border-width: 0.53333vw;
    }
}

.c-nav-list__link {
    position: relative;
    display: block;
    padding: 1em 0;
    font-weight: bold;
    font-size: 1.125rem;
}

@media screen and (min-width: 751px) {
    .c-nav-list__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-nav-list__link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-nav-list__link {
        padding: 1.1em 0;
        font-size: 4vw;
    }
}

.c-nav-list__link:after {
    display: block;
    content: attr(data-txt);
    font-size: 0.625rem;
}

@media screen and (max-width: 750px) {
    .c-nav-list__link:after {
        letter-spacing: .06em;
        font-size: 2.4vw;
    }
}

/* ---------------------------------------------
*   white-popup
--------------------------------------------- */
.white-popup {
    padding: 50px 0;
}

@media screen and (max-width: 750px) {
    .white-popup {
        padding: 6.66667vw 0;
    }
}

/* ---------------------------------------------
*   c-popup-contents
--------------------------------------------- */
.c-popup-contents__img {
    margin-bottom: 32px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .c-popup-contents__img {
        margin-bottom: 5.73333vw;
    }
}

.c-popup-contents__ttl {
    margin-bottom: 20px;
    padding: 0 100px;
    text-align: center;
    font-weight: bold;
    font-size: 1.875rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .c-popup-contents__ttl {
        margin-bottom: 6.4vw;
        padding: 0;
        font-size: 4vw;
    }
}

.c-popup-contents__ttl-sub {
    display: block;
    margin-top: 5px;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-popup-contents__ttl-sub {
        margin-top: 0.66667vw;
        font-size: 2.4vw;
    }
}

.c-popup-contents__txt {
    margin: 0 auto 0;
    padding: 0 30px;
    max-width: 780px;
    font-size: 1.25rem;
    line-height: 2.4;
}

@media screen and (max-width: 750px) {
    .c-popup-contents__txt {
        padding: 0 1.33333vw;
        font-size: 2.66667vw;
    }
}

.c-popup-contents__close {
    margin: 200px auto 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    .c-popup-contents__close {
        margin-top: 26.66667vw;
        width: 10.66667vw;
        height: 10.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-contents__close svg {
        width: 10.66667vw;
        height: 10.66667vw;
    }
}

.c-popup-contents__close svg .cls-1, .c-popup-contents__close svg .cls-2 {
    -webkit-transition: fill .3s;
    transition: fill .3s;

    fill: #0b1e3b;
}

@media screen and (min-width: 751px) {
    .c-popup-contents__close svg .cls-1:hover, .c-popup-contents__close svg .cls-2:hover {
        fill: #3c4b62;
    }
}

/* ---------------------------------------------
*   c-popup-list
--------------------------------------------- */
.c-popup-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px auto 0;
    max-width: 970px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-popup-list {
        width: 88.18182vw;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-list {
        margin-top: 7.6vw;
        width: 70.66667vw;
    }
}

.c-popup-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-right: 110px;
    width: 250px;
    height: 250px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (min-width: 751px) {
    .c-popup-list__item:nth-of-type(3n) {
        margin-right: 0;
    }
}

.c-popup-list__item:nth-of-type(n+4) {
    margin-top: 60px;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-popup-list__item {
        margin-right: 10vw;
        width: 22.72727vw;
        height: 22.72727vw;
    }
    .c-popup-list__item:nth-of-type(n+4) {
        margin-top: 6.36364vw;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-list__item {
        margin-right: 4vw;
        width: 33.33333vw;
        height: 33.33333vw;
    }
    .c-popup-list__item:nth-of-type(2n) {
        margin-right: 0;
    }
    .c-popup-list__item:nth-of-type(n+3) {
        margin-top: 4vw;
    }
}

.c-popup-list__item--last {
    -ms-flex-pack: center;

    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .c-popup-list__item--last {
        margin-right: 0;
        padding-top: 0.66667vw;
        width: 100%;
        height: auto;
    }
}

.c-popup-list__trigger {
    position: relative;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    border: 3px solid #0b1e3b;
    text-align: center;
    cursor: pointer;
    -webkit-transition: border .3s, color .3s;
    transition: border .3s, color .3s;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.c-popup-list__trigger:hover {
    border-color: #3c4b62;
    color: #3c4b62;
}

.c-popup-list__trigger:hover .c-popup-list__ico:before {
    background-color: #3c4b62;
}

.c-popup-list__trigger:hover .c-popup-list__ico:after {
    background-color: #3c4b62;
}

@media screen and (max-width: 750px) {
    .c-popup-list__trigger {
        border-width: 0.4vw;
    }
}

.c-popup-list__link-txt {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-popup-list__link-txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-list__link-txt {
        font-size: 3.2vw;
    }
}

.c-popup-list__ico {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: inline-block;
    width: 16px;
    height: 16px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-popup-list__ico {
        bottom: 1.81818vw;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-list__ico {
        bottom: 2.66667vw;
        width: 2.13333vw;
        height: 2.13333vw;
    }
}

.c-popup-list__ico:before, .c-popup-list__ico:after {
    position: absolute;
    background-color: #0b1e3b;
    content: '';
    -webkit-transition: background .3s;
    transition: background .3s;
}

.c-popup-list__ico:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-popup-list__ico:before {
        height: 2px;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-list__ico:before {
        height: 2px;
    }
}

.c-popup-list__ico:after {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-popup-list__ico:after {
        width: 2px;
    }
}

@media screen and (max-width: 750px) {
    .c-popup-list__ico:after {
        width: 2px;
    }
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section {
    margin-bottom: 55px;
}

@media screen and (max-width: 750px) {
    .c-section {
        margin-bottom: 7.33333vw;
    }
}

.c-section__head {
    margin-bottom: 55px;
    padding: 30px 0;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-section__head {
        margin-bottom: 6.66667vw;
        padding: 4vw 0;
    }
}

.c-section__head--about {
    background: url(../img/bg_about.jpg) center center no-repeat;
    background-size: cover;
}

.c-section__head--training {
    background: url(../img/bg_training.jpg) center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-section__head--training {
        margin-bottom: 5.6vw;
    }
}

.c-section__head--recruit {
    background: url(../img/bg_recruit.jpg) center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-section__head--recruit {
        margin-bottom: 8vw;
    }
}

.c-section__head--flow {
    background: url(../img/bg_flow.jpg) center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-section__head--flow {
        margin-bottom: 7.73333vw;
    }
}

.c-section__head--comment {
    background: url(../img/bg_comment.jpg) center center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .c-section__head--comment {
        margin-bottom: 8vw;
    }
}

.c-section__head--faq {
    background: url(../img/bg_faq.jpg) center center no-repeat;
    background-size: cover;
}

.c-section__head--contact {
    background: url(../img/bg_contact.jpg) center center no-repeat;
    background-size: cover;
}

.c-section__head-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin: 0 auto;
    width: 405px;
    height: 100px;
    background-color: #fff;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 750px) {
    .c-section__head-inner {
        width: 54vw;
        height: 13.33333vw;
    }
}

.c-section__body {
    padding: 0 20px;
}

@media screen and (max-width: 750px) {
    .c-section__body {
        padding: 0 2.66667vw;
    }
}

.c-section__body-wrap {
    margin: 0 auto;
    max-width: 965px;
}

@media screen and (max-width: 750px) {
    .c-section__body-wrap {
        width: 82.66667vw;
    }
}

/* ---------------------------------------------
*   c-tabel
--------------------------------------------- */
.c-tabel {
    margin: 0 auto;
    max-width: 970px;
    border-top: 1px solid #0b1e3b;
    border-bottom: 1px solid #0b1e3b;
}

@media screen and (max-width: 750px) {
    .c-tabel {
        width: 83.33333vw;
    }
}

.c-tabel__datalist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-tabel__datalist + .c-tabel__datalist {
    border-top: 1px solid #0b1e3b;
}

.c-tabel__datattl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding: 0 15px;
    width: 130px;
    background-color: #ffda00;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    line-height: 1.2;

    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-tabel__datattl {
        padding: 0 2vw;
        width: 18.66667vw;
        font-size: 2.66667vw;
    }
}

.c-tabel__datadetail {
    padding: 22px 15px;
    font-size: 1.25rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .c-tabel__datadetail {
        padding: 2.93333vw 2vw;
        font-size: 2.66667vw;
    }
}

.c-tabel__datadetail--1 {
    padding: 35px 15px;
}

@media screen and (max-width: 750px) {
    .c-tabel__datadetail--1 {
        padding: 4.66667vw 2vw;
    }
}

@media screen and (max-width: 750px) {
    .c-tabel__datadetail--sp {
        padding: 2.93333vw 2vw;
    }
}

.c-tabel__txt + .c-tabel__txt {
    margin-top: 1.5em;
}

.c-tabel__txt + .c-tabel__txt--1 {
    margin-top: 3em;
}

/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    font-weight: bold;
    font-size: 1.875rem;
}

@media screen and (max-width: 750px) {
    .c-ttl {
        font-size: 4vw;
    }
}

.c-ttl:after {
    display: block;
    color: #858e9d;
    content: attr(data-txt);
    font-weight: normal;
    font-size: 1.125rem;
    line-height: 1.2;
}

@media screen and (max-width: 750px) {
    .c-ttl:after {
        font-size: 2.4vw;
    }
}

/* ---------------------------------------------
*   c-ttl2
--------------------------------------------- */
.c-ttl2 {
    display: inline-block;
    margin-bottom: 10px;
    border-bottom: 1px solid #0b1e3b;
    font-weight: bold;
    font-size: 1.875rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, "メイリオ", sans-serif;
    line-height: 1.3;
}

@media screen and (max-width: 750px) {
    .c-ttl2 {
        margin-bottom: 1.33333vw;
        font-size: 4vw;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    padding: 35px 96px 0;
    font-size: 1.25rem;
}

@media screen and (min-width: 751px) and (max-width: 1100px) {
    .c-txt {
        padding: 35px 5vw 0;
    }
}

@media screen and (max-width: 750px) {
    .c-txt {
        padding: 4.66667vw 6.66667vw 0;
        font-size: 2.66667vw;
    }
}

.c-txt--2 {
    padding-top: 0;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/*  js-drawer
--------------------------------------------- */
.js-drawer {
    display: none;
}

/*  js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    pointer-events: none;
}

/*  js-acc-target
--------------------------------------------- */
.js-acc-target {
    display: none;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !important;
}

/* ---------------------------------------------
*   color
--------------------------------------------- */
.color-red {
    color: #e31b13;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

@media screen and (min-width: 769px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (min-width: 751px) and (max-width: 768px) {
    .tb-hide {
        display: none !important;
    }
}

@media screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.66667vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.33333vw !important;
    }
    .mgt-sp--15 {
        margin-top: 2vw !important;
    }
    .mgt-sp--20 {
        margin-top: 2.66667vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.33333vw !important;
    }
    .mgt-sp--30 {
        margin-top: 4vw !important;
    }
    .mgt-sp--35 {
        margin-top: 4.66667vw !important;
    }
    .mgt-sp--40 {
        margin-top: 5.33333vw !important;
    }
    .mgt-sp--45 {
        margin-top: 6vw !important;
    }
    .mgt-sp--50 {
        margin-top: 6.66667vw !important;
    }
    .mgt-sp--55 {
        margin-top: 7.33333vw !important;
    }
    .mgt-sp--60 {
        margin-top: 8vw !important;
    }
    .mgt-sp--65 {
        margin-top: 8.66667vw !important;
    }
    .mgt-sp--70 {
        margin-top: 9.33333vw !important;
    }
    .mgt-sp--75 {
        margin-top: 10vw !important;
    }
    .mgt-sp--80 {
        margin-top: 10.66667vw !important;
    }
    .mgt-sp--85 {
        margin-top: 11.33333vw !important;
    }
    .mgt-sp--90 {
        margin-top: 12vw !important;
    }
    .mgt-sp--95 {
        margin-top: 12.66667vw !important;
    }
    .mgt-sp--100 {
        margin-top: 13.33333vw !important;
    }
    .mgt-sp--105 {
        margin-top: 14vw !important;
    }
    .mgt-sp--110 {
        margin-top: 14.66667vw !important;
    }
    .mgt-sp--115 {
        margin-top: 15.33333vw !important;
    }
    .mgt-sp--120 {
        margin-top: 16vw !important;
    }
    .mgt-sp--125 {
        margin-top: 16.66667vw !important;
    }
    .mgt-sp--130 {
        margin-top: 17.33333vw !important;
    }
    .mgt-sp--135 {
        margin-top: 18vw !important;
    }
    .mgt-sp--140 {
        margin-top: 18.66667vw !important;
    }
    .mgt-sp--145 {
        margin-top: 19.33333vw !important;
    }
    .mgt-sp--150 {
        margin-top: 20vw !important;
    }
    .mgt-sp--155 {
        margin-top: 20.66667vw !important;
    }
    .mgt-sp--160 {
        margin-top: 21.33333vw !important;
    }
    .mgt-sp--165 {
        margin-top: 22vw !important;
    }
    .mgt-sp--170 {
        margin-top: 22.66667vw !important;
    }
    .mgt-sp--175 {
        margin-top: 23.33333vw !important;
    }
    .mgt-sp--180 {
        margin-top: 24vw !important;
    }
    .mgt-sp--185 {
        margin-top: 24.66667vw !important;
    }
    .mgt-sp--190 {
        margin-top: 25.33333vw !important;
    }
    .mgt-sp--195 {
        margin-top: 26vw !important;
    }
    .mgt-sp--200 {
        margin-top: 26.66667vw !important;
    }
    .mgt-sp--205 {
        margin-top: 27.33333vw !important;
    }
    .mgt-sp--210 {
        margin-top: 28vw !important;
    }
    .mgt-sp--215 {
        margin-top: 28.66667vw !important;
    }
    .mgt-sp--220 {
        margin-top: 29.33333vw !important;
    }
    .mgt-sp--225 {
        margin-top: 30vw !important;
    }
    .mgt-sp--230 {
        margin-top: 30.66667vw !important;
    }
    .mgt-sp--235 {
        margin-top: 31.33333vw !important;
    }
    .mgt-sp--240 {
        margin-top: 32vw !important;
    }
    .mgt-sp--245 {
        margin-top: 32.66667vw !important;
    }
    .mgt-sp--250 {
        margin-top: 33.33333vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.66667vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.33333vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 2vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 2.66667vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.33333vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 4.66667vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 5.33333vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 6vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 6.66667vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 7.33333vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 8.66667vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 9.33333vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 10vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 10.66667vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 11.33333vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 12.66667vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 13.33333vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 14vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 14.66667vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 15.33333vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 16.66667vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 17.33333vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 18vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 18.66667vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 19.33333vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 20.66667vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 21.33333vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 22vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 22.66667vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 23.33333vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 24.66667vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 25.33333vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 26vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 26.66667vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 27.33333vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 28.66667vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 29.33333vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 30vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 30.66667vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 31.33333vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 32.66667vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 33.33333vw !important;
    }
}
/*-----------------------------*/
/*ABC-MART 2023 RECRUIT*/
@media screen and (max-width: 750px) {
.c-info {
    width: 76vw;
  }
}
@media screen and (max-width: 500px) {
.c-info {
    width: 94vw;
  }
}
/*採用担当の画像幅調整*/
img.sp-hide {
    max-width: 780px;
}

/*-----------------------------------*/
/*KV上の白枠非表示*/
.c-mv__txtbox {
    display: none;
}

/* ヘッダーにオッシュマンズのロゴ追加 */

/*  header-container
--------------------------------------------- */
.header-container {
  justify-content: start;
}
.logo-oshmans .header-logo__link {
  height: auto;
  background-color: #ffffff;
}
.logo-oshmans {
  margin-left: 2em;
}
@media screen and (max-width: 900px) {
  .header-logo__link {
    width: 29vw;
    height: auto;
  }
  .logo-oshmans {
    margin-left: 1em;
  }
}
@media screen and (min-width: 751px) and (max-width: 930px) {
  .header-logo__link {
    width: 24vw;
  }
}
.header-menu {
  margin-left: auto;
}