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

Description:
    サイトで共通使用する汎用モジュール及びページ固有のスタイルを記述する
    汎用モジュールは、アルファベット降順(A->Z)に記述する
    ページ固有のスタイルは、ディレクトリ名のアルファベット降順(A->Z)、
    ファイル名のアルファベット降順(A->Z)にそれぞれ記述する

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ---------------------------------------------
*   attenstion
--------------------------------------------- */
.attenstion {
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .attenstion {
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   font
--------------------------------------------- */
@font-face {
    font-family: "JosefinSans-SemiBoldItalic";
    src: url("../font/JosefinSans-SemiBoldItalic.woff") format("woff");
}

.josefinsans-i {
    position: relative;
    top: .1em;
    font-family: "JosefinSans-SemiBoldItalic";
}

@font-face {
    font-family: "JosefinSans-Regular";
    src: url("../font/JosefinSans-Regular.woff") format("woff");
}

.josefinsans {
    position: relative;
    top: .1em;
    font-family: "JosefinSans-Regular";
}

@font-face {
    font-family: "JosefinSans-bold";
    src: url("../font/JosefinSans-SemiBoldItalic.woff") format("woff");
}

.josefinsans-bold {
    position: relative;
    top: .1em;
    font-family: "JosefinSans-bold";
}

.skew {
    /* 傾き角度 */
    position: relative;
    top: .1em;
    display: inline-block;
    -webkit-transform: skewX(-7deg);
    transform: skewX(-7deg);
}

/* ---------------------------------------------
*   全体
--------------------------------------------- */
input,
button,
textarea,
select {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-indent: 0.01px;
    text-overflow: '';

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

textarea {
    display: block;
    overflow: auto;
    resize: none;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    min-width: initial;
    min-width: auto;
}

span.l-position {
    position: relative;
    top: .1em;
}

.android span.l-position--android {
    position: relative;
    top: .2em;
}

span.l-position--faq {
    top: .1em;
}

.ie span.l-position--faq {
    top: .1em;
}

span.l-position--none {
    top: 0;
}

.ie span.l-position--none {
    position: relative;
    top: .2em;
}

.windows.chrome span.l-position--none {
    position: relative;
    top: .1em;
}

body.ie span.l-position, body.ie span.l-position-ie {
    position: relative;
    top: .2em;
}

.js-tel-disabled {
    outline: none;
    cursor: default;
}

.body-fixed {
    position: fixed;
    top: 0;
}
@media screen and (min-width: 751px) {
    .body-fixed {
        position: static !important;
    }
}

/* ---------------------------------------------
*   mod
--------------------------------------------- */
.mod__border-ttl {
    padding-bottom: 22px;
    border-bottom: 2px solid #0068b7;
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .mod__border-ttl {
        padding-bottom: 4vw;
        border-bottom: 0.66667vw solid #0068b7;
        font-size: 5.86667vw;
    }
}

.mod__border-ttl--contact {
    margin: 44px 0;
}

@media screen and (max-width: 750px) {
    .mod__border-ttl--contact {
        margin: 3.2vw 0 7.2vw;
    }
}

@media screen and (max-width: 750px) {
    .mod__border-ttl-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4vw;
    }
}

.mod__harf-border-ttl {
    border-bottom: solid 1px #cccccc;
    font-size: 32px;
    font-weight: bold;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .mod__harf-border-ttl {
        font-size: calc(28 / 750 * 100vw);
    }
}

.mod__harf-border-ttl-inner {
    padding: 0 28px 4px 36px;
    display: inline-block;
    position: relative;
}

@media screen and (max-width: 750px) {
    .mod__harf-border-ttl-inner {
        padding: 0 calc(12 / 750 * 100vw) calc(4 / 750 * 100vw) calc(28 / 750 * 100vw);
    }
}

.mod__harf-border-ttl-inner::after {
    width: 100%;
    height: 1px;
    border-bottom: solid 1px #0068b7;
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
}



/* ---------------------------------------------
*   hover pattern
--------------------------------------------- */
.hv_underline {
    position: relative;
    display: inline-block;
}

@media screen and (min-width: 751px) {
    .hv_underline--white:after {
        background: #fff;
    }
    .hv_underline--black:after {
        bottom: -5px;
        background: #000;
    }
    .hv_underline:after {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .hv_underline:after {
        position: absolute;
        top: 50%;
        right: 5%;
        width: 2vw;
        height: 2vw;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        content: '';
        -webkit-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    }
}

.hv_underline--footer:after {
    bottom: 0;
}

.hv_red-border {
    position: relative;
    z-index: 1;
    border: 5px solid transparent;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: border .3s, color .3s;
    transition: border .3s, color .3s;
}

.hv_red-border:hover {
    border: 5px solid #0068b7;
    color: #0068b7;
}

.hv_red-border:hover:after {
    border-top: 3px solid #0068b7;
    border-right: 3px solid #0068b7;
}

.arrow-red-link {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    padding-left: 25px;
    color: #0068b7;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .arrow-red-link {
        margin-top: 2vw;
        padding-left: 4.66667vw;
        font-size: 3.73333vw;
    }
}

.arrow-red-link:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 17px;
    height: 17px;
    background: url(/assets/img/icon_red-arrow.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .arrow-red-link:before {
        width: 3.33333vw;
        height: 3.33333vw;
    }
}

.arrow-red-link__underline {
    border-bottom: 1px solid inherit;
}

.arrow-red-link__underline:hover {
    border-bottom: 1px solid #252334;
}

/* ---------------------------------------------
*   button
--------------------------------------------- */
.btn-wrap {
    border: 2px solid transparent;
    background-color: #0068b7;
    color: #fff;
    -webkit-transition: background-color .3s, color .3s, border .3s;
    transition: background-color .3s, color .3s, border .3s;
}

.btn-wrap:hover {
    border: 2px solid #0068b7;
    background-color: #fff;
    color: #0068b7;
}

.btn-wrap--primary {
    margin: 0 auto;
    width: 202px;
    height: 55px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .btn-wrap--primary {
        width: 16.83333vw;
        height: 4.58333vw;
    }
}

.btn-wrap--secondary {
    margin: 0 2px 2px 0;
    width: 184px;
    height: 42px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .btn-wrap--secondary {
        margin: 0 0.8vw 0.8vw 0;
        width: calc(50% - .4vw);
        height: 12.4vw;
    }
}

.btn-wrap--secondary:hover {
    border: 2px solid transparent;
    background-color: rgba(0, 104, 183, 0.3);
}

.btn-wrap--secondary:nth-of-type(4) {
    margin-right: 0;
}

.btn-wrap--tertiary {
    margin-top: 44px;
    margin-left: 45px;
    width: 274px;
    height: 54px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .btn-wrap--tertiary {
        margin: 7.2vw 0 0;
        width: 100%;
        height: 12.4vw;
    }
}

.btn-wrap--tertiary:hover {
    border: 2px solid transparent;
    background-color: rgba(0, 104, 183, 0.3);
    color: #0068b7;
}

.btn-wrap--tertiary:nth-of-type(4) {
    margin-right: 0;
}

.btn-wrap--quality {
    width: 347px;
    height: 55px;
}

@media screen and (max-width: 750px) {
    .btn-wrap--quality {
        width: 100%;
        height: 13.33333vw;
        font-size: 3.73333vw;
    }
}

.btn-wrap--contact {
    margin-left: 15px;
    width: 137px;
    height: 30px;
    border: 2px solid #0068b7;
    background: #0068b7 url(/assets/img/mail_icon_white.png) 10px 50% no-repeat;
    background-size: 23px auto;
    color: #fff;
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .btn-wrap--contact {
        width: 12.41667vw;
        height: 2.5vw;
        background-size: 1.91667vw auto;
    }
}

@media screen and (min-width: 1001px) {
    .btn-wrap--contact {
        margin-top: 5px;
    }
}

@media screen and (max-width: 750px) {
    .btn-wrap--contact {
        margin: 0 auto 14.4vw;
        width: 46.26667vw;
        height: 12.53333vw;
        background: #0068b7 url(/assets/img/mail_icon_white_sp.png) 4.26667vw 50% no-repeat;
        background-size: 8vw auto;
        font-size: 3.46667vw;
    }
}

@media screen and (min-width: 751px) {
    .btn-wrap--contact:hover {
        background: #fff url(/assets/img/mail_icon_red.png) 10px 50% no-repeat;
        color: #0068b7;
    }
}

.btn-wrap--catalog {
    margin: 15px auto 0 0;
    width: 136px;
    height: 30px;
}

@media screen and (max-width: 750px) {
    .btn-wrap--catalog {
        margin: 7.2vw auto 0;
        width: 35.73333vw;
        height: 10.26667vw;
    }
}

@media screen and (max-width: 750px) {
    .btn-wrap--w100 {
        max-width: 454px;
        width: 100%;
    }
}

.btn-wrap__link {
    position: relative;
    display: inline-block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 0 auto;
    padding-left: 40px;
    width: 100%;
    height: 100%;
    font-weight: bold;
    font-size: 16px;

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

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .btn-wrap__link {
        padding-left: 3.33333vw;
        font-size: 1.33333vw;
    }
}

.btn-wrap__link:hover:after {
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
}

.btn-wrap__link:after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .btn-wrap__link:after {
        right: 1.25vw;
        width: 0.58333vw;
        height: 0.58333vw;
    }
}

@media screen and (max-width: 750px) {
    .btn-wrap__link:after {
        right: 2.66667vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.ie11 .btn-wrap__link span {
    position: relative;
    top: 0.2em;
}

.btn-wrap__link--secondary {
    padding: 0 20px;
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--secondary {
        padding: 0 2.66667vw;
        font-size: 3.46667vw;
    }
}

.btn-wrap__link--secondary:after {
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
}

.btn-wrap__link--tertiary {
    padding: 0 15px;
    font-weight: normal;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--tertiary {
        padding: 0 4vw;
        font-size: 3.73333vw;
    }
}

.btn-wrap__link--tertiary:hover {
    color: #0068b7;
}

.btn-wrap__link--tertiary:hover:after {
    border-color: #0068b7;
}

.btn-wrap__link--tertiary:after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--tertiary:after {
        right: 2.66667vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.btn-wrap__link--contact {
    padding: 0 0 0 40px;
    font-size: 14px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .btn-wrap__link--contact {
        padding: 0 0 0 3.5vw;
        font-size: 1.16667vw;
    }
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--contact {
        padding-left: 18.26667vw;
        font-size: 3.46667vw;
    }
}

.btn-wrap__link--contact:after {
    border: none;
    content: '';
}

.btn-wrap__link--contact:hover:after {
    border: none;
    content: '';
}

@media screen and (min-width: 751px) {
    .btn-wrap__link--contact span {
        white-space: nowrap;
    }
}

.btn-wrap__link--catalog {
    padding: 8px 16px;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--catalog {
        padding: 3.06667vw 4vw;
        font-size: 3.46667vw;
    }
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--space {
        padding-left: 4vw;
        letter-spacing: 0.1em;
        font-size: 3.73333vw;
    }
}

@media screen and (max-width: 750px) {
    .btn-wrap__link--space:after {
        right: 4.26667vw;
        width: 2.4vw;
        height: 2.4vw;
    }
}

.btn__link-list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 44px;
    padding-bottom: 44px;

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

@media screen and (max-width: 750px) {
    .btn__link-list {
        margin: 7.2vw 0 7.2vw;
        padding-bottom: 0;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .btn__link-item:nth-of-type(even) {
        margin-right: 0;
    }
}

/* ---------------------------------------------
*   page-top
--------------------------------------------- */
.page-top {
    position: fixed;
    right: 2%;
    bottom: 30px;
    z-index: 99;
    display: none;
}

@media screen and (max-width: 750px) {
    .page-top {
        right: 4%;
        bottom: 4vw;
    }
}

/* ---------------------------------------------
*   swiper
--------------------------------------------- */
.swiper-container1 {
    padding-top: 91px;
    width: 100%;
    height: 100vh;
}

@media screen and (max-width: 750px) {
    .swiper-container1 {
        padding-top: 0;
        height: 100vh;
    }
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    .swiper-container1 {
        height: 100%;
    }
}

.swiper-container2 {
    width: 1060px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-container2 {
        width: 88.33333vw;
        height: 27.08333vw;
    }
}

@media screen and (max-width: 750px) {
    .swiper-container2 {
        overflow: visible;
        padding: 0;
        width: 100%;
        height: 67.33333vw;
    }
}

.swiper-wrap {
    position: relative;
    margin: 0 auto 44px;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-wrap {
        margin: 0 auto 3.66667vw;
        max-width: 100%;
        width: 95.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .swiper-wrap {
        margin: 0 auto 7.2vw;
        padding-bottom: 17.06667vw;
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .swiper-container2 .swiper-wrapper {
        overflow-x: scroll !important;
        overflow-y: hidden;
        padding-bottom: 17.06667vw;
    }
    .swiper-container2 .swiper-wrapper::-webkit-scrollbar {
        height: 3.06667vw;
    }
    .swiper-container2 .swiper-wrapper::-webkit-scrollbar-track {
        background: #fff;
    }
    .swiper-container2 .swiper-wrapper::-webkit-scrollbar-thumb {
        background: #0068b7;
    }
}

.swiper-container2 .swiper-slide {
    margin-right: 24px;
    width: 242px !important;
    height: 325px !important;
    background-color: #fff !important;
    text-align: left;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-container2 .swiper-slide {
        margin-right: 2vw;
        width: 20.16667vw !important;
        height: 27.08333vw !important;
    }
}

@media screen and (max-width: 750px) {
    .swiper-container2 .swiper-slide {
        margin-right: 7.2vw;
        width: 55.06667vw !important;
        height: 67.33333vw !important;
    }
}

@media screen and (max-width: 750px) {
    .swiper-container2 .swiper-slide:first-of-type {
        margin-left: 20px;
    }
}

.swiper-container2 .swiper-slide__link:hover .slide-card__img:before {
    border: 5px solid #0068b7;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s;
    transition: .3s;
}

.swiper-container2 .swiper-slide__more-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    background-color: #0068b7;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: background-color .3s, color .3s, border .3s;
    transition: background-color .3s, color .3s, border .3s;

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

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-container2 .swiper-slide__more-link {
        font-size: 1.66667vw;
    }
}

.swiper-container2 .swiper-slide__more-link:hover {
    border-color: #0068b7;
    background-color: #fff;
    color: #0068b7;
}

.slide-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-align: left;
}

.slide-card__img {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    width: 242px;
    height: 166px;
    -webkit-transition: .3s;
    transition: .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .slide-card__img {
        margin-bottom: 1.83333vw;
        width: 20.16667vw;
        height: 13.83333vw;
    }
}

.slide-card__img:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    content: '';
}

@media screen and (max-width: 750px) {
    .slide-card__img {
        margin-bottom: 4vw;
        width: 55.06667vw;
        height: 35.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .slide-card__img img {
        width: 100%;
        height: 100%;

        -o-object-fit: cover;
        object-fit: cover;
    }
}

.slide-card__date {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 82px;
    height: 24px;
    background-color: #0068b7;
    color: #fff;
    font-size: 14px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

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

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .slide-card__date {
        width: 6.83333vw;
        height: 2vw;
        font-size: 1vw;
    }
}

@media screen and (max-width: 750px) {
    .slide-card__date {
        width: 20.66667vw;
        height: 6vw;
        font-size: 3.2vw;
    }
}

.slide-card__ttl {
    position: relative;
    overflow: hidden;
    margin: 0 18px 22px 18px;
    padding-bottom: 22px;
    width: 206px;
    height: 42px;
    font-weight: normal;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .slide-card__ttl {
        margin: 0 1.5vw 1.83333vw 1.5vw;
        padding-bottom: 1.83333vw;
        width: 17.16667vw;
        height: 3.5vw;
        font-size: 1.16667vw;
    }
}

@media screen and (max-width: 750px) {
    .slide-card__ttl {
        margin: 0 4.4vw 4vw 4.4vw;
        padding-bottom: 5.6vw;
        width: 46.26667vw;
        height: 10.13333vw;
        font-weight: normal;
        font-size: 3.73333vw;
    }
}

.slide-card__ttl--short:before {
    content: "";
}

.slide-card__tag {
    position: relative;
    display: inline-block;
    margin-top: 22px;
    margin-left: 16px;
    padding: 0 5px;
    border: 1px solid #0068b7;
    border-radius: 5px;
    color: #0068b7;
    font-weight: normal;
    line-height: 23px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .slide-card__tag {
        margin-top: 1.83333vw;
        margin-left: 1.33333vw;
        padding: 0 0.41667vw;
        font-size: 1.16667vw;
    }
}

@media screen and (max-width: 750px) {
    .slide-card__tag {
        margin-top: 4vw;
        margin-left: 3.73333vw;
        padding: 0 1.33333vw;
        border-radius: 1.33333vw;
        font-size: 3.46667vw;
        line-height: 5.6vw;
    }
}

.slide-card__tag:before {
    position: absolute;
    top: -22px;
    left: 5px;
    width: 200px;
    height: 2px;
    background-color: #0068b7;
    content: '';
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .slide-card__tag:before {
        top: -1.83333vw;
        left: 0.41667vw;
        width: 16.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .slide-card__tag:before {
        top: -4.4vw;
        width: 45.33333vw;
    }
}

.swiper-button-prev, .swiper-button-next {
    width: 28px;
    height: 50px;
    border: 2px solid transparent;
    background: none;
    background-color: #0068b7;
    -webkit-transition: background-color .3s, border .3s;
    transition: background-color .3s, border .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-button-prev, .swiper-button-next {
        width: 2.33333vw;
        height: 4.16667vw;
    }
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    border: 2px solid #0068b7;
    background-color: #fff;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev {
    left: 0;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-button-prev {
        left: -2.33333vw;
    }
}

.swiper-button-prev:after {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}

.swiper-button-prev:hover:after {
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
}

.swiper-button-next {
    right: 0;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .swiper-button-next {
        right: -2.33333vw;
    }
}

.swiper-button-next:after {
    position: absolute;
    top: 50%;
    right: 40%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.swiper-button-next:hover:after {
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
}

.swiper-container1 .swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
    .swiper-container1 .swiper-slide {
        height: 100vh;
        background-size: cover;
    }
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    .swiper-container1 .swiper-slide {
        height: 100%;
    }
}

.swiper-container1 .swiper-slide__link {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
    .swiper-container1 .swiper-slide__link {
        height: 100vh;
        background-position: center;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    .swiper-container1 .swiper-slide__link {
        height: 100%;
    }
}

.swiper-container1 .swiper-slide--card {
    margin: 12px;
    width: 242px;
    height: 324px;
    background-color: #fff;
}

.swiper-container1 .swiper-pagination1 {
    position: absolute;
    z-index: 9;
    text-align: center;
}

.swiper-pagination-original {
    position: absolute;
    top: 250px;
    left: 0;
    z-index: 10;
    margin: auto;
    width: 100%;
    text-align: center;
}

.swiper-pagination-original a {
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background-color: #4f525d;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #0068b7;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 9.16%;
    left: 0;
    width: 100%;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 0 !important;
    background: #4f525d;
    opacity: 1 !important;
}

@media screen and (max-width: 750px) {
    .swiper-scrollbar {
        margin-top: 7.2vw;
        height: 2.93333vw;
        background-color: #fff;
    }
}

@media screen and (max-width: 750px) {
    .swiper-scrollbar-drag {
        width: 12.66667vw !important;
        border-radius: 0;
        background-color: #0068b7;
    }
}

/* ---------------------------------------------
*   kv-wrap
--------------------------------------------- */
.kv-wrap {
    position: relative;
    margin-bottom: 44px;
    width: 100%;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .kv-wrap {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .kv-wrap {
        overflow: hidden;
        margin-bottom: 7.33333vw;
        min-width: initial;
        min-width: auto;
    }
}

@media screen and (max-width: 750px) and (orientation: landscape) {
    .kv-wrap {
        height: 177.33333vw;
    }
}

.topics {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 99;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 86.66667vw;
    height: 45px;
    background-color: #0068b7;
    color: #fff;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .topics {
        width: 100%;
        height: 11.33333vw;
    }
}

.topics:after {
    position: absolute;
    top: 50%;
    right: 5vw;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.topics__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.topics__link:hover {
    opacity: .8;
}

.topics__cat {
    display: inline-block;
    width: 13.08333vw;
    width: 15.19231%;
    height: 100%;
    background-color: #4f525d;
    text-align: center;
    line-height: 45px;
}

@media screen and (max-width: 750px) {
    .topics__cat {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        width: 21.86667vw;
        font-size: 3.46667vw;

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

.topics__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 12.78846%;
    background-color: #0068b7;
    font-family: "游ゴシック bold", "Yu Gothic bold", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;

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

@media screen and (max-width: 750px) {
    .topics__date {
        width: 28.8vw;
        font-size: 3.46667vw;
    }
}

.topics__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    width: 72.11538%;
    background-color: #0068b7;

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

@media screen and (max-width: 750px) {
    .topics__title {
        width: 49.33333vw;
        font-size: 3.46667vw;
    }
}

.topics__title > h3 {
    overflow: hidden;
    width: 55.83333vw;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 750px) {
    .topics__title > h3 {
        width: 40vw;
    }
}

/* ---------------------------------------------
*   mv-wrap
--------------------------------------------- */
.mv-wrap {
    position: relative;
    z-index: -1;
    margin-top: 100px;
    min-width: 1200px;
    height: 430px;
    background-color: pink;
}

@media screen and (max-width: 750px) {
    .mv-wrap {
        margin-top: 50px;
        min-width: initial;
        min-width: auto;
        height: 87.33333vw;
        background-size: cover;
    }
}

.mv-wrap--product {
    background: url("/assets/img/kv_product.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--product {
        height: 87.33333vw;
        background: url("/assets/img/kv_product_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--company {
    background: url("/assets/img/kv_company.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--company {
        height: 87.33333vw;
        background: url("/assets/img/kv_company_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--recruit {
    background: url("/assets/img/kv_recruit.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--recruit {
        background: url("/assets/img/kv_recruit_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--case {
    background: url("/assets/img/kv_case.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--case {
        background: url("/assets/img/kv_case_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--neweffort {
    background: url("/assets/img/neweffort/kv_neweffort.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--neweffort {
        background: url("/assets/img/neweffort/kv_neweffort_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--newproduct {
    background: url("/assets/img/newproduct/kv_newproducts.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--newproduct {
        background: url("/assets/img/newproduct/kv_newproducts_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--maintenance {
    background: url("/assets/img/kv_maintenance.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--maintenance {
        background: url("/assets/img/kv_maintenance_sp.jpg") center top no-repeat;
        background-size: cover;
    }
}

.mv-wrap--solution {
    background: url("/assets/img/kv_solution.jpg") left top no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .mv-wrap--solution {
        background: url("/assets/img/kv_solution_sp.jpg") left top no-repeat;
        background-size: cover;
    }
}

/* ---------------------------------------------
*   breadcrumb
--------------------------------------------- */
.breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 0 32px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    font-weight: normal;
    font-family: "游ゴシック bold", "Yu Gothic bold", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "meiryo", sans-serif;
}

@media screen and (max-width: 750px) {
    .breadcrumb {
        padding: 0 4.26667vw;
    }
}

body.home .breadcrumb {
    display: none;
}

body.page-child .breadcrumb,
body.support .breadcrumb,
body.page-id-180 .breadcrumb,
body.post-type-archive-news .breadcrumb,
body.single-news .breadcrumb,
body.tax-news_cat .breadcrumb,
body.page-id-912 .breadcrumb,
body.page-id-915 .breadcrumb,
body.page-id-918 .breadcrumb,
body.page-id-921 .breadcrumb,
body.search .breadcrumb,
body.tax-product_cat .breadcrumb {
    position: static;
    top: auto;
    left: auto;
    margin-top: 91px;
    padding-left: 10px;
    background-color: #0068b7;
    color: #0068b7;
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    body.page-child .breadcrumb,
    body.support .breadcrumb,
    body.page-id-180 .breadcrumb,
    body.post-type-archive-news .breadcrumb,
    body.single-news .breadcrumb,
    body.tax-news_cat .breadcrumb,
    body.page-id-912 .breadcrumb,
    body.page-id-915 .breadcrumb,
    body.page-id-918 .breadcrumb,
    body.page-id-921 .breadcrumb,
    body.search .breadcrumb,
    body.tax-product_cat .breadcrumb {
        padding: 0 4.26667vw;
        background-color: #fff;
        font-size: 3.46667vw;
        margin-top: 71px;
    }
}

body.page-child .breadcrumb a,
body.support .breadcrumb a,
body.page-id-180 .breadcrumb a,
body.post-type-archive-news .breadcrumb a,
body.single-news .breadcrumb a,
body.tax-news_cat .breadcrumb a,
body.page-id-912 .breadcrumb a,
body.page-id-915 .breadcrumb a,
body.page-id-918 .breadcrumb a,
body.page-id-921 .breadcrumb a,
body.search .breadcrumb a,
body.tax-product_cat .breadcrumb a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

body.page-child .breadcrumb a:hover,
body.support .breadcrumb a:hover,
body.page-id-180 .breadcrumb a:hover,
body.post-type-archive-news .breadcrumb a:hover,
body.single-news .breadcrumb a:hover,
body.tax-news_cat .breadcrumb a:hover,
body.page-id-912 .breadcrumb a:hover,
body.page-id-915 .breadcrumb a:hover,
body.page-id-918 .breadcrumb a:hover,
body.page-id-921 .breadcrumb a:hover,
body.search .breadcrumb a:hover,
body.tax-product_cat .breadcrumb a:hover {
    opacity: .5;
}

body.page-child .breadcrumb span,
body.support .breadcrumb span,
body.page-id-180 .breadcrumb span,
body.post-type-archive-news .breadcrumb span,
body.single-news .breadcrumb span,
body.tax-news_cat .breadcrumb span,
body.page-id-912 .breadcrumb span,
body.page-id-915 .breadcrumb span,
body.page-id-918 .breadcrumb span,
body.page-id-921 .breadcrumb span,
body.search .breadcrumb span,
body.tax-product_cat .breadcrumb span, {
    display: inline-block;
}

body.page-child .breadcrumb--news,
body.support .breadcrumb--news,
body.page-id-180 .breadcrumb--news,
body.post-type-archive-news .breadcrumb--news,
body.single-news .breadcrumb--news,
body.tax-news_cat .breadcrumb--news,
body.page-id-912 .breadcrumb--news,
body.page-id-915 .breadcrumb--news,
body.page-id-918 .breadcrumb--news,
body.page-id-921 .breadcrumb--news,
body.search .breadcrumb--news,
body.tax-product_cat .breadcrumb--news {
    width: auto;
}

@media screen and (max-width: 750px) {
    body.page-child .breadcrumb--news,
    body.support .breadcrumb--news,
    body.page-id-180 .breadcrumb--news,
    body.post-type-archive-news .breadcrumb--news,
    body.single-news .breadcrumb--news,
    body.tax-news_cat .breadcrumb--news,
    body.page-id-912 .breadcrumb--news,
    body.page-id-915 .breadcrumb--news,
    body.page-id-918 .breadcrumb--news,
    body.page-id-921 .breadcrumb--news,
    body.search .breadcrumb--news,
    body.tax-product_cat .breadcrumb--news {
        padding: 0;
    }
}

body.page-child .breadcrumb__list,
body.support .breadcrumb__list,
body.page-id-180 .breadcrumb__list,
body.post-type-archive-news .breadcrumb__list,
body.single-news .breadcrumb__list,
body.tax-news_cat .breadcrumb__list,
body.page-id-912 .breadcrumb__list,
body.page-id-915 .breadcrumb__list,
body.page-id-918 .breadcrumb__list,
body.page-id-921 .breadcrumb__list,
body.search .breadcrumb__list,
body.tax-product_cat .breadcrumb__list {
    display: inline-block;
    background-color: #fff;
}

body.page-child .breadcrumb__list-item,
body.support .breadcrumb__list-item,
body.page-id-180 .breadcrumb__list-item,
body.post-type-archive-news .breadcrumb__list-item,
body.single-news .breadcrumb__list-item,
body.tax-news_cat .breadcrumb__list-item,
body.page-id-912 .breadcrumb__list-item,
body.page-id-915 .breadcrumb__list-item,
body.page-id-918 .breadcrumb__list-item,
body.page-id-921 .breadcrumb__list-item,
body.search .breadcrumb__list-item,
body.tax-product_cat .breadcrumb__list-item {
    position: relative;
    display: inline-block;
    padding-right: 18px;
    background-color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    body.page-child .breadcrumb__list-item,
    body.support .breadcrumb__list-item,
    body.page-id-180 .breadcrumb__list-item,
    body.post-type-archive-news .breadcrumb__list-item,
    body.single-news .breadcrumb__list-item,
    body.tax-news_cat .breadcrumb__list-item,
    body.page-id-912 .breadcrumb__list-item,
    body.page-id-915 .breadcrumb__list-item,
    body.page-id-918 .breadcrumb__list-item,
    body.page-id-921 .breadcrumb__list-item,
    body.search .breadcrumb__list-item,
    body.tax-product_cat .breadcrumb__list-item {
        display: inline;
        padding-right: 4.66667vw;
        font-size: 3.46667vw;
    }
}

body.page-child .breadcrumb__list-item:first-of-type,
body.support .breadcrumb__list-item:first-of-type,
body.page-id-180 .breadcrumb__list-item:first-of-type,
body.post-type-archive-news .breadcrumb__list-item:first-of-type,
body.single-news .breadcrumb__list-item:first-of-type,
body.tax-news_cat .breadcrumb__list-item:first-of-type,
body.page-id-912 .breadcrumb__list-item:first-of-type,
body.page-id-915 .breadcrumb__list-item:first-of-type,
body.page-id-918 .breadcrumb__list-item:first-of-type,
body.page-id-921 .breadcrumb__list-item:first-of-type,
body.search .breadcrumb__list-item:first-of-type,
body.tax-product_cat .breadcrumb__list-item:first-of-type {
    padding-left: 10px;
}

@media screen and (max-width: 750px) {
    body.page-child .breadcrumb__list-item:first-of-type,
    body.support .breadcrumb__list-item:first-of-type,
    body.page-id-180 .breadcrumb__list-item:first-of-type,
    body.post-type-archive-news .breadcrumb__list-item:first-of-type,
    body.single-news .breadcrumb__list-item:first-of-type,
    body.tax-news_cat .breadcrumb__list-item:first-of-type,
    body.page-id-912 .breadcrumb__list-item:first-of-type,
    body.page-id-915 .breadcrumb__list-item:first-of-type,
    body.page-id-918 .breadcrumb__list-item:first-of-type,
    body.page-id-921 .breadcrumb__list-item:first-of-type,
    body.search .breadcrumb__list-item:first-of-type,
    body.tax-product_cat .breadcrumb__list-item:first-of-type {
        display: inline;
        padding-left: 0;
    }
}

body.page-child .breadcrumb__list-item:last-of-type,
body.support .breadcrumb__list-item:last-of-type,
body.page-id-180 .breadcrumb__list-item:last-of-type,
body.post-type-archive-news .breadcrumb__list-item:last-of-type,
body.single-news .breadcrumb__list-item:last-of-type,
body.tax-news_cat .breadcrumb__list-item:last-of-type,
body.page-id-912 .breadcrumb__list-item:last-of-type,
body.page-id-915 .breadcrumb__list-item:last-of-type,
body.page-id-918 .breadcrumb__list-item:last-of-type,
body.page-id-921 .breadcrumb__list-item:last-of-type,
body.search .breadcrumb__list-item:last-of-type,
body.tax-product_cat .breadcrumb__list-item:last-of-type {
    display: inline;
    padding-right: 10px;
}

body.page-child .breadcrumb__list-item:last-of-type:after,
body.support .breadcrumb__list-item:last-of-type:after,
body.page-id-180 .breadcrumb__list-item:last-of-type:after,
body.post-type-archive-news .breadcrumb__list-item:last-of-type:after,
body.single-news .breadcrumb__list-item:last-of-type:after,
body.tax-news_cat .breadcrumb__list-item:last-of-type:after,
body.page-id-912 .breadcrumb__list-item:last-of-type:after,
body.page-id-915 .breadcrumb__list-item:last-of-type:after,
body.page-id-918 .breadcrumb__list-item:last-of-type:after,
body.page-id-921 .breadcrumb__list-item:last-of-type:after,
body.search .breadcrumb__list-item:last-of-type:after,
body.tax-product_cat .breadcrumb__list-item:last-of-type:after {
    display: none;
}

body.page-child .breadcrumb__list-item:after,
body.support .breadcrumb__list-item:after,
body.page-id-180 .breadcrumb__list-item:after,
body.post-type-archive-news .breadcrumb__list-item:after,
body.single-news .breadcrumb__list-item:after,
body.tax-news_cat .breadcrumb__list-item:after,
body.page-id-912 .breadcrumb__list-item:after,
body.page-id-915 .breadcrumb__list-item:after,
body.page-id-918 .breadcrumb__list-item:after,
body.page-id-921 .breadcrumb__list-item:after,
body.search .breadcrumb__list-item:after,
body.tax-product_cat .breadcrumb__list-item:after {
    position: absolute;
    top: 50%;
    right: 5%;
    content: '>';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    body.page-child .breadcrumb__list-item:after,
    body.support .breadcrumb__list-item:after,
    body.page-id-180 .breadcrumb__list-item:after,
    body.post-type-archive-news .breadcrumb__list-item:after,
    body.single-news .breadcrumb__list-item:after,
    body.tax-news_cat .breadcrumb__list-item:after,
    body.page-id-912 .breadcrumb__list-item:after,
    body.page-id-915 .breadcrumb__list-item:after,
    body.page-id-918 .breadcrumb__list-item:after,
    body.page-id-921 .breadcrumb__list-item:after,
    body.search .breadcrumb__list-item:after,
    body.tax-product_cat .breadcrumb__list-item:after {
        right: 0.66667vw;
        display: inline;
    }
}

.breadcrumb__list {
    display: inline-block;
}

.breadcrumb__list-item {
    position: relative;
    display: inline-block;
    padding-right: 32px;
    font-weight: normal;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .breadcrumb__list-item {
        padding-right: 4.26667vw;
        font-size: 3.46667vw;
    }
}

.breadcrumb__list-item:after {
    position: absolute;
    top: 50%;
    right: 10px;
    content: '>';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .breadcrumb__list-item:after {
        right: 0.66667vw;
    }
}

.breadcrumb__list-item:after:last-child {
    display: none;
}

.breadcrumb__list-item:last-child:after {
    display: none;
}

.breadcrumb__search {
    position: relative;
    top: .2em;
}

.windows .breadcrumb__search {
    top: .1em;
}

.edge .breadcrumb__search {
    top: .1em;
}

.ie .breadcrumb__search {
    top: .2em;
}

.breadcrumb__link {
    vertical-align: text-top;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.breadcrumb__link:hover {
    opacity: .5;
}

body.ie .breadcrumb__link span {
    position: relative;
    top: .2em;
}

/* ---------------------------------------------
*   container
--------------------------------------------- */
.l-product-sp {
    margin: -124px auto 0;
    padding: 44px 0 0;
    width: 1040px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .l-product-sp {
        margin: -24vw 20px 0;
        padding: 5.86667vw 0 0;
        width: calc(100% - 40px);
    }
}

.container {
    padding-top: 44px;
    text-align: center;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container {
        padding-top: 3.66667vw;
    }
}

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

.container--news {
    width: 100%;
    background-image: url("/assets/img/top_grid_bg.jpg");
}

.container--product-top {
    margin: 0 auto 44px;
    width: 100%;
    background-color: white;
    background-image: url("/assets/img/top_grid_bg.jpg");
}

@media screen and (max-width: 750px) {
    .container--product-top {
        padding-bottom: 0;
        width: 100%;
    }
}

.container--product {
    margin: 0 auto;
    padding-top: 80px;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .container--product {
        padding-top: 12vw;
        padding-bottom: 0;
        width: 100%;
    }
}

.container--lower-page {
    margin: -80px auto 0;
    padding: 44px 0 0;
    width: 1040px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .container--lower-page {
        margin: -16.66667vw 20px 0;
        padding: 5.86667vw 0 0;
        width: calc(100% - 40px);
    }
}

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

.container--lower-space {
    padding-top: 80px;
}

@media screen and (max-width: 750px) {
    .container--lower-space {
        padding-top: 14.4vw;
        padding-bottom: 0;
    }
}

.container--news-detail {
    margin: 44px auto;
    width: 1040px;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .container--news-detail {
        margin: 7.2vw auto 0;
        padding-bottom: 0;
        width: 100%;
    }
}

.container--catalog {
    margin: 0 auto;
    padding-top: 80px;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .container--catalog {
        padding-top: 12vw;
        width: 100%;
    }
}

.container--company {
    margin: 0 auto;
    padding-top: 88px;
}

@media screen and (max-width: 750px) {
    .container--company {
        padding-top: 14.4vw;
        padding-bottom: 0;
        width: 100%;
    }
}

.container--affiliates {
    margin: 0 auto 82px;
    padding-top: 88px;
}

@media screen and (max-width: 750px) {
    .container--affiliates {
        margin-bottom: calc(48 / 750 * 100vw);
        padding-top: 14.4vw;
        padding-bottom: 0;
        width: 100%;
    }
}

.container--application {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .container--application {
        margin-top: 7.2vw;
    }
}

.container--site-policy {
    padding-top: 88px;
}

@media screen and (max-width: 750px) {
    .container--site-policy {
        padding-top: 14.4vw;
    }
}

.container--case, .container--newproduct {
    padding: 44px;
}

@media screen and (max-width: 750px) {
    .container--case, .container--newproduct {
        padding: 7.2vw 0;
    }
}

.container--maintenance {
    padding: 44px;
}

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

.container--contact {
    margin: 0 auto;
    padding-top: 88px;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .container--contact {
        padding-top: 14.4vw;
        width: 100%;
    }
}

.container--office {
    margin: 0 auto;
    width: 1200px;
}

@media screen and (max-width: 750px) {
    .container--office {
        width: 100%;
    }
}

.container--business {
    margin: 44px auto;
    width: 1200px;
}

@media screen and (max-width: 750px) {
    .container--business {
        margin: 7.2vw auto;
        width: 100%;
    }
}

.container--newproduct-data {
    margin-top: 100px;
    padding: 68px 0 0;
    width: 1040px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .container--newproduct-data {
        margin-top: 13.33333vw;
        padding: 11.73333vw 0 0;
        width: 91.33333vw;
    }
}

.container__inner {
    margin: 0 auto;
    min-width: 1040px;
}

@media screen and (max-width: 750px) {
    .container__inner {
        min-width: auto;
        min-width: initial;
    }
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__inner {
        min-width: auto;
        min-width: initial;
        width: 100%;
    }
}

.container__ttl {
    margin: 0 auto;
    width: 100%;
    color: #0068b7;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .container__ttl {
        font-size: 5.86667vw;
    }
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__ttl {
        font-size: 3vw;
    }
}

.container__ttl--news {
    width: 1200px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__ttl--news {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .container__ttl--news {
        width: 100%;
    }
}

.container__ttl--ja {
    font-weight: bold;
}

.container__ttl-ja {
    position: relative;
    display: block;
    margin-top: 44px;
    color: #0068b7;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .container__ttl-ja {
        margin-top: 8vw;
        letter-spacing: 0.1em;
        font-size: 3.73333vw;
    }
}

.container__ttl-ja:before {
    position: absolute;
    top: -22px;
    left: 50%;
    width: 48px;
    height: 2px;
    background-color: #0068b7;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .container__ttl-ja:before {
        top: -4vw;
        left: 50%;
        width: 6.4vw;
        height: 0.53333vw;
    }
}

.container__ttl--blk {
    color: #231815;
}

.container__txt {
    margin-top: 22px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__txt {
        margin-top: 2.93333vw;
        font-size: 1.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .container__txt {
        margin-top: 2.93333vw;
        padding: 4.06667vw 20px 0;
        letter-spacing: .1em;
        font-size: 3.73333vw;
    }
}

.container__txt--product {
    margin-bottom: 88px;
}

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

.container__txt--catalog {
    margin-top: 77px;
}

@media screen and (max-width: 750px) {
    .container__txt--catalog {
        margin-top: 0;
    }
}

.container__txt--search {
    margin-top: 88px;
    margin-bottom: 44px;
    color: #0068b7;
    font-weight: bold;
    font-size: 30px;
}

@media screen and (max-width: 750px) {
    .container__txt--search {
        margin-top: 14.4vw;
        margin-bottom: 7.2vw;
        padding-top: 0;
        font-size: 5.33333vw;
    }
}

.container__txt--search-none {
    margin-top: 88px;
    margin-bottom: 88px;
    color: #0068b7;
    font-weight: bold;
    font-size: 30px;
}

@media screen and (max-width: 750px) {
    .container__txt--search-none {
        margin-top: 14.4vw;
        margin-bottom: 14.4vw;
        padding-top: 0;
        font-size: 5.33333vw;
    }
}

.container__item {
    padding: 32px 0;
    min-width: 1040px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__item {
        padding: 2.66667vw 0;
        min-width: 100%;
        width: 100vw;
    }
}

@media screen and (max-width: 750px) {
    .container__item {
        padding: 13.26667vw 0 0;
        min-width: initial;
        min-width: auto;
    }
}

.container__item--top {
    padding: 44px 0;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__item--top {
        padding: 3.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .container__item--top {
        padding: 7.2vw 0 0;
    }
}

.container__item--top-product {
    padding: 44px 0;
}

@media screen and (max-width: 750px) {
    .container__item--top-product {
        padding: 7.2vw 0;
    }
}

.container__item--btm {
    padding-top: 0;
    min-width: 1200px;
}

@media screen and (max-width: 750px) {
    .container__item--btm {
        min-width: initial;
        min-width: auto;
    }
}

.container__item--lower {
    min-width: 1040px;
}

@media screen and (max-width: 750px) {
    .container__item--lower {
        padding-top: 7.33333vw;
        min-width: initial;
        min-width: auto;
    }
}

.container__item--news {
    padding-top: 44px;
    padding-bottom: 49px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__item--news {
        padding: 4.5vw 0;
    }
}

@media screen and (max-width: 750px) {
    .container__item--news {
        padding-top: 7.2vw;
    }
}

.container__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

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

.container__list--product {
    -ms-flex-pack: start;
    margin: 0 auto;
    width: 1070px;

    -webkit-box-pack: start;
    justify-content: flex-start;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__list--product {
        width: 89.16667vw;
    }
}

@media screen and (max-width: 750px) {
    .container__list--product {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 750px) {
    body.home .container__list--product {
        width: 100%;
        padding: 0 20px;
    }
}

.container__list--btm {
    margin: 0 auto;
}

.container__list-item {
    overflow: hidden;
    background-color: #000;
}

.container__list-item--full {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.container__list-item--half {
    width: 440px;
    height: 250px;
}

@media screen and (max-width: 750px) {
    .container__list-item--half {
        width: 44vw;
        height: 44vw;
    }
}

.container__list-item--small {
    margin: 0 12px 24px;
    width: 190px;
    height: 190px;
    background-color: #fff;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__list-item--small {
        margin: 0 1vw 2vw;
        width: 15.83333vw;
        height: 15.83333vw;
    }
}

@media screen and (max-width: 750px) {
    .container__list-item--small {
        margin: 0 2vw 2vw;
        width: 45.7%;
        height: 18.4vw;
    }
}

.container__list-item--top {
    width: calc(238 / 1040 * 100%);
    margin-right: calc( 22 / 1040 * 100%);
    background: none;
}

@media screen and (max-width: 750px) {
    .container__list-item--top {
        width: 100%;
        margin-right: 0;
        background: none;
        margin-top: calc(15 / 750 * 100vw);
    }
}

.container__list-item--top:nth-of-type(4n) {
    margin-right: 0;
}

.container__link {
    position: relative;
    display: inline-block;
    padding: 140px 1.5em 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-position: center 30%;
    background-size: auto;
    background-repeat: no-repeat;
    color: #0068b7;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__link {
        padding: 11.66667vw 1.5em 0;
        background-size: 40%;
        font-size: 1.33333vw;
    }
}

@media screen and (max-width: 750px) {
    .container__link {
        top: .2em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        padding: 0 10% 0 33%;
        background-position: 8% 50%;
        background-size: 21%;
        text-align: left;
        font-size: 3.73333vw;

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

.container__link:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.container__link:after {
    position: absolute;
    top: 149px;
    right: 8%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__link:after {
        top: 12.41667vw;
        width: 0.58333vw;
        height: 0.58333vw;
    }
}

@media screen and (max-width: 750px) {
    .container__link:after {
        top: 50%;
        right: 5%;
        width: 1.86667vw;
        height: 1.86667vw;
        border-top: 0.4vw solid #0068b7;
        border-right: 0.4vw solid #0068b7;
    }
}

.container__link--news {
    position: relative;
    height: 310px;
    background: url("/assets/img/top_news_bnr.jpg") center center no-repeat;
    background-size: auto;
}

@media screen and (max-width: 750px) {
    .container__link--news {
        height: 50vw;
    }
}

.container__link--news:after {
    position: absolute;
    top: 50%;
    left: 62%;
    width: 13px;
    height: 13px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .container__link--news:after {
        left: 77%;
    }
}

.container__link--news > span {
    top: 0;
}

.container__link--bnr1 {
    background: url("/assets/img/top_sales.png") center center no-repeat;
    background-size: cover;
}

.container__link--bnr2 {
    background: url("/assets/img/top_maintenance.png") center center no-repeat;
    background-size: cover;
}

.container__link--bnr3 {
    background: url("/assets/img/top_recruit.png") center center no-repeat;
    background-size: cover;
}

.container__link--bnr1, .container__link--bnr2, .container__link--bnr3 {
    -webkit-transition: background-color .3s, color .3s, border .3s;
    transition: background-color .3s, color .3s, border .3s;
}

@media screen and (max-width: 750px) {
    .container__link--bnr1, .container__link--bnr2, .container__link--bnr3 {
        letter-spacing: .07em;
        font-size: 5.83333vw;
    }
}

.container__link--bnr1:hover, .container__link--bnr2:hover, .container__link--bnr3:hover {
    border: 5px solid #0068b7;
    background: none;
    background-color: #fff;
    color: #0068b7;
}

body.home .container__list-item--top .container__link {
    padding-top: 0;
    height: 110px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .container__list-item--top .container__link {
        height: calc(110 / 1200 * 100vw);
    }
}

@media screen and (max-width: 750px) {
    body.home .container__list-item--top .container__link {
        height: calc(138 / 750 * 100vw);
        padding: 0 10%;
        top: 0;
    }
}

body.home .container__list-item--top .container__link:after {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-width: 2px;
}

.container__link-txt {
    padding-top: 0.1em;
}

.container__foot {
    margin: 44px 0;
}

@media screen and (max-width: 750px) {
    .container__foot {
        margin: calc(54 / 750 * 100vw) 0;
    }
}

/* ---------------------------------------------
*   c-btn-small
--------------------------------------------- */
.c-btn-small {
    display: block;
    width: 136px;
    padding: 6px 15px 5px;
    text-align: left;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    background: #0068b7 url(/assets/img/icon_arw_wh.png) right 12px top 50% no-repeat;
    background-size: 9px auto;
    border: 2px solid #0068b7;
    transition: background .3s, color .3s;
}

@media screen and (min-width: 751px) {
    .c-btn-small:hover {
        color: #0068b7;
        background-color: #fff;
        background-image: url(/assets/img/icon_arw_rd.png);
    }
}

@media screen and (max-width: 750px) {
    .c-btn-small {
        display: flex;
        align-items: center;
        width: calc(268 / 750 * 100vw);
        height: calc(77 / 750 * 100vw);
        padding: 0 calc(36 / 750 * 100vw);
        font-size: calc(26 / 750 * 100vw);
        background-position: right calc(20 / 750 * 100vw) top 50%;
        background-image: url(/assets/img/icon_arw_wh_sp.png);
        background-size: calc(15 / 750 * 100vw) auto;
        margin: 0 auto;
    }
}

/* ---------------------------------------------
*   new-product
--------------------------------------------- */
.new-product {
    padding: 44px 0;
}

@media screen and (max-width: 750px) {
    .new-product {
        padding: 7.2vw 0;
    }
}

.new-product__inner {
    position: relative;
    margin: 0 auto;
    width: 1200px;
}

@media screen and (max-width: 750px) {
    .new-product__inner {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .new-product__inner:before {
        position: absolute;
        top: 21.6vw;
        right: 0;
        bottom: 0;
        left: auto;
        z-index: -1;
        width: 85.86667vw;
        background-color: rgba(0, 104, 183, 0.1);
        content: '';
    }
}

.new-product__card {
    padding: 44px 80px 44px;
    width: 928px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .new-product__card {
        padding: 7.2vw 4vw;
        width: 100%;
        background-color: transparent;
    }
}

.new-product__card--reverse {
    margin-left: auto;
}

.new-product__category {
    display: inline-block;
    margin-bottom: 22px;
    padding: 0 5px;
    border: 1px solid #0068b7;
    border-radius: 5px;
    background-color: #fff;
    font-weight: normal;
    font-size: 14px;
    line-height: 23px;
}

@media screen and (max-width: 750px) {
    .new-product__category {
        margin-bottom: 4vw;
        padding: 0 1.33333vw;
        border-radius: 1.33333vw;
        font-size: 3.46667vw;
        line-height: 1.4;
    }
}

.new-product__category--reverse {
    margin-left: 300px;
}

@media screen and (max-width: 750px) {
    .new-product__category--reverse {
        margin-left: 0;
    }
}

.new-product__ttl2 {
    margin-bottom: 10px;
    width: 480px;
    letter-spacing: 0.1em;
    font-size: 28px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .new-product__ttl2 {
        margin-bottom: 2.66667vw;
        width: 100%;
        font-size: 5.33333vw;
    }
}

.new-product__ttl2--reverse {
    margin-left: 300px;
}

@media screen and (max-width: 750px) {
    .new-product__ttl2--reverse {
        margin-left: 0;
    }
}

.new-product__ttl3 {
    margin-bottom: 44px;
    width: 480px;
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .new-product__ttl3 {
        margin-bottom: 8vw;
        width: 100%;
        font-size: 4.53333vw;
    }
}

.new-product__ttl3--reverse {
    margin-left: 300px;
}

@media screen and (max-width: 750px) {
    .new-product__ttl3--reverse {
        margin-left: 0;
    }
}

.new-product__txt {
    position: relative;
    width: 480px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .new-product__txt {
        width: 100%;
        font-size: 3.73333vw;
    }
}

.new-product__txt:before {
    position: absolute;
    top: -22px;
    left: -80px;
    width: 560px;
    height: 2px;
    background-color: #0068b7;
    content: '';
}

@media screen and (max-width: 750px) {
    .new-product__txt:before {
        top: -4vw;
        left: 0;
        width: 100%;
    }
}

.new-product__txt--reverse {
    margin-left: auto;
    padding-left: 14px;
}

@media screen and (max-width: 750px) {
    .new-product__txt--reverse {
        margin-left: 0;
        padding-left: 0;
    }
}

.new-product__txt--reverse:before {
    left: 0;
}

.new-product__txt a:hover {
    text-decoration: underline;
}

.new-product__thumbnail {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 604px;
    max-width: 500px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .new-product__thumbnail {
        position: static;
        top: auto;
        left: auto;
        margin: 0 auto;
        max-width: 91.46667vw;
        -webkit-transform: none;
        transform: none;
    }
}

@media screen and (max-width: 750px) {
    .new-product__thumbnail img {
        width: 100%;
    }
}

.new-product__thumbnail--reverse {
    top: 50%;
    right: 604px;
    bottom: auto;
    left: auto;
}

@media screen and (max-width: 750px) {
    .new-product__thumbnail--reverse {
        top: 0;
        right: 0;
    }
}

/* ---------------------------------------------
*   new-effort
--------------------------------------------- */
.new-effort {
    margin: 0 auto;
    padding: 44px;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .new-effort {
        padding: 7.2vw 0;
        width: 100%;
    }
}

.new-effort__thumbnail {
    margin: 0 auto 44px;
}

@media screen and (max-width: 750px) {
    .new-effort__thumbnail {
        margin-bottom: 0;
    }
}

.new-effort__card {
    position: relative;
}

@media screen and (max-width: 750px) {
    .new-effort__card {
        margin-top: -7.2vw;
        padding: 0 4vw;
    }
}

.new-effort__ttl2 {
    position: absolute;
    top: -88px;
    left: -44px;
    padding: 44px;
    width: 380px;
    background-color: #0068b7;
    color: #fff;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .new-effort__ttl2 {
        position: static;
        top: auto;
        left: auto;
        margin-bottom: 7.2vw;
        padding: 7.2vw;
        width: 100%;
        font-size: 5.33333vw;
    }
}

.new-effort__ttl2--reverse {
    right: -44px;
    left: auto;
}

.new-effort__txt {
    position: relative;
    margin-right: 44px;
    margin-left: auto;
    width: 528px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .new-effort__txt {
        margin-right: 7.2vw;
        width: 100%;
        font-size: 3.73333vw;
    }
}

.new-effort__txt--reverse {
    margin-right: auto;
    margin-left: 44px;
}

@media screen and (max-width: 750px) {
    .new-effort__txt--reverse {
        margin-left: auto;
    }
}

.new-effort__number {
    position: absolute;
    top: auto;
    right: 0;
    bottom: -20px;
    left: auto;
    color: rgba(0, 104, 183, 0.1);
    font-size: 130px;
    font-family: josefinsans-bold;
    line-height: 1;
}

.new-effort__number--reverse {
    right: auto;
    left: 0;
}

@media screen and (max-width: 738px) {
    .new-effort__number--reverse {
        right: 0;
        left: auto;
    }
}

/* ---------------------------------------------
*   下層ページ
--------------------------------------------- */
.lowerpage {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .lowerpage {
        display: block;
        width: 100%;
    }
}

.lowerpage__body {
    margin: 0 0 0 auto;
    padding-left: 49px;
    min-height: calc(100vh - 100px - 44px);
    width: 794px;
    text-align: left;
}

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

/*  product
--------------------------------------------- */
.product {
    margin-top: -100px;
    padding-top: 100px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .product {
        margin-top: -50px;
        padding: 50px 20px 0;
    }
}

.product--other {
    height: calc(100vh - 100px - 44px);
}

@media screen and (max-width: 750px) {
    .product--other {
        height: auto;
    }
}

.product__ttl {
    margin-bottom: 44px;
    padding: 0 0 20px 15px;
    border-bottom: 1px solid #0068b7;
    color: #0068b7;
    font-weight: bold;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .product__ttl {
        margin-bottom: 7.2vw;
        padding: 0 0 4vw;
        border-bottom: 0.53333vw solid #0068b7;
        font-size: 5.86667vw;
    }
}

.product__ttl-2 {
    margin-bottom: 22px;
    padding: 5px 15px 7px 15px;
    background-color: #0068b7;
    color: #fff;
    font-size: 20px;
    line-height: 1.5em;
}

@media screen and (max-width: 750px) {
    .product__ttl-2 {
        margin-bottom: 4vw;
        padding: 1vw 2vw 1.6vw;
        font-size: 4.53333vw;
    }
}

.product__ttl-3 {
    position: relative;
    margin: 22px 0;
    padding-left: 32px;
    color: #0068b7;
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .product__ttl-3 {
        margin-bottom: 4vw;
        padding-left: 4.8vw;
        font-size: 4.53333vw;
    }
}

.product__ttl-3:before {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 15px;
    min-height: 25px;
    width: 8px;
    height: 100%;
    background-color: #0068b7;
    content: '';
}

@media screen and (max-width: 750px) {
    .product__ttl-3:before {
        margin-left: 0;
        width: 2.13333vw;
    }
}

.product__ttl-4 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    width: 650px;
    color: #0068b7;
    font-size: 20px;

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

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

.product__circle {
    position: relative;
    display: inline-block;
    margin-right: 24px;
    width: 74px;
    height: 74px;
    border: 1px solid #0068b7;
    border-radius: 50%;
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .product__circle {
        margin-right: 3.33333vw;
        width: 14.66667vw;
        height: 14.66667vw;
    }
}

.product__circle-txt {
    position: absolute;
    top: 38%;
    left: 50%;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .product__circle-txt {
        font-size: 3.46667vw;
    }
}

.product__circle-txt--number {
    top: 60%;
}

.product__txt {
    margin-bottom: 44px;
    padding: 0 13px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .product__txt {
        margin-bottom: 7.2vw;
        padding: 0;
        font-size: 3.73333vw;
    }
}

.product__txt--detail {
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .product__txt--detail {
        margin-bottom: 4vw;
        font-size: 3.73333vw;
    }
}

.product__img-wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-bottom: 34px;

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

@media screen and (max-width: 750px) {
    .product__img-wrap {
        display: block;
    }
}

.product__img-wrap--center {
    -ms-flex-pack: center;

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

@media screen and (max-width: 750px) {
    .product__img {
        margin: 0 auto 4vw;
        max-width: 91.46667vw;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .product__img img {
        width: 100%;
    }
}

.product__youtube {
    position: relative;
    margin: 0 auto 34px;
    padding-top: 340px;
    width: 600px;
}

@media screen and (max-width: 750px) {
    .product__youtube {
        margin-top: 4vw;
        margin-bottom: 4vw;
        padding-top: 59.1836%;
        max-width: 91.46667vw;
        width: 100%;
        height: 0;
    }
}

.product__youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product__list {
    padding: 0 13px 34px;
}

@media screen and (max-width: 750px) {
    .product__list {
        padding: 0 0 7.2vw;
    }
}

.product__list--other {
    padding: 0 13px 44px;
}

.product__list-item {
    position: relative;
    padding-left: 20px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .product__list-item {
        padding-left: 3vw;
        font-size: 3.73333vw;
    }
}

.product__list-item:before {
    position: absolute;
    top: 25%;
    left: 3px;
    width: 12px;
    height: 12px;
    background-color: #000;
    content: '';
}

@media screen and (max-width: 750px) {
    .product__list-item:before {
        left: 0;
        width: 2.66667vw;
        height: 2.66667vw;
    }
}

.product__list-item--dot:before {
    position: absolute;
    top: 25%;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 1px;
    background-color: #000;
    content: '';
}

@media screen and (max-width: 750px) {
    .product__list-item--dot:before {
        left: 0;
    }
}

.product__comment {
    padding: 0 0 34px 15px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .product__link-item:nth-of-type(even) {
        margin-right: 0;
    }
}

.product__name {
    margin-top: -11px;
    margin-bottom: -10px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .product__name {
        margin-top: -2vw;
        margin-bottom: -2vw;
    }
}

.product__name-txt {
    text-align: right;
    font-weight: normal;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .product__name-txt {
        font-size: 3.2vw;
        line-height: 1.3;
    }
}

@media screen and (max-width: 750px) {
    .product .btn-wrap--secondary {
        margin-top: 0 !important;
    }
}

.product-block {
    margin-top: -100px;
    padding-top: 100px;
}

@media screen and (max-width: 750px) {
    .product-block {
        margin-top: -50px;
        padding-top: 50px;
    }
}

.point {
    margin-bottom: 25px;
    border-bottom: 1px solid #0068b7;
}

.point__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 22px;
}

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

.point--last {
    border-bottom: none;
}

.point-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 22px;
}

@media screen and (max-width: 750px) {
    .point-head {
        margin-top: 4vw;
    }
}

.point-head__ttl {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    width: 650px;
    color: #0068b7;
    font-size: 20px;

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

@media screen and (max-width: 750px) {
    .point-head__ttl {
        width: 73.33333vw;
        font-size: 4.53333vw;
    }
}

.point-head__circle {
    position: relative;
    display: inline-block;
    margin-right: 24px;
    width: 74px;
    height: 74px;
    border: 1px solid #0068b7;
    border-radius: 50%;
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .point-head__circle {
        margin-right: 3.33333vw;
        width: 14.66667vw;
        height: 14.66667vw;
    }
}

.point-head__circle-txt {
    position: absolute;
    top: 38%;
    left: 50%;
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .point-head__circle-txt {
        font-size: 3.46667vw;
    }
}

.point-head__circle-txt--number {
    top: 60%;
}

.product-bottom {
    margin-top: 44px;
    min-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .product-bottom {
        margin-top: 7.2vw;
        min-width: 100%;
    }
}

.product-bottom__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 44px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .product-bottom__list {
        display: block;
    }
}

.product-bottom__list-item {
    width: 33.3333%;
    height: 429px;
}

@media screen and (max-width: 750px) {
    .product-bottom__list-item {
        width: 100%;
        height: 37.33333vw;
    }
}

.product-bottom__list-item--1 {
    background: url(/assets/img/product_bottom1.png) 0 0 no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .product-bottom__list-item--1 {
        background: url(/assets/img/product_bottom1_sp.png) 0 0 no-repeat;
    }
}

.product-bottom__list-item--2 {
    background: url(/assets/img/product_bottom2.png) 0 0 no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .product-bottom__list-item--2 {
        background: url(/assets/img/product_bottom2_sp.png) 0 0 no-repeat;
    }
}

.product-bottom__list-item--3 {
    background: url(/assets/img/product_bottom3.png) 0 0 no-repeat;
    background-size: cover;
}

@media screen and (max-width: 750px) {
    .product-bottom__list-item--3 {
        background: url(/assets/img/product_bottom3_sp.png) 0 0 no-repeat;
    }
}

.product-bottom__link {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-size: 28px;

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

@media screen and (max-width: 750px) {
    .product-bottom__link {
        font-size: 5.33333vw;
    }
}

.product-wysiwyg {
    margin-bottom: 44px !important;
}

.product-wysiwyg p {
    margin-top: 22px !important;
    padding: 0 13px !important;
    word-break: break-all !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

.product-wysiwyg p:first-of-type {
    margin-top: 0 !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg p {
        margin-top: 4vw !important;
        margin-bottom: 7.2vw !important;
        padding: 0 !important;
        font-size: 3.73333vw !important;
    }
}

.product-wysiwyg p:after {
    display: block;
    clear: both;
    content: "";
}

.product-wysiwyg .p1 {
    margin-top: 0 !important;
}

.product-wysiwyg hr {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
    border-width: 0 !important;
    border-bottom: 1px solid #0068b7 !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg hr {
        margin-top: 4vw !important;
    }
}

.product-wysiwyg strong {
    font-weight: bold !important;
}

.product-wysiwyg em {
    font-style: italic !important;
}

.product-wysiwyg ul {
    margin-top: 22px !important;
    padding: 0 13px !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg ul {
        margin-top: 7.2vw !important;
        padding: 0 !important;
    }
}

.product-wysiwyg li {
    position: relative !important;
    padding-left: 20px !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg li {
        padding-left: 3vw !important;
        font-size: 3.73333vw !important;
    }
}

.product-wysiwyg li:before {
    position: absolute !important;
    top: 25% !important;
    left: 3px !important;
    width: 12px !important;
    height: 12px !important;
    background-color: #000 !important;
    content: '' !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg li:before {
        left: 0 !important;
        width: 2.66667vw !important;
        height: 2.66667vw !important;
    }
}

.product-wysiwyg .alignleft, .product-wysiwyg .alignright {
    max-width: 356px !important;
    width: 100% !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg .alignleft, .product-wysiwyg .alignright {
        display: block !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
    }
}

.product-wysiwyg .alignleft {
    float: left !important;
    margin-left: -13px !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg .alignleft {
        float: none !important;
        margin: 0 auto 4vw !important;
    }
}

.product-wysiwyg .alignright {
    float: right !important;
    margin-right: -13px !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg .alignright {
        float: none !important;
        margin: 0 auto 4vw !important;
    }
}

.product-wysiwyg .aligncenter {
    display: block !important;
    margin: 0 auto !important;
    max-width: 746px !important;
    width: 100% !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg .aligncenter {
        margin: 0 auto 4vw !important;
        max-width: 100% !important;
    }
}

.product-wysiwyg .alignnone {
    display: block !important;
    margin: 0 auto !important;
    max-width: 356px !important;
    width: 100% !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg .alignnone {
        margin: 0 auto 4vw !important;
        max-width: 100% !important;
    }
}

.product-wysiwyg table {
    margin-bottom: 44px !important;
    width: 100% !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg table {
        margin: 7.2vw auto 7.2vw !important;
        border: none !important;
    }
}

.product-wysiwyg tr {
    border-bottom: 1px solid #ddd4d4 !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg tr {
        height: 8vw !important;
        border: none !important;
    }
}

.product-wysiwyg tr:last-of-type {
    border: none !important;
}

.product-wysiwyg td:first-of-type {
    padding: 14px 20px !important;
    width: 20% !important;
    border-right: 1px solid #ddd4d4 !important;
    background-color: #f0efed;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg td:first-of-type {
        display: block !important;
        padding: 1.2vw !important;
        width: 100% !important;
        border: none !important;
        text-align: center !important;
        font-size: 3.73333vw !important;
    }
}

.product-wysiwyg td {
    padding: 14px 20px !important;
}

@media screen and (max-width: 750px) {
    .product-wysiwyg td {
        display: block !important;
        padding: 3.33333vw !important;
        min-height: 8vw !important;
        width: 100% !important;
        height: auto !important;
        font-size: 3.73333vw !important;
    }
}

.product-wysiwyg td p.p1 {
    margin-bottom: 0 !important;
}

.news-wysiwyg p {
    margin-top: 44px !important;
    word-break: break-all !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg p {
        margin-top: 7.2vw !important;
        padding: 0 !important;
        width: 100%;
        font-size: 3.73333vw !important;
    }
}

.news-wysiwyg p:after {
    display: block;
    clear: both;
    content: "";
}

.news-wysiwyg p img {
    width: 952px;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg p img {
        width: 100%;
    }
}

.news-wysiwyg hr {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
    border-width: 0 !important;
    border-bottom: 1px solid #0068b7 !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg hr {
        margin-top: 4vw !important;
    }
}

.news-wysiwyg strong {
    font-weight: bold !important;
}

.news-wysiwyg em {
    font-style: italic !important;
}

.news-wysiwyg ul {
    padding: 0 13px !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg ul {
        padding: 0 !important;
    }
}

.news-wysiwyg li {
    position: relative !important;
    padding-left: 20px !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg li {
        padding-left: 3vw !important;
        font-size: 3.73333vw !important;
    }
}

.news-wysiwyg li:before {
    position: absolute !important;
    top: 25% !important;
    left: 3px !important;
    width: 12px !important;
    height: 12px !important;
    background-color: #000 !important;
    content: '' !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg li:before {
        left: 0 !important;
        width: 2.66667vw !important;
        height: 2.66667vw !important;
    }
}

.news-wysiwyg .alignleft, .news-wysiwyg .alignright {
    width: 454px !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg .alignleft, .news-wysiwyg .alignright {
        display: block !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.news-wysiwyg .alignleft {
    float: left !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg .alignleft {
        float: none !important;
        margin: 0 auto 4vw !important;
    }
}

.news-wysiwyg .alignright {
    float: right !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg .alignright {
        float: none !important;
        margin: 0 auto !important;
    }
}

.news-wysiwyg .aligncenter {
    display: block !important;
    margin: 22px auto 0 !important;
    padding: 22px 0 0 !important;
    max-width: 952px !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg .aligncenter {
        padding-top: 0 !important;
        max-width: 100% !important;
    }
}

.news-wysiwyg table {
    margin: 44px auto  !important;
    width: 100% !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg table {
        margin: 7.2vw auto 7.2vw !important;
        border: none !important;
    }
}

.news-wysiwyg tr {
    border-bottom: 1px solid #ddd4d4 !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg tr {
        border: none !important;
    }
}

.news-wysiwyg tr:last-of-type {
    border: none !important;
}

.news-wysiwyg td:first-of-type {
    padding: 14px 20px !important;
    border-right: 1px solid #ddd4d4 !important;
    background-color: #f0efed !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg td:first-of-type {
        display: block !important;
        padding: 1.2vw !important;
        width: 100% !important;
        border: none !important;
        text-align: center !important;
        font-size: 3.73333vw !important;
    }
}

.news-wysiwyg td {
    padding: 14px 20px !important;
}

@media screen and (max-width: 750px) {
    .news-wysiwyg td {
        display: block !important;
        padding: 3.33333vw 4vw !important;
        width: 100% !important;
        font-size: 3.73333vw !important;
    }
}

.case-wysiwyg p {
    margin-top: 22px !important;
    padding: 0 22px !important;
    word-break: break-all !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg p {
        margin-top: 4vw !important;
        padding: 0 !important;
        font-size: 3.73333vw !important;
    }
}

.case-wysiwyg p:after {
    display: block;
    clear: both;
    content: "";
}

.case-wysiwyg hr {
    margin-top: 22px !important;
    margin-bottom: 0 !important;
    border-width: 0 !important;
    border-bottom: 1px solid #0068b7 !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg hr {
        margin-top: 4vw !important;
    }
}

.case-wysiwyg hr + p {
    display: none !important;
}

.case-wysiwyg strong {
    font-weight: bold !important;
}

.case-wysiwyg em {
    font-style: italic !important;
}

.case-wysiwyg ul {
    margin-top: 22px !important;
    padding: 0 13px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg ul {
        margin-top: 7.2vw !important;
        padding: 0 !important;
    }
}

.case-wysiwyg li {
    position: relative !important;
    padding-left: 20px !important;
    font-weight: normal !important;
    font-size: 16px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg li {
        padding-left: 3vw !important;
        font-size: 3.73333vw !important;
    }
}

.case-wysiwyg li:before {
    position: absolute !important;
    top: 25% !important;
    left: 3px !important;
    width: 12px !important;
    height: 12px !important;
    background-color: #000 !important;
    content: '' !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg li:before {
        left: 0 !important;
        width: 2.66667vw !important;
        height: 2.66667vw !important;
    }
}

.case-wysiwyg .alignleft, .case-wysiwyg .alignright {
    max-width: 356px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg .alignleft, .case-wysiwyg .alignright {
        display: block !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
    }
}

.case-wysiwyg .alignleft {
    float: left !important;
    margin-left: -13px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg .alignleft {
        float: none !important;
        margin: 0 auto 4vw !important;
    }
}

.case-wysiwyg .alignright {
    float: right !important;
    margin-right: -13px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg .alignright {
        float: none !important;
        margin: 0 auto 4vw !important;
    }
}

.case-wysiwyg .aligncenter {
    display: block !important;
    margin: 0 auto !important;
    max-width: 746px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg .aligncenter {
        margin: 0 auto 4vw !important;
        max-width: 100% !important;
    }
}

.case-wysiwyg table {
    margin: 44px auto  !important;
    width: 100% !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg table {
        margin: 7.2vw auto 7.2vw !important;
        border: none !important;
    }
}

.case-wysiwyg tr {
    border-bottom: 1px solid #ddd4d4 !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg tr {
        border: none !important;
    }
}

.case-wysiwyg tr:last-of-type {
    border: none !important;
}

.case-wysiwyg td:first-of-type {
    padding: 14px 20px !important;
    border-right: 1px solid #ddd4d4 !important;
    background-color: #f0efed !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg td:first-of-type {
        display: block !important;
        padding: 1.2vw !important;
        width: 100% !important;
        border: none !important;
        text-align: center !important;
        font-size: 3.73333vw !important;
    }
}

.case-wysiwyg td {
    padding: 14px 20px !important;
}

@media screen and (max-width: 750px) {
    .case-wysiwyg td {
        display: block !important;
        padding: 3.33333vw 4vw !important;
        width: 100% !important;
        font-size: 3.73333vw !important;
    }
}

.product-block .btn-wrap--contact {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .product-block .btn-wrap--contact {
        margin-top: 7.2vw;
    }
}

.product-contents .btn-wrap {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .product-contents .btn-wrap {
        margin-top: 7.2vw;
    }
}

.product-contents .btn-wrap:hover {
    color: #fff;
}

/*  product detail
--------------------------------------------- */
.detail {
    padding-top: 22px;
}

@media screen and (max-width: 750px) {
    .detail {
        margin-bottom: 4vw;
        padding-top: 4vw;
    }
}

.detail--last {
    margin-bottom: 0;
}

.detail__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: justify;
    margin-bottom: 44px;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

@media screen and (max-width: 750px) {
    .detail__head {
        display: block;
        margin-bottom: 7.2vw;
    }
}

.detail__head--column {
    display: block;
}

.detail__head--reverse {
    -ms-flex-direction: row;
    flex-direction: row;

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

.detail__head--column .detail__img {
    margin: 0 auto;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .detail__head--column .detail__img {
        margin-bottom: 4vw;
    }
}

.detail__head--column .detail__head-txt {
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .detail__head--column .detail__head-txt {
        margin-bottom: 0;
    }
}

.detail__head-txt {
    padding-left: 15px;
    width: 460px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .detail__head-txt {
        padding: 0;
        width: 100%;
        font-size: 3.73333vw;
    }
}

.detail__head-txt--full {
    width: 100%;
}

.detail__head-img {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    margin-bottom: 44px;
    width: 100%;

    justify-content: space-around;
}

@media screen and (max-width: 750px) {
    .detail__head-img {
        margin-bottom: 0 auto;
    }
}

.detail__head-img .detail__img {
    margin-left: 0;
}

.detail__img {
    margin-left: 22px;
    max-width: 356px;
    width: 100%;
}

.detail__img img {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .detail__img {
        margin: 0 auto 4vw;
        text-align: center;
    }
    .detail__img img {
        margin: 0 auto 4vw;
        max-width: 53.33333vw;
        width: 100%;
    }
}

.detail__img--right {
    max-width: 280px;
    max-height: 300px;
}

@media screen and (max-width: 750px) {
    .detail__img--right {
        margin: 0 auto 4vw;
        max-width: 53.33333vw;
    }
}

.detail__table {
    margin-bottom: 50px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .detail__table {
        margin-bottom: 7.2vw;
        border: none;
    }
}

.detail__table-row {
    border-bottom: 1px solid #ddd4d4;
}

@media screen and (max-width: 750px) {
    .detail__table-row {
        border: none;
    }
}

.detail__table-row:last-of-type {
    border: none;
}

.detail__table-head {
    padding: 14px 20px;
    border-right: 1px solid #ddd4d4;
    background-color: #f0efed;
}

@media screen and (max-width: 750px) {
    .detail__table-head {
        display: block;
        padding: 1.2vw;
        width: 100%;
        border: none;
        text-align: center;
        font-size: 3.73333vw;
    }
}

.detail__table-data {
    padding: 14px 20px;
}

@media screen and (max-width: 750px) {
    .detail__table-data {
        display: block;
        padding: 3.33333vw 4vw;
        width: 100%;
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   company
--------------------------------------------- */
.taglink-wrap {
    width: 100%;
}

.taglink-wrap__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 122px;
    margin-bottom: 44px;

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

@media screen and (max-width: 750px) {
    .taglink-wrap__list {
        -ms-flex-pack: end;
        margin-top: 13.26667vw;

        -webkit-box-pack: end;
        justify-content: flex-end;
    }
}

.taglink-wrap__list-item {
    position: relative;
    margin-bottom: 45px;
    width: 507px;
    height: 250px;
}

@media screen and (max-width: 750px) {
    .taglink-wrap__list-item {
        margin-bottom: 7.5vw;
        width: 86.66667vw;
        height: 52vw;
    }
}

.taglink-wrap__list-item:nth-of-type(2n) {
    margin-left: 24px;
}

@media screen and (max-width: 750px) {
    .taglink-wrap__list-item:nth-of-type(2n) {
        margin-left: 0;
    }
}

.taglink-wrap__list-item:nth-of-type(5) {
    margin-bottom: 0;
}

@media screen and (max-width: 750px) {
    .taglink-wrap__list-item:nth-of-type(5) {
        margin-bottom: 6.96667vw;
    }
}

.taglink-wrap__list-item:nth-of-type(7) {
    margin-bottom: 0;
}

.taglink-wrap__link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 482px;
    height: 250px;
    -webkit-transition: border .3s, background-color .3s;
    transition: border .3s, background-color .3s;
}

@media screen and (max-width: 750px) {
    .taglink-wrap__link {
        width: 86.66667vw;
        height: 48.66667vw;
    }
}

.taglink-wrap__link:hover:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.taglink-wrap__link:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    content: '';
}

.taglink-wrap__link--1 {
    background: url("/assets/img/company_message_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__link--2 {
    background: url("/assets/img/philosophy_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__link--3 {
    background: url("/assets/img/business_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__link--4 {
    background: url("/assets/img/policy_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__link--5 {
    background: url("/assets/img/overview_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__link--6 {
    background: url("/assets/img/address_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__link--7 {
    background: url("/assets/img/affiliates_pc.jpg") center center no-repeat;
    background-size: cover;
}

.taglink-wrap__ttl {
    position: absolute;
    top: -21px;
    left: -30px;
    z-index: 9;
    display: inline-block;
    padding: 15px 0 18px 18px;
    width: 280px;
    height: 58px;
    background-color: #0068b7;
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .taglink-wrap__ttl {
        top: -2.93333vw;
        left: -15px;
        padding: 2.66667vw 3.73333vw;
        width: 64vw;
        height: 11.33333vw;
        font-size: 4.53333vw;
    }
}

.taglink-wrap__ttl:after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .taglink-wrap__ttl:after {
        right: 4.13333vw;
        width: 1.73333vw;
        height: 1.73333vw;
        border-top: 0.4vw solid white;
        border-right: 0.4vw solid white;
    }
}

.recruit-list {
    margin: 88px auto 0;
    width: 1200px;
}

@media screen and (max-width: 750px) {
    .recruit-list {
        margin: 13.26667vw auto 0;
        width: 100%;
    }
}

.recruit-list__item {
    position: relative;
    margin: 0 auto 44px;
    width: 100%;
    height: 435px;
}

@media screen and (max-width: 750px) {
    .recruit-list__item {
        margin: 0 auto 7.33333vw;
        height: auto;
    }
    .recruit-list__item:last-child {
        margin-bottom: 0;
    }
}

.recruit-list__item--newgraduates {
    background: url("/assets/img/recruit_newgraduates.jpg") left top no-repeat;
    background-size: auto;
}

@media screen and (max-width: 750px) {
    .recruit-list__item--newgraduates {
        background: none;
    }
}

.recruit-list__item--career {
    background: url("/assets/img/recruit_career.jpg") right top no-repeat;
    background-size: auto;
}

@media screen and (max-width: 750px) {
    .recruit-list__item--career {
        background: none;
    }
}

.recruit-list__item--disability {
    background: url("/assets/img/recruit_disability.jpg") left top no-repeat;
    background-size: auto;
}

@media screen and (max-width: 750px) {
    .recruit-list__item--disability {
        background: none;
    }
}

@media screen and (max-width: 750px) {
    .recruit-list__img-wrap {
        width: 100%;
    }
}

.recruit-list__card {
    position: absolute;
    top: 40px;
    padding: 45px;
    width: 505px;
    height: 350px;
    background-color: rgba(0, 104, 183, 0.8);
    color: #fff;
}

@media screen and (max-width: 750px) {
    .recruit-list__card {
        top: 0;
        display: block;
        padding: 6.66667vw 4.66667vw;
        width: 100%;
        height: auto;
    }
}

.recruit-list__card--left {
    position: relative;
    left: 80px;
}

@media screen and (max-width: 750px) {
    .recruit-list__card--left {
        left: 0;
    }
}

@media screen and (min-width: 751px) {
    .recruit-list__card--left:after {
        position: absolute;
        top: 65px;
        right: -60px;
        width: 95px;
        height: 3px;
        background-color: #fff;
        content: '';
    }
    body.ie .recruit-list__card--left:after {
        top: 60px;
    }
}

.recruit-list__card--right {
    position: relative;
    right: 80px;
    margin-left: auto;
}

@media screen and (max-width: 750px) {
    .recruit-list__card--right {
        right: 0;
    }
}

@media screen and (min-width: 751px) {
    .recruit-list__card--right:before {
        position: absolute;
        top: 65px;
        left: -60px;
        width: 95px;
        height: 3px;
        background-color: #fff;
        content: '';
    }
    body.ie .recruit-list__card--right:before {
        top: 60px;
    }
}

.recruit-list__ttl {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .recruit-list__ttl {
        margin-bottom: 2.66667vw;
        font-size: 5.33333vw;
    }
}

.recruit-list__txt {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .recruit-list__txt {
        margin-bottom: 6.66667vw;
        font-size: 3.73333vw;
    }
}

.recruit-list__link {
    position: relative;
    padding: 11px 0 11px 25px;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .recruit-list__link {
        display: block;
        padding: 0.66667vw 0 0.66667vw 4.66667vw;
        width: 100%;
        font-size: 3.73333vw;
    }
}

.recruit-list__link:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform-origin: top;
    transform-origin: top;
}

.recruit-list__link-wrap {
    width: 100px;
}

@media screen and (max-width: 750px) {
    .recruit-list__link-wrap {
        width: 100%;
    }
}

.wrap {
    margin: 0 auto;
    width: 1200px;
}

/* ---------------------------------------------
*   child-page
--------------------------------------------- */
.child-page {
    position: relative;
    margin: 44px auto 0;
    min-width: 1200px;
    font-weight: normal;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .child-page {
        margin-top: 0;
        padding: 0 4.4vw;
        min-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .child-page--news {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--catalog {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--company {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--affiliates {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--career {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--contact {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--profile {
        padding: 0;
    }
}

@media screen and (max-width: 750px) {
    .child-page--application {
        padding: 0;
    }
}

.child-page__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 88px 0;
    color: #0068b7;
    line-height: 1;

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

@media screen and (max-width: 750px) {
    .child-page__head {
        padding: 14.4vw 0;
    }
}

.child-page__ttl {
    top: 0;
    margin: 0 auto;
    font-weight: bold;
    font-size: 36px;
}

@media screen and (max-width: 750px) {
    .child-page__ttl {
        font-size: 5.86667vw;
    }
}

.ie .child-page__ttl {
    margin: 0;
}

.child-page__wrapper {
    margin: 0 auto 44px;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .child-page__wrapper {
        margin-bottom: 1.86667vw;
        width: 100%;
    }
}

.child-page__wrapper--small {
    width: 950px;
}

@media screen and (max-width: 750px) {
    .child-page__wrapper--small {
        width: 100%;
    }
}

.child-page__wrapper--privacy {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .child-page__wrapper--privacy {
        margin-top: 7.2vw;
    }
}

.child-page__body {
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .child-page__body {
        margin-bottom: 7.2vw;
    }
}

.child-page__read {
    margin: 0 auto 44px;
    width: 950px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .child-page__read {
        margin-bottom: 7.2vw;
        width: 100%;
        font-size: 3.73333vw;
    }
}

.child-page__body-ttl {
    margin: 0 auto 22px;
    padding-left: 15px;
    width: 1040px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.9;
}

@media screen and (max-width: 750px) {
    .child-page__body-ttl {
        margin-bottom: 4vw;
        padding-left: 4vw;
        width: 100%;
        height: 10vw;
        font-size: 5.33333vw;
    }
}

.child-page__body-ttl--left {
    text-align: left;
}

.child-page__body-ttl2 {
    position: relative;
    margin-bottom: 22px;
    padding-left: 21px;
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .child-page__body-ttl2 {
        margin-bottom: 4vw;
        padding-left: 4.53333vw;
        font-size: 4.53333vw;
    }
}

.child-page__body-ttl2:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: #0068b7;
    content: '';
}

@media screen and (max-width: 750px) {
    .child-page__body-ttl2:before {
        width: 2.13333vw;
        height: 100%;
    }
}

.child-page__body-ttl2--site-policy {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .child-page__body-ttl2--site-policy {
        margin-top: 7.2vw;
    }
}

.child-page__txt {
    margin-bottom: 22px;
    padding: 0 45px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .child-page__txt {
        margin-bottom: 7.2vw;
        padding: 0;
        font-size: 3.73333vw;
    }
}

.child-page__txt--2 {
    padding: 0;
}

.child-page__privacytxt {
    padding: 0 45px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .child-page__privacytxt {
        padding: 0;
        font-size: 3.73333vw;
    }
}

.child-page__privacytxt--bold {
    font-weight: bold;
}

.child-page__list {
    padding: 0 45px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .child-page__list {
        padding: 0 0 7.2vw;
        font-size: 3.73333vw;
    }
}

.child-page__signature {
    margin: 0 auto;
    width: 1040px;
    text-align: right;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .child-page__signature {
        width: 100%;
        text-align: left;
        font-size: 3.73333vw;
    }
}

.child-page__signature--2 {
    width: 950px;
}

@media screen and (max-width: 750px) {
    .child-page__signature--2 {
        width: 100%;
    }
}

.child-page__signature-company {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .child-page__signature-company {
        margin-top: 7.2vw;
    }
}

.child-page__box {
    margin: 0 auto 44px;
    padding: 44px;
    width: 950px;
    border: 1px solid #cccccc;
}

@media screen and (max-width: 750px) {
    .child-page__box {
        padding: 4vw;
        width: 100%;
    }
}

.child-page__boxlist {
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .child-page__boxlist {
        font-size: 3.73333vw;
    }
}

.child-page__boxlist-item {
    padding-left: 2em;
    text-indent: -2em;
}

.child-page__mailto {
    color: #4066bc;
    font-size: 16px;
    -webkit-transition: color .3s;
    transition: color .3s;
}

@media screen and (max-width: 750px) {
    .child-page__mailto {
        font-size: 3.73333vw;
    }
}

.child-page__mailto:hover {
    color: #4066bc;
    text-decoration: underline;
}

.child-page__bottom {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .child-page__bottom {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .page-child-spnav {
        padding: 0 4.4vw;
    }
}

/* ---------------------------------------------
*   catalog
--------------------------------------------- */
.catalog__ttl {
    margin: 44px 0;
    padding-bottom: 22px;
    padding-left: 10px;
    border-bottom: 2px solid #0068b7;
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
}

@media screen and (max-width: 750px) {
    .catalog__ttl {
        margin: 5.86667vw 0;
        padding-bottom: 2.93333vw;
        padding-left: 0;
        border-bottom: 0.66667vw solid #0068b7;
        font-size: 4.8vw;
    }
}

.catalog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 44px;

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

@media screen and (max-width: 750px) {
    .catalog-list {
        margin-top: 14.4vw;
        margin-bottom: 7.2vw;
    }
}

.catalog-list--s {
    position: relative;
    z-index: 10;
    width: 880px;
    margin: 88px auto 22px;
}

@media screen and (max-width: 750px) {
    .catalog-list--s {
        width: 100%;
        margin-top: calc(108 / 750 * 100vw);
        margin-bottom: calc(54 / 750 * 100vw);
    }
}

.catalog-list__item {
    margin-right: 5px;
    margin-bottom: 6px;
}

@media screen and (max-width: 750px) {
    .catalog-list__item {
        margin-right: 0.8%;
        margin-bottom: 0.8vw;
        width: 49.6%;
    }
    .catalog-list__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.catalog-list__link {
    position: relative;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding: 0 15px;
    width: 255px;
    height: 54px;
    background-color: #f0efed;
    color: #000;
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;

    -webkit-box-align: center;
    align-items: center;
    font-feature-settings: "palt";
}

.catalog-list__link:hover {
    background-color: #c4c4c4;
}

@media screen and (max-width: 750px) {
    .catalog-list__link {
        padding: 0 8vw 0 4vw;
        width: 100%;
        height: 12.4vw;
        text-align: left;
        font-size: 3.46667vw;
    }
}

@media screen and (max-width: 750px) {
    .android .catalog-list__link {
        letter-spacing: -0.05em;
        padding-left: 20px;
    }
}

@media screen and (min-width: 751px) {
    .catalog-list--s .catalog-list__link {
        width: 215px;
    }
}

.catalog-list__link:after {
    position: absolute;
    top: 50%;
    right: 9px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .catalog-list__link:after {
        right: 20px;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.catalog-list__link.is-current {
    background-color: #c4c4c4;
}

.catalog-box {
    margin-right: 40px;
    margin-bottom: 44px;
    width: 230px;
}

@media screen and (max-width: 750px) {
    .catalog-box {
        margin-bottom: 8vw;
        width: 100%;
    }
}

.catalog-box__tag-wrapper {
    text-align: left;
}

.catalog-box__tag {
    padding: 4px 9px;
    border: 1px solid #0068b7;
    color: #0068b7;
    font-weight: bold;
    font-size: 12px;
}

.windows .catalog-box__tag {
    padding: 4px 8px;
}

.ie .catalog-box__tag {
    padding: 4px 8px 2px;
}

.edge .catalog-box__tag {
    padding: 2px 8px;
}

@media screen and (max-width: 750px) {
    .catalog-box__tag {
        padding: 1.06667vw 2.26667vw;
        font-size: 3.2vw;
    }
}

.catalog-box__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 15px 0;
    padding-left: 10px;
    height: 48px;
    border-left: 8px solid #0068b7;
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 16px;

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

.windows .catalog-box__ttl {
    padding-left: 5px;
}

@media screen and (max-width: 750px) {
    .catalog-box__ttl {
        margin: 4vw 0;
        padding-left: 2.66667vw;
        width: 100%;
        height: auto;
        border-left: 2.13333vw solid #0068b7;
        font-size: 3.73333vw;
        line-height: 1.3;
    }
}

.catalog-box__img {
    display: block;
    margin-bottom: 35px;
    max-width: 230px;
    height: 326px;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.catalog-box__img:hover {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .catalog-box__img {
        margin: 0 auto;
        margin-bottom: 8vw;
        max-width: 58.66667vw;
        height: auto;
    }
}

.catalog-box__img img {
    height: 100%;
}

@media screen and (max-width: 750px) {
    .catalog-box__img img {
        height: auto;
    }
}

.catalog-box__pdf-link {
    position: relative;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-left: 15px;
    width: 230px;
    height: 54px;
    background-color: #f0efed;
    color: #000;
    font-weight: normal;
    font-size: 14px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;

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

.catalog-box__pdf-link:hover {
    background-color: #c4c4c4;
}

@media screen and (max-width: 750px) {
    .catalog-box__pdf-link {
        padding-left: 4vw;
        width: 100%;
        height: 13.06667vw;
        font-size: 3.73333vw;
    }
}

.catalog-box__pdf-link:after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .catalog-box__pdf-link:after {
        right: 2.66667vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.catalog-box__pdf-link + .catalog-box__pdf-link {
    margin-top: 11px;
}

@media screen and (max-width: 750px) {
    .catalog-box__pdf-link + .catalog-box__pdf-link {
        margin-top: 1.46667vw;
    }
}

.catalog-container {
    display: none;
}

.catalog-container.is-current {
    display: block;
}

@media screen and (max-width: 750px) {
    .catalog-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
    }
}

.catalog-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

@media screen and (min-width: 751px) {
    .catalog-box-wrapper {
        width: calc(100% + 40px);
    }
}

@media screen and (max-width: 750px) {
    .catalog-box-wrapper {
        display: block;
    }
}

/* ---------------------------------------------
*   message
--------------------------------------------- */
.message__txt-area {
    margin: 0 auto;
    width: 960px;
}

@media screen and (max-width: 750px) {
    .message__txt-area {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
        width: 100%;
    }
}

.message__txt {
    margin-bottom: 22px;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .message__txt {
        margin-bottom: 1.46667vw;
        font-size: 3.73333vw;
    }
}

.message__txt--mgt {
    margin-top: 22px;
    text-align: right;
}

@media screen and (max-width: 750px) {
    .message__txt--mgt {
        margin-top: 5.86667vw;
    }
}

.message__pic {
    margin-top: 88px;
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .message__pic {
        margin-top: 14.4vw;
        margin-bottom: 7.2vw;
    }
}

.message__lead-text {
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .message__lead-text {
        font-size: 15px;
    }
}

.message__list {
    text-align: left;
    margin: 60px 0 100px;
}
@media screen and (max-width: 750px) {
    .message__list {
        margin: 60px 0;
    }
}

.message__list li:nth-of-type(n + 2) {
    margin-top: 40px;
}

@media screen and (max-width: 750px) {
    .message__list li:nth-of-type(n + 2) {
        margin-top: 20px;
    }
}

.message__list li h3 {
    font-size: 18px;
    color: #0068b7;
    font-weight: 700;
}
@media screen and (max-width: 750px) {
    .message__list li h3 {
        font-size: 15px;
    }
}

.message__list li p {
    font-size: 18px;
    margin-top: 10px;
}

@media screen and (max-width: 750px) {
    .message__list li p {
        font-size: 15px;
    }
}

/* ---------------------------------------------
*   company-btn
--------------------------------------------- */
.company-btn {
    margin: 44px auto;
    padding-top: 44px;
    border-top: 2px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .company-btn {
        margin: 7.2vw auto;
        padding-top: 7.2vw;
        width: 100%;
    }
}

.company-btn__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1040px;

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

@media screen and (max-width: 750px) {
    .company-btn__list {
        width: 100%;
    }
}

.company-btn__list-item {
    margin: 0 6px 6px 0;
}

@media screen and (max-width: 750px) {
    .company-btn__list-item {
        margin: 0 0.8vw 0.8vw 0;
    }
}

.company-btn__list-item:nth-child(3n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .company-btn__list-item:nth-child(3n) {
        margin-right: 0.8vw;
    }
}

@media screen and (max-width: 750px) {
    .company-btn__list-item:nth-child(2n) {
        margin-right: 0;
    }
}

.company-btn__list-link {
    position: relative;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-left: 20px;
    width: 342px;
    height: 54px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
    font-weight: normal;
    font-size: 14px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;

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

@media screen and (max-width: 750px) {
    .company-btn__list-link {
        padding-left: 20px;
        width: 49.6vw;
        height: 12.53333vw;
        font-size: 3.46667vw;
    }
    .windows .company-btn__list-link {
        width: calc(48.6vw - 0.4vw);
    }
}

.company-btn__list-link:after {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .company-btn__list-link:after {
        right: 5.4vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.company-btn__list-link:hover {
    background-color: rgba(0, 104, 183, 0.3);
}

/* ---------------------------------------------
*   philosophy
--------------------------------------------- */
.philosophy {
    margin: 0 auto;
    margin-top: 88px;
    width: 950px;
}

@media screen and (max-width: 750px) {
    .philosophy {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 14.4vw;
        padding: 0 20px;
        width: 100%;
    }
}

.philosophy__txt {
    padding-top: 30px;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .philosophy__txt {
        padding-top: 5.33333vw;
        letter-spacing: 0.05em;
        font-size: 3.73333vw;
    }
}

.philosophy__txt:nth-of-type(1) {
    padding-top: 0;
}

.philosophy__img {
    margin: 88px 0;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .philosophy__img {
        margin: 14.4vw 0;
    }
    .philosophy__img img {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .philosophy__img--1 {
        width: 92vw;
    }
}

@media screen and (max-width: 750px) {
    .philosophy__img--2 {
        width: 73.33333vw;
    }
}

/* ---------------------------------------------
*   business
--------------------------------------------- */
.business {
    margin-top: 88px;
}

@media screen and (max-width: 750px) {
    .business {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 14.4vw;
        padding: 0 20px;
    }
}

.business__txt {
    margin: 0 auto;
    width: 960px;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .business__txt {
        width: 100%;
        font-size: 3.73333vw;
    }
}

.business__img {
    margin: 44px 0;
}

@media screen and (max-width: 750px) {
    .business__img {
        margin: 7.2vw 0;
    }
    .business__img img {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .business__img--1 {
        margin-top: 0;
        padding-right: 25px;
        width: 170.53333vw;
    }
}

@media screen and (max-width: 750px) {
    .business__img-wrapper {
        overflow-x: scroll;
        width: 96vw;
    }
}

.business-container {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .business-container {
        width: 100%;
    }
}

.business__box {
    padding: 22px 45px;
    text-align: left;
    font-size: 16px;
    line-height: calc(24/16);
}

@media screen and (max-width: 750px) {
    .business__box {
        padding: calc(30 / 750 * 100vw);
        font-size: calc(28 / 750 * 100vw);
        line-height: calc(40/28);
    }
}

.business-block {
    margin-top: 44px;
    padding-top: 44px;
    padding-bottom: 14px;
    background-color: #F0EFED;
}

@media screen and (max-width: 750px) {
    .business-block {
        margin-top: 5.86667vw;
        padding: 0 20px;
        padding-top: 8vw;
        padding-bottom: 4vw;
    }
}

.business-block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .business-block__list {
        width: 100%;
    }
}

.business-block__list-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 2px solid #EA5205;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.business-block__list-link:hover {
    background-color: #EA5205;
}

.business-block__list-link:hover > .business-block__list-ttl {
    color: #fff;
}

.business-block__list-link:hover > .business-block__list-ttl:after {
    border-bottom: 2px solid #fff;
}

@media screen and (max-width: 750px) {
    .business-block__list-link:hover > .business-block__list-ttl:after {
        border-bottom: 0.53333vw solid #fff;
    }
}

.business-block__list-link:hover > .business-block__list-txt {
    color: #fff;
}

.green .business-block__list-link {
    border: 2px solid #009A78;
}

.green .business-block__list-link:hover {
    background-color: #009A78;
}

.business-block__list-item {
    margin-right: 32px;
    margin-bottom: 30px;
    width: 325px;
    height: 195px;
}

@media screen and (max-width: 750px) {
    .business-block__list-item {
        margin-right: 2.66667vw;
        margin-bottom: 2.66667vw;
        width: 44.66667vw;
        height: 44.66667vw;
    }
}

.business-block__list-item:nth-child(2n) {
    margin-right: 0;
}

.business-block__list-ttl {
    text-align: center;
    color: #EA5205;
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .business-block__list-ttl {
        font-size: 4.53333vw;
        line-height: 1.4;
        -webkit-font-feature-settings: "palt" 1;
        font-feature-settings: "palt" 1;
    }
}

.green .business-block__list-ttl {
    color: #009A78;
}

/* ---------------------------------------------
*   affiliates
--------------------------------------------- */
.affiliates {
    margin-top: 88px;
}

@media screen and (max-width: 750px) {
    .affiliates {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 14.4vw;
        padding: 0 4vw;
    }
}

.affiliates__contents {
    margin-top: 30px;
}

@media screen and (max-width: 750px) {
    .affiliates__contents {
        margin-top: calc(20 / 750 * 100vw);
    }

    .affiliates__contents + .affiliates__contents {
        margin-top: calc(76 / 750 * 100vw);
    }
}

.affiliates__txt {
    margin: 0 auto;
    width: 960px;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .affiliates__txt {
        width: 100%;
        font-size: 3.73333vw;
    }
}

.affiliates__img {
    margin: 44px 0;
}

@media screen and (max-width: 750px) {
    .affiliates__img {
        margin: 7.2vw 0;
    }
    .affiliates__img img {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .affiliates__img--1 {
        margin-top: 0;
        padding-right: 4vw;
        width: 170.53333vw;
    }
}

@media screen and (max-width: 750px) {
    .affiliates__img-wrapper {
        overflow-x: scroll;
        width: 96vw;
    }
}

.affiliates-container {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .affiliates-container {
        width: 100%;
    }
}

.affiliates__box {
    width: 100%;
    padding: 30px 0 34px;
    background: #edf2f4;
}

@media screen and (max-width: 750px) {
    .affiliates__box {
        padding: calc(28 / 750 * 100vw) 0 calc(26 / 750 * 100vw);
    }
}

.affiliates__box-head {
    margin: 0 34px 30px;
    padding-bottom: 15px;
    border-bottom: solid 1px #0068b7;
    font-size: 15px;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .affiliates__box-head {
        margin: 0 calc(34 / 750 * 100vw) calc(30 / 750 * 100vw) calc(24 / 750 * 100vw);
        padding-bottom: calc(8 / 750 * 100vw);
        font-size: calc(28 / 750 * 100vw);
    }
}

.affiliates__box-head-small {
    font-size: 12px;
}

@media screen and (max-width: 750px) {
    .affiliates__box-head-small {
        font-size: calc(24 / 750 * 100vw);
    }
}

.affiliates__list {
    width: 1006px;
    margin-left: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 26px calc(4/1006*100%);
    text-align: center;
}

@media screen and (max-width: 750px) {
    .affiliates__list {
        width: 100%;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 0 calc(6 / 750 * 100vw) 0 calc(58 / 750 * 100vw);
    }
}

.affiliates__list-item {
    width: calc(501/1006*100%);
    display: inline-block;
    font-size: 15px;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .affiliates__list-item {
        width: 100%;
        font-size: calc(26 / 750 * 100vw);
        line-height: calc(56 / 26);
    }
}

.affiliates__list-link {
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    .affiliates__list-link:hover {
        color: #0068b7;
    }
}

.affiliates__list-link::after {
    content: ">";
    margin-left: 14px;
}

@media screen and (max-width: 750px) {
    .affiliates__list-link::after {
        margin-left: calc(12 / 750 * 100vw);
    }
}

.affiliates-block {
    margin-top: 44px;
    padding-top: 44px;
    padding-bottom: 14px;
    background-color: #F0EFED;
}

@media screen and (max-width: 750px) {
    .affiliates-block {
        margin-top: 5.86667vw;
        padding: 0 4vw;
        padding-top: 8vw;
        padding-bottom: 4vw;
    }
}

.affiliates-block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .affiliates-block__list {
        width: 100%;
    }
}

.affiliates-block__list-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 2px solid #EA5205;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.affiliates-block__list-link:hover {
    background-color: #EA5205;
}

.affiliates-block__list-link:hover > .affiliates-block__list-ttl {
    color: #fff;
}

.affiliates-block__list-link:hover > .affiliates-block__list-ttl:after {
    border-bottom: 2px solid #fff;
}

@media screen and (max-width: 750px) {
    .affiliates-block__list-link:hover > .affiliates-block__list-ttl:after {
        border-bottom: 0.53333vw solid #fff;
    }
}

.affiliates-block__list-link:hover > .affiliates-block__list-txt {
    color: #fff;
}

.green .affiliates-block__list-link {
    border: 2px solid #009A78;
}

.green .affiliates-block__list-link:hover {
    background-color: #009A78;
}

.affiliates-block__list-item {
    margin-right: 32px;
    margin-bottom: 30px;
    width: 325px;
    height: 195px;
}

@media screen and (max-width: 750px) {
    .affiliates-block__list-item {
        margin-right: 2.66667vw;
        margin-bottom: 2.66667vw;
        width: 44.66667vw;
        height: 44.66667vw;
    }
}

.affiliates-block__list-item:nth-child(2n) {
    margin-right: 0;
}

.affiliates-block__list-ttl {
    text-align: center;
    color: #EA5205;
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .affiliates-block__list-ttl {
        font-size: 4.53333vw;
        line-height: 1.4;
        -webkit-font-feature-settings: "palt" 1;
        font-feature-settings: "palt" 1;
    }
}

.green .affiliates-block__list-ttl {
    color: #009A78;
}

/* ---------------------------------------------
*   office
--------------------------------------------- */
.office {
    margin-top: 88px;
    padding: 22px 0 10px;
    background-color: #F0EFED;
}

@media screen and (max-width: 750px) {
    .office {
        margin-top: 6vw;
        padding: 0;
        background-color: #fff;
    }
}

.office-container {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .office-container {
        width: 100%;
    }
}

.office-box {
    margin-bottom: 22px;
    padding: 22px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .office-box {
        margin-bottom: 0;
        padding: 7.2vw 0;
        border-bottom: 0.26667vw solid #0068b7;
    }
}

.office-box:last-of-type {
    border-bottom: 0;
}

.office-box__inner {
    position: relative;
    margin-top: 50px;
}

@media screen and (max-width: 750px) {
    .office-box__inner {
        margin-top: 12vw;
    }
}

.office-box__inner:first-of-type {
    margin-top: 0;
}

.office-box__txt {
    text-align: left;
    font-weight: normal;
    font-size: 16px;

    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
    .office-box__txt {
        font-size: 3.73333vw;
        line-height: 1.4;
    }
}

.office-box__bus {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 20px 0;
    padding-left: 20px;
    width: 226px;
    height: 54px;
    border: 2px solid #0068b7;
    color: #0068b7;
    font-weight: bold;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;

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

.windows .office-box__bus {
    padding-left: 15px;
}

.office-box__bus--office {
    position: absolute;
    top: 0;
    right: 300px;
    margin: 0;
}

@media screen and (max-width: 750px) {
    .office-box__bus {
        margin: 4vw auto 0;
        padding-left: 4vw;
        width: calc(100% - 40px);
        height: 13.06667vw;
        border: 0.53333vw solid #0068b7;
        font-size: 3.73333vw;
    }

    .office-box__bus--office {
        position: relative;
        top: auto;
        right: auto;
    }
}

.office-box__bus:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(/assets/img/icon_link.svg) 0 0 no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .office-box__bus:after {
        right: 4.66667vw;
        width: 2.6vw;
        height: 2.6vw;
    }
}

.office-box__bus:hover {
    background-color: #0068b7;
    color: #fff;
}

.office-box__bus:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.office-box__map {
    margin-top: 45px;
    width: 380px;
    height: 340px;
}

@media screen and (max-width: 750px) {
    .office-box__map {
        margin-top: 4vw;
        width: 100%;
        height: 50vw;
    }
}

.office-box__map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px) {
    .office-box__txt-area {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
    }
}

.office-box__map-wrapper {
    display: block;
    text-align: left;
}
.office-box__map-wrapper a {
    position: relative;
    padding-left: 18px;
}
.office-box__map-wrapper a:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(/assets/img/icon_link.svg) 0 0 no-repeat;
    background-size: 100% auto;
}

.office-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 44px auto;
    padding-left: 20px;
    width: 256px;
    height: 54px;
    border: 2px solid #0068b7;
    background-color: #0068b7;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;

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

.windows .office-link {
    padding-left: 15px;
}

@media screen and (max-width: 750px) {
    .office-link {
        margin: 0 auto;
        padding-left: 4vw;
        width: 92vw;
        height: 13.06667vw;
        font-size: 3.73333vw;
    }
}

.office-link:after {
    position: absolute;
    top: 50%;
    right: 25px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .office-link:after {
        right: 4.66667vw;
        width: 2.6vw;
        height: 2.6vw;
    }
}

.office-link:hover {
    background-color: #fff;
    color: #0068b7;
}

.office-link:hover:after {
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
}

.office-txt {
    margin-block: 30px 50px;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .office-txt {
        margin: 4vw 0;
        font-size: 3.73333vw;
        padding: 0 20px;
    }
}

.office-txt__link {
    color: #0068b7;
}

.office-txt__link:hover {
    border-bottom: 1px solid #252334;
}

/* ---------------------------------------------
*   application
--------------------------------------------- */
.application-container {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .application-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 750px) {
    .application-container--career {
        padding: 0;
    }
}

.application {
    margin: 0 auto;
    margin-top: 88px;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .application {
        margin-top: 14.4vw;
        width: 100%;
    }
}

.application--career {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .application--career {
        margin-top: 7.2vw;
    }
}

.application__ttl {
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .application__ttl {
        font-size: 3.73333vw;
    }
}

.application__txt-link {
    color: #4066BC;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .application__txt-link {
        font-size: 3.5vw;
    }
}

.application__txt-link:hover {
    text-decoration: underline;
}

.application__txt {
    font-size: 16px;

    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
    .application__txt {
        text-align: left;
        font-size: 3.73333vw;
    }
}

.application__txt--arrow {
    position: relative;
    padding-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .application__txt--arrow {
        padding-bottom: 4.8vw;
    }
}

.application__txt--arrow:after {
    position: absolute;
    bottom: -2px;
    left: 2em;
    content: "▼";
}

@media screen and (max-width: 750px) {
    .application__txt--arrow:after {
        bottom: -0.26667vw;
        left: 7.33333vw;
    }
}

.application__txt--arrow-s:after {
    left: 1em;
}

.application__txt--inline {
    display: inline;
}

.application__txt--mgt {
    padding-top: 22px;
}

@media screen and (max-width: 750px) {
    .application__txt--mgt {
        padding-top: 4.8vw;
    }
}

.application__left {
    padding-top: 22px;
    padding-left: 22px;
    width: 160px;
    border-right: 1px solid #ccc;
    background-color: #F0EFED;
    vertical-align: top;
}

@media screen and (max-width: 750px) {
    .application__left {
        display: block;
        padding: 2vw 0;
        width: 100%;
        border: none;
        text-align: center;
    }
}

.application__right {
    padding: 22px;
    font-size: 16px;

    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
}

@media screen and (max-width: 750px) {
    .application__right {
        display: block;
        padding: 4vw;
        width: 100%;
        text-align: left;
        font-size: 3.73333vw;
    }
}

.application__right p {
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .application__right p {
        margin-bottom: 4.8vw;
    }
}

.application__right p:last-of-type {
    margin-bottom: 0;
}

.application__right strong {
    font-weight: bold;
}

.application__right a {
    color: #4066BC;
    font-size: 14px;
}

.application__right a:hover {
    text-decoration: underline;
}

.application__row {
    border-bottom: 1px solid #ccc;
}

.application__row:last-child {
    border-bottom: none;
}

@media screen and (max-width: 750px) {
    .application__row {
        border: none;
    }
}

.application__right-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 750px) {
    .application__right-row {
        display: block;
    }
}

@media screen and (max-width: 750px) {
    .application__right-row:first-of-type {
        margin-top: 4vw;
    }
}

.application__link {
    margin-top: 5px;
    margin-left: 22px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .application__link {
        display: block;
        margin: 0 auto;
        padding-top: 4vw;
        width: 39.6vw;
    }
    .application__link img {
        width: 100%;
    }
}

.application__link:hover {
    opacity: 0.8;
}

.application__right-row-left {
    width: 140px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .application__right-row-left {
        width: 100%;
        font-weight: bold;
        font-size: 3.73333vw;
    }
    .application__right-row-left:before {
        content: "■";
    }
}

.application__right-row-right {
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .application__right-row-right {
        text-indent: 1em;
        font-size: 3.73333vw;
    }
}

.application__table {
    margin-top: 44px;
    width: 100%;
}

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

.application__table--handi-1 {
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .application__table--handi-1 {
        margin-bottom: 3.2vw;
    }
}

.application__table--handi-2 {
    width: 100%;
}

.application__btn-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 750px) {
    .application__btn-wrapper {
        display: block;
    }
}

.application__btn-wrapper--center {
    -ms-flex-align: center;

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

.application__map-btn {
    position: relative;
    margin-left: 50px;
    padding: 5px 35px 5px 20px;
    border: 2px solid #0068b7;
    color: #0068b7;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .application__map-btn {
        display: block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        box-sizing: border-box;
        margin-top: 4vw;
        margin-top: 4vw;
        margin-left: -4vw;
        padding: 3.33333vw;
        padding: 3.33333vw;
        width: calc(100% + 8vw);
        border: 0.26667vw solid #0068b7;
        border: 0.53333vw solid #0068b7;
        font-size: 3.73333vw;
    }
}

.application__map-btn:hover {
    background-color: #0068b7;
    color: #fff;
}

.application__map-btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.application__map-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(/assets/img/icon_link.svg) 0 0 no-repeat;
    background-size: 100% auto;
    transform: translateY(-50%);
}

/* ---------------------------------------------
*   contact-txt
--------------------------------------------- */
.contact-txt {
    margin-bottom: 44px;
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    .contact-txt {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 750px) {
    .contact-txt--mgb {
        margin-bottom: 7.2vw;
    }
}

.contact-txt__txt {
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact-txt__txt {
        font-size: 3.73333vw;
    }
}

.contact-txt__txt-area {
    margin: 0 auto;
    width: 960px;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .contact-txt__txt-area {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4vw;
        width: 100%;
    }
}

.contact-txt__txt-b {
    padding-top: 22px;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact-txt__txt-b {
        padding-top: 4vw;
        font-size: 3.73333vw;
    }
}

.contact-txt__link {
    color: #4066BC;
}

.contact-txt__link:hover {
    text-decoration: underline;
}

.contact-txt__page-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 44px auto;
    padding-left: 20px;
    width: 200px;
    height: 54px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
    font-weight: normal;
    font-weight: bold;
    font-size: 14px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;

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

@media screen and (max-width: 750px) {
    .contact-txt__page-link {
        margin-top: 7.2vw;
        margin-bottom: 0;
        padding-left: 4vw;
        width: 100%;
        height: 12.53333vw;
        font-size: 3.46667vw;
    }
}

.contact-txt__page-link--faq {
    width: 220px;
}

@media screen and (max-width: 750px) {
    .contact-txt__page-link--faq {
        width: 100%;
    }
}

.contact-txt__page-link:after {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .contact-txt__page-link:after {
        right: 4.66667vw;
        width: 1.6vw;
        height: 1.6vw;
    }
}

.contact-txt__page-link:hover {
    background-color: rgba(0, 104, 183, 0.3);
}

/* ---------------------------------------------
*   recruit
--------------------------------------------- */
.recruit__txt {
    margin: 0 auto;
    width: 960px;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .recruit__txt {
        width: 100%;
        font-size: 3.73333vw;
    }
}

.resruit-anchor-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 88px;
    margin-bottom: 44px;
    border-top: 2px solid #0068b7;
    border-bottom: 2px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .resruit-anchor-link {
        margin-top: 14.4vw;
        margin-bottom: 7.2vw;
    }
}

.resruit-anchor-link__item {
    width: 50%;
    border-right: 1px solid #0068b7;
}

.resruit-anchor-link__item:nth-of-type(2) {
    border-right: 0;
    border-left: 1px solid #0068b7;
}

.resruit-anchor-link__link {
    position: relative;
    display: block;
    padding-top: 15px;
    padding-bottom: 30px;
    width: 100%;
    color: #0068b7;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .resruit-anchor-link__link {
        padding-top: 2vw;
        padding-bottom: 7.33333vw;
        font-size: 3.73333vw;
    }
}

.resruit-anchor-link__link:hover {
    background-color: #0068b7;
    color: #fff;
}

.resruit-anchor-link__link:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.resruit-anchor-link__link:after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg);
}

@media screen and (max-width: 750px) {
    .resruit-anchor-link__link:after {
        bottom: 4vw;
        width: 2.3vw;
        height: 2.3vw;
    }
}

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

@media screen and (max-width: 750px) {
    .occupation {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-top: -6.66667vw;
        padding: 0 4vw;
        padding-top: 6.66667vw;
    }
}

/* ---------------------------------------------
*   recruit-faq
--------------------------------------------- */
.recruit-faq-wrapper {
    margin: 0 auto;
    margin-top: 44px;
    width: 950px;
}

@media screen and (max-width: 750px) {
    .recruit-faq-wrapper {
        margin-top: 7.2vw;
        width: 100%;
    }
}

.recruit-faq__icon {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    font-family: "JosefinSans-Regular";
    line-height: 34px;
}

@media screen and (max-width: 750px) {
    .recruit-faq__icon {
        width: 7.73333vw;
        height: 7.73333vw;
        font-size: 4.53333vw;
        line-height: 7.73333vw;
    }
}

.recruit-faq__icon--q {
    background-color: #0068b7;
    color: #fff;
}

.recruit-faq__icon--a {
    border: 1px solid #0068b7;
    background-color: #fff;
    color: #0068b7;
}

.recruit-faq__ttl {
    margin-left: 15px;
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .recruit-faq__ttl {
        margin-left: 2vw;
        width: 88.49693%;
        font-size: 4.53333vw;
    }
}

.recruit-faq__a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    margin-bottom: 44px;
    padding: 22px 11px;
    background-color: #F0EFED;

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

@media screen and (max-width: 750px) {
    .recruit-faq__a {
        margin-bottom: 7.2vw;
        padding: 4vw 2vw;
    }
}

.recruit-faq__q {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    padding-bottom: 22px;

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

@media screen and (max-width: 750px) {
    .recruit-faq__q {
        padding-bottom: 4vw;
    }
}

.recruit-faq__txt {
    margin-left: 15px;
    width: 879px;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .recruit-faq__txt {
        margin-left: 2vw;
        width: 85.88957%;
        font-size: 3.73333vw;
    }
}

.recruit-faq__txt-link {
    color: #4066BC;
}

.recruit-faq__txt-link:hover {
    text-decoration: underline;
}

/* ---------------------------------------------
*   line
--------------------------------------------- */
.line {
    margin-top: 88px;
    background-color: #f0efed;
}

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

.line__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 44px 0;

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

@media screen and (max-width: 750px) {
    .line__date {
        padding: 7.2vw 0;
    }
}

.line__date-link {
    padding: 0 45px;
    border-right: 2px solid #000;
}

.line__date-link:hover {
    text-decoration: underline;
}

.line__date-link:last-of-type {
    border: none;
}

@media screen and (max-width: 750px) {
    .line__date-link {
        padding: 0vw 5.6vw;
        font-size: 3.46667vw;
    }
}

.line__date-link--br0 {
    border-right: 0;
}

.line__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    padding-bottom: 22px;
    width: 600px;

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

@media screen and (max-width: 750px) {
    .line__category {
        padding: 0 12vw 3.2vw;
        width: 100%;
    }
}

.line__block {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 44px;
    margin-bottom: 22px;
    min-width: 117px;
    border: 1px solid #0068b7;
    border-radius: 5px;
    background-color: #fff;
    color: #0068b7;
    line-height: 23px;
    -webkit-transition: color .3s, background-color .3s;
    transition: color .3s, background-color .3s;
}

@media screen and (max-width: 750px) {
    .line__block:nth-of-type(3n) {
        margin-right: 0;
    }
}

.line__block:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .line__block:nth-of-type(4n) {
        margin-right: 5.46667vw;
    }
}

.line__block:hover {
    background-color: #0068b7;
    color: #fff;
}

@media screen and (max-width: 750px) {
    .line__block {
        margin-right: 5.46667vw;
        margin-bottom: 4vw;
        min-width: auto;
        width: 21.6vw;
        border-radius: 1.33333vw;
        line-height: 5.6vw;
    }
}

.line__link {
    display: block;
}

@media screen and (max-width: 750px) {
    .line__link {
        font-size: 3.46667vw;
    }
}

/* ---------------------------------------------
*   category-year
--------------------------------------------- */
.category-year {
    margin: 0 auto 0;
    padding-bottom: 22px;
    width: 1040px;
    border-bottom: 3px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .category-year {
        margin: 7.2vw auto 0;
        padding-bottom: 4vw;
        width: auto;
    }
}

.category-year__ttl {
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .category-year__ttl {
        font-size: 5.33333vw;
        line-height: 1;
    }
}

/* ---------------------------------------------
*   news
--------------------------------------------- */
.news-container1 {
    padding-top: 100px;
    width: 100%;
    height: 100vh;
}

@media screen and (max-width: 750px) {
    .news-container1 {
        padding-top: 0;
        height: 100vh;
    }
}

.news-wrap {
    position: relative;
    margin: 0 auto 44px;
    max-width: 1200px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .news-wrap {
        margin: 0 auto;
        max-width: 100%;
    }
}

.news-container2 {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .news-container2 {
        overflow: visible;
        padding: 0;
        width: 100%;
    }
}

.news-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

.news-container2 .news-contents {
    margin-right: 24px;
    margin-bottom: 18px;
    width: 242px !important;
    height: 325px !important;
    background-color: #fff !important;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .news-container2 .news-contents {
        margin-right: 2.93333vw;
        margin-bottom: 2.93333vw;
        width: 44.13333vw !important;
        height: auto !important;
    }
}

.news-container2 .news-contents:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .news-container2 .news-contents:nth-of-type(2n) {
        margin-right: 0;
    }
}

.news-container2 .news-contents--last-line {
    margin-bottom: 0;
}

@media screen and (max-width: 750px) {
    .news-container2 .news-contents--last-line {
        margin-bottom: 2.93333vw;
    }
}

@media screen and (max-width: 750px) {
    .news-container2 .news-contents--sp {
        margin-bottom: 0;
    }
}

.news-container2 .news-contents__link:hover .contents-card__img:before {
    border: 5px solid #0068b7;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s;
    transition: .3s;
}

.contents-card {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid #cccccc;
    text-align: left;
}

.contents-card__img {
    position: relative;
    top: -2px;
    left: -2px;
    overflow: hidden;
    margin-bottom: 22px;
    width: 242px;
    height: 166px;
    -webkit-transition: background-color .3s, border .3s;
    transition: background-color .3s, border .3s;
}

.contents-card__img:hover:before {
    border: 5px solid #0068b7;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s;
    transition: .3s;
}

.contents-card__img:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    content: '';
}

@media screen and (max-width: 750px) {
    .contents-card__img {
        margin-bottom: 4vw;
        width: 44.13333vw;
        height: 30.53333vw;
    }
}

@media screen and (max-width: 750px) {
    .contents-card__img img {
        width: 100%;
        height: 100%;
    }
}

.contents-card__date {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 82px;
    height: 24px;
    background-color: #0068b7;
    color: #fff;
    font-size: 14px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

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

@media screen and (max-width: 750px) {
    .contents-card__date {
        width: 20.66667vw;
        height: 6vw;
        font-size: 3.2vw;
    }
}

.ie11 .contents-card__date {
    padding-top: .4em;
}

.contents-card__ttl {
    position: relative;
    overflow: hidden;
    margin: 0 18px 22px 18px;
    padding-bottom: 22px;
    width: 206px;
    height: 42px;
}

@media screen and (max-width: 750px) {
    .contents-card__ttl {
        margin: 0 2.93333vw 4vw 2.93333vw;
        padding-bottom: 5.6vw;
        width: 36.8vw;
        height: 10.13333vw;
        font-weight: normal;
        font-size: 3.73333vw;
    }
}

.contents-card__ttl--short:before {
    content: "";
}

.contents-card__tag {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 22px;
    margin-left: 16px;
    padding: 0 5px;
    border: 1px solid #0068b7;
    border-radius: 5px;
    color: #0068b7;
    line-height: 23px;
}

@media screen and (max-width: 750px) {
    .contents-card__tag {
        margin-top: 4vw;
        margin-bottom: 4vw;
        margin-left: 3.73333vw;
        padding: 0 1.33333vw;
        border-radius: 1.33333vw;
        font-size: 3.46667vw;
        line-height: 5.6vw;
    }
}

.contents-card__tag:before {
    position: absolute;
    top: -22px;
    left: 5px;
    width: 200px;
    height: 2px;
    background-color: #0068b7;
    content: '';
}

@media screen and (max-width: 750px) {
    .contents-card__tag:before {
        top: -4.4vw;
        left: 0;
        width: 36.8vw;
    }
}

.ie11 .contents-card__tag span {
    position: relative;
    top: .2em;
}

.news-container1 .news-contents {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
    .news-container1 .news-contents {
        height: 100vh;
        background-size: cover;
    }
}

.news-container1 .news-contents__link {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
    .news-container1 .news-contents__link {
        height: 0;
        height: 100vh;
    }
}

.news-container1 .news-contents--card {
    margin: 12px;
    width: 242px;
    height: 324px;
    background-color: #fff;
}

/* ---------------------------------------------
*   pager
--------------------------------------------- */
.pager {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .pager {
        margin-top: 7.2vw;
        padding-top: 7.2vw;
    }
}

.pager__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;

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

.pager__list {
    margin-right: 20px;
}

.pager__list:last-of-type {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .pager__list {
        margin-right: 5.06667vw;
    }
}

.pager__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 36px;
    height: 42px;
    border: 2px solid #cccccc;

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

@media screen and (max-width: 750px) {
    .pager__link {
        width: 9.06667vw;
        height: 10.66667vw;
    }
}

.pager__link--current {
    border: 0;
    background-color: #0068b7;
    color: #fff;
    font-size: 16px;
}

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

.pager__link--wide {
    width: 46px;
}

@media screen and (max-width: 750px) {
    .pager__link--wide {
        width: 10.53333vw;
    }
}

.pager__text {
    top: 0;
    font-size: 16px;
}

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

/* ---------------------------------------------
*   lower-ttl
--------------------------------------------- */
.lower-ttl {
    color: #0068b7;
    font-weight: bold;
    font-size: 36px;
}

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

/* ---------------------------------------------
*   date-category
--------------------------------------------- */
.date-category {
    padding: 22px 0;
    border-bottom: 2px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .date-category {
        padding: 4vw 0;
    }
}

.date-category__txt {
    color: #0068b7;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .date-category__txt {
        font-size: 3.46667vw;
    }
}

.date-category__box {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 20px;
    width: 117px;
    border: 1px solid #0068b7;
    border-radius: 5px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .date-category__box {
        margin-left: 4vw;
        width: 21.73333vw;
    }
}

/* ---------------------------------------------
*   news-body
--------------------------------------------- */
.news-body {
    margin: 0 auto 44px;
    width: 952px;
}

@media screen and (max-width: 750px) {
    .news-body {
        margin: 0 auto 14.4vw;
        width: 100%;
    }
}

.news-body__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

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

@media screen and (max-width: 750px) {
    .news-body__group {
        -ms-flex-pack: center;

        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

.news-body__group--reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

@media screen and (max-width: 750px) {
    .news-body__group--reverse {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;

        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
    }
}

.news-body__img {
    max-width: 454px;
}

@media screen and (max-width: 750px) {
    .news-body__img {
        max-width: 100%;
        width: 100%;
    }
}

.news-body__txt {
    width: 454px;
}

@media screen and (max-width: 750px) {
    .news-body__txt {
        margin-left: 0;
        width: 100%;
    }
}

/* ---------------------------------------------
*   news-lead
--------------------------------------------- */
.news-lead {
    margin: 44px auto 0;
}

@media screen and (max-width: 750px) {
    .news-lead {
        margin: 7.2vw auto 0;
    }
}

.news-lead__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-left: 17px;
    min-height: 25px;
    height: 100%;
    border-left: 8px solid #0068b7;
    color: #0068b7;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;

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

@media screen and (max-width: 750px) {
    .news-lead__ttl {
        padding: 0 2.4vw;
        min-height: 100%;
        height: auto;
        border-left: 2.13333vw solid #0068b7;
        font-size: 4.53333vw;
    }
}

/* ---------------------------------------------
*   site-policy
--------------------------------------------- */
.site-policy {
    margin: 0 auto;
    margin-top: 88px;
    margin-bottom: 44px;
    width: 960px;
}

@media screen and (max-width: 750px) {
    .site-policy {
        margin-top: 14.4vw;
        margin-bottom: 7.2vw;
        width: 100%;
    }
}

.site-policy__txt {
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .site-policy__txt {
        font-size: 3.73333vw;
    }
}

.site-policy__txt-link {
    display: inline-block;
    margin-left: 30px;
    color: #4066BC;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .site-policy__txt-link {
        display: block;
        margin-top: 2.66667vw;
        margin-left: 0;
        font-size: 3.73333vw;
    }
}

.site-policy__txt-link:hover {
    text-decoration: underline;
}

.site-policy__txt-link-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-top: 44px;
    text-align: left;

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

@media screen and (max-width: 750px) {
    .site-policy__txt-link-wrapper {
        display: block;
        margin-top: 4vw;
    }
}

.site-policy__txt-img {
    display: inline-block;
    width: 142px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .site-policy__txt-img {
        display: block;
        width: 30.66667vw;
    }
    .site-policy__txt-img img {
        width: 100%;
    }
}

.site-policy__txt-img:hover {
    opacity: 0.5;
}

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

/* ---------------------------------------------
*   policy
--------------------------------------------- */
.policy {
    margin-top: 35px;
}

@media screen and (max-width: 750px) {
    .policy {
        margin: 12vw 0 0;
    }
}

.policy__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 1072px;

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

@media screen and (max-width: 750px) {
    .policy__list {
        -ms-flex-pack: center;
        width: 100%;
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.policy__list-item {
    margin: 32px 16px 0;
}

@media screen and (max-width: 750px) {
    .policy__list-item {
        margin: 0;
    }
}

.policy__list-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    width: 325px;
    height: 160px;
    border: 3px solid #0068b7;
    color: #0068b7;
    font-weight: bold;
    font-size: 20px;
    -webkit-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;

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

@media screen and (max-width: 750px) {
    .policy__list-link {
        width: 43vw;
        height: 43vw;
        font-size: 4.53333vw;
    }
}

.policy__list-link:before {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 0;
    height: 0;
    border-width: 50px 50px 0 0;
    border-style: solid;
    border-color: #0068b7 transparent transparent transparent;
    content: '';
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

@media screen and (max-width: 750px) {
    .policy__list-link:before {
        border-width: 9.33333vw 9.33333vw 0 0;
        border-color: #fff transparent transparent transparent;
        border-top: 9.33333vw solid #0068b7;
    }
}

.policy__list-link:hover {
    background-color: #0068b7;
    color: #fff;
}

.policy__list-link:hover:before {
    border-top: 50px solid #fff;
}

@media screen and (max-width: 750px) {
    .policy__list-link:hover:before {
        border-top: 9.33333vw solid #fff;
    }
}

.policy__list-link:hover .policy__list-number {
    color: #0068b7;
}

.policy__list-link:hover .policy__list-ttl:after {
    background-color: #fff;
}

.policy__list-link:hover .policy__list-comment {
    color: #fff;
}

.policy__list-number {
    position: absolute;
    top: -1px;
    left: 7px;
    color: #fff;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .policy__list-number {
        top: -2%;
        left: 2.5%;
        font-size: 4.53333vw;
    }
}

.policy__list-ttl {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 100%;
    letter-spacing: .05em;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .policy__list-ttl {
        top: 50%;
        left: 50%;
        font-size: 4.53333vw;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.policy__list-ttl:after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 48px;
    height: 2px;
    background-color: #0068b7;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .policy__list-ttl:after {
        bottom: -38%;
    }
}

.policy__list-ttl--over {
    top: 30px;
}

@media screen and (max-width: 750px) {
    .policy__list-ttl--over {
        top: 35%;
        padding: 0 1vw;
    }
}

.policy__list-ttl--over:after {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 48px;
    height: 2px;
    background-color: #0068b7;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .policy__list-ttl--over:after {
        bottom: -13%;
    }
}

.policy__list-comment {
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 100%;
    color: #000;
    font-weight: normal;
    font-size: 14px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .policy__list-comment {
        padding: 0 3.33333vw;
        font-size: 3.2vw;
    }
}

/* ---------------------------------------------
*   notice
--------------------------------------------- */
.notice-container {
    margin: 0 auto;
    width: 960px;
}

@media screen and (max-width: 750px) {
    .notice-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4vw;
        width: 100%;
    }
}

.notice {
    margin-top: 88px;
}

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

.notice__txt {
    margin-bottom: 30px;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .notice__txt {
        margin-bottom: 6vw;
        font-size: 3.73333vw;
    }
}

.notice-table {
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .notice-table {
        margin-bottom: 7.2vw;
    }
}

.notice-table__ttl {
    width: 100px;
    vertical-align: top;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .notice-table__ttl {
        display: block;
        width: 100%;
        font-size: 3.73333vw;
    }
}

.notice-table__txt {
    vertical-align: top;
}

.notice-table__txt-link {
    display: block;
    color: #4066BC;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .notice-table__txt-link {
        font-size: 3.73333vw;
    }
}

.notice-table__txt-link:hover {
    text-decoration: underline;
}

.notice-table__row {
    display: block;
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .notice-table__row {
        margin-bottom: 4vw;
    }
}

/* ---------------------------------------------
*   case-block
--------------------------------------------- */
.case-block {
    margin-top: 44px;
    padding: 44px 0;
    background-color: #f0efed;
}

@media screen and (max-width: 750px) {
    .case-block {
        margin-top: 0;
        padding: 7.2vw 0 0;
        background-color: #fff;
    }
}

.case-block__contents {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .case-block__contents {
        width: 100%;
    }
}

.case-block__wrapper {
    position: relative;
}

.case-block__contents-inner {
    margin-top: 44px;
    padding-top: 1px;
    padding-bottom: 22px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .case-block__contents-inner {
        margin: 3.2vw 20px 0;
        padding-bottom: 0;
        width: calc(100% - 40px);
    }
}

.case-block__label-box {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 44px;
    padding: 44px;
    width: 490px;
    background-color: rgba(0, 104, 183, 0.8);
    color: #fff;
}

@media screen and (max-width: 750px) {
    .case-block__label-box {
        position: static;
        margin-top: 0;
        padding: 4vw 20px;
        max-width: 720px;
        width: 100%;
    }
}

.case-block__label-box-txt {
    font-weight: bold;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .case-block__label-box-txt {
        font-size: 5.33333vw;
    }
}

.case-block__right {
    margin-left: auto;
    width: 720px;
}

@media screen and (max-width: 750px) {
    .case-block__right {
        width: 100%;
        text-align: center;
    }
}

.case-block__right img {
    width: 100%;
}

.case-block__culumn {
    position: relative;
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .case-block__culumn {
        display: block;
        margin-top: 7.2vw;
    }
}

.case-block__culumn:after {
    display: block;
    clear: both;
    content: '';
}

.case-block__inner-color {
    margin: 44px 22px 0;
    padding-bottom: 22px;
    width: 996px;
    background-color: #d3def1;
}

@media screen and (max-width: 750px) {
    .case-block__inner-color {
        margin: 7.2vw 0;
        padding: 0 4vw 4vw;
        width: 100%;
    }
}

.case-block__inner-color--short {
    float: left;
    margin-top: 0;
    width: 596px;
}

@media screen and (max-width: 750px) {
    .case-block__inner-color--short {
        width: 100%;
    }
}

.case-block__contents-right {
    display: inline-block;
    max-width: 378px;
}

@media screen and (max-width: 750px) {
    .case-block__contents-right {
        max-width: auto;
        max-width: initial;
        width: 100%;
        text-align: center;
    }
}

/* ---------------------------------------------
*   case-flame
--------------------------------------------- */
.case-flame {
    padding: 0 22px;
}

@media screen and (max-width: 750px) {
    .case-flame {
        padding: 0;
    }
}

/* ---------------------------------------------
*   case-lead
--------------------------------------------- */
.case-lead {
    padding-top: 22px;
    padding-left: 22px;
}

@media screen and (max-width: 750px) {
    .case-lead {
        padding-top: 4vw;
        padding-left: 0;
    }
}

.case-lead__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-left: 17px;
    height: 25px;
    border-left: 8px solid #0068b7;
    color: #0068b7;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;

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

@media screen and (max-width: 750px) {
    .case-lead__ttl {
        padding: 0 2.4vw;
        height: auto;
        border-left: 2.13333vw solid #0068b7;
        font-size: 4.53333vw;
    }
}

/* ---------------------------------------------
*   case-links
--------------------------------------------- */
.case-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 22px auto 0;
    padding: 22px 3px 11px 45px;
    width: 1040px;
    background-color: #fff;

    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .case-links {
        margin-top: 7.2vw;
        padding: 4vw 2vw 2vw 4vw;
        width: calc(100% - 40px);
        background-color: #f0efed;
    }
}

.case-links__item {
    position: relative;
    margin-right: 30px;
    margin-bottom: 11px;
    padding-left: 10px;
    color: #0068b7;
    font-weight: normal;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .case-links__item {
        margin-right: 4.66667vw;
        margin-bottom: 2vw;
        padding-left: 2.66667vw;
        color: #000;
        font-size: 3.46667vw;
    }
}

.case-links__item:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid #0068b7;
    border-right: 1px solid #0068b7;
    content: "";
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform-origin: top;
    transform-origin: top;
}

@media screen and (max-width: 750px) {
    .case-links__item:before {
        width: 2vw;
        height: 2vw;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
    }
}

/* ---------------------------------------------
*   site-map
--------------------------------------------- */
.site-map {
    margin-top: 88px;
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .site-map {
        margin-top: 14.4vw;
        margin-bottom: 14.4vw;
    }
}

.site-map__list {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 22px;
    padding-left: 44px;
    width: 345px;
}

@media screen and (max-width: 750px) {
    .site-map__list {
        padding-top: 0;
        padding-left: 0;
        width: 100%;
    }
}

.site-map__list--center {
    border-right: 1px solid #DDD4D4;
    border-left: 1px solid #DDD4D4;
}

@media screen and (max-width: 750px) {
    .site-map__list--center {
        border: none;
    }
}

.site-map__sub-list {
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .site-map__sub-list {
        margin-bottom: 4vw;
        margin-left: 4vw;
    }
}

@media screen and (max-width: 750px) {
    .site-map__sub-list--spc {
        margin-left: 4vw;
    }
}

.site-map__sub-list-item {
    margin-left: 22px;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .site-map__sub-list-item {
        margin-left: 0;
    }
}

.site-map__sub-list-link {
    display: inline-block;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 750px) {
    .site-map__sub-list-link {
        font-size: 3.46667vw;
        line-height: 2;
    }
}

.site-map__sub-list-link-border {
    margin-left: 5px;
}

@media screen and (max-width: 750px) {
    .site-map__sub-list-link-border {
        margin-left: 0.66667vw;
    }
}

.site-map__sub-list-link-border:hover {
    border-bottom: 1px solid #252334;
}

.site-map__sub-list-link-file {
    position: relative;
}

.site-map__sub-list-link-file:after {
    position: absolute;
    top: 0;
    right: -23px;
    width: 14px;
    height: 14px;
    background: url(/assets/img/icon_link.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .site-map__sub-list-link-file:after {
        top: 50%;
        right: -5.11vw;
        width: 3.08vw;
        height: 3.08vw;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.site-map__list-link {
    display: block;
    margin-bottom: 22px;
    color: #0068b7;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .site-map__list-link {
        margin-bottom: 4vw;
        font-size: 4.53333vw;
    }
}

.site-map__list-link-border {
    padding-bottom: 2px;
}

@media screen and (max-width: 750px) {
    .site-map__list-link-border {
        padding-bottom: 0;
    }
}

.site-map__list-link-border:hover {
    border-bottom: 2px solid #252334;
}

.site-map__lower-list {
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .site-map__lower-list {
        margin-bottom: 4vw;
    }
}

.site-map__lower-list-link {
    position: relative;
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 2;
}

@media screen and (max-width: 750px) {
    .site-map__lower-list-link {
        font-size: 3.46667vw;
    }
}

.site-map__lower-list-link--external::before {
    display: none;
}

.site-map__lower-list-link--external span:after {
    content: '';
    position: absolute;
    top: 0;
    right: -23px;
    width: 14px;
    height: 14px;
    background: url(/assets/img/icon_link.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 750px) {
    .site-map__lower-list-link--external span:after {
        top: 1px;
        right: -5.11vw;
        width: 3.08vw;
        height: 3.08vw;
    }
}

.site-map__lower-list-link:before {
    position: absolute;
    top: 0.5em;
    width: 14px;
    height: 14px;
    background: url(/assets/img/icon_arrow_link.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .site-map__lower-list-link:before {
        top: 0.6em;
        width: 2.66667vw;
        height: 2.66667vw;
    }
}

.site-map__lower-list-link-inner {
    position: relative;
    left: 20px;
}

@media screen and (max-width: 750px) {
    .site-map__lower-list-link-inner {
        left: 1em;
    }
}

.site-map__lower-list-link-inner:hover {
    border-bottom: 1px solid #252334;
}

.site-map__lower-list-link-inner--hvnone:hover {
    border-bottom: none;
}

.site-map-container {
    margin: 0 auto;
    width: 1035px;
}

@media screen and (max-width: 750px) {
    .site-map-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4vw;
        width: 100%;
    }
}

.site-map-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 750px) {
    .site-map-wrapper {
        display: block;
    }
}

/* ---------------------------------------------
*   profile
--------------------------------------------- */
.profile-contents {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .profile-contents {
        margin-top: 7.2vw;
        margin-left: 0;
        width: 100%;
    }
}

.profile-container {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .profile-container {
        width: 100%;
    }
}

.profile--1 {
    margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
    .profile--1 {
        margin-bottom: 7.2vw;
    }
}

.profile__company {
    display: none;
}

@media screen and (max-width: 750px) {
    .profile__company {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 4vw;
        border-top: 0.26667vw solid #0068b7;
        border-bottom: 0.26667vw solid #0068b7;
    }
}

@media screen and (max-width: 750px) {
    .profile__company-item {
        padding: 4vw 0;
        width: 50%;
        color: #0068b7;
        text-align: center;
        font-weight: bold;
        font-size: 3.73333vw;
    }
    .profile__company-item:first-child {
        border-right: 0.26667vw solid #0068b7;
    }
}

.profile-table {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .profile-table {
        width: 100%;
    }
}

.profile-table__company {
    width: 50%;
    padding: 10px 0;
    border-bottom: 1px solid #D9D0D0;
    background-color: #ECEBE9;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .profile-table__company {
        padding: 2.66667vw 0;
        font-size: 3.73333vw;
    }
}

.profile-table__company:first-of-type {
    border-right: 1px solid #D9D0D0;
}

.profile-table__date {
    padding: 10px 0;
    width: 120px;
    background-color: #ECEBE9;
    vertical-align: top;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .profile-table__date {
        padding: 2.66667vw 0;
        width: 50%;
        font-size: 3.73333vw;
    }
}

@media screen and (max-width: 750px) {
    .profile-table__date--block {
        display: block;
        width: 100%;
    }
}

.profile-table__txt {
    padding: 22px;
    width: 400px;
    border-left: 1px solid #D9D0D0;
    vertical-align: top;
}

@media screen and (max-width: 750px) {
    .profile-table__txt {
        padding: 4vw;
        width: 50%;
        font-size: 3.73333vw;
    }
}

@media screen and (max-width: 750px) {
    .profile-table__txt--block {
        display: block;
        width: 100%;
    }
}

.profile-table__txt:first-of-type {
    border-left: none;
}

.profile-table__row {
    width: 1040px;
    border-bottom: 1px solid #D9D0D0;
}

@media screen and (max-width: 750px) {
    .profile-table__row {
        width: 100%;
        border: none;
    }
}

.profile-table__row:last-of-type {
    border-bottom: none;
}

.profile-table__trigger:hover {
    text-decoration: underline;
}

.profile-table__border {
    border-right: .3vw solid #D9D0D0;
}

.profile-table__inner {
    display: flex;
    align-items: flex-start;
}

.profile-table__month {
    flex-shrink: 0;
    width: 2.5em;
}

.profile-contents__add {
    text-align: left;
}

@media screen and (max-width: 750px) {
    .profile-contents__add {
        padding: 4vw;
        font-size: 3.73333vw;
    }
}

.profile-contents__txt {
    margin-top: 1em;
    text-indent: -6.5em;
    padding-left: 6.5em;
}

/* ---------------------------------------------
*   contents-square
--------------------------------------------- */
.contents-square {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 88px;
}

@media screen and (max-width: 750px) {
    .contents-square {
        display: block;
        margin-top: 14.4vw;
    }
}

.contents-square__box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 33px;
    padding: 22px 22px 44px;
    width: 325px;
    background-color: #0068b7;
    color: #fff;
}

@media screen and (max-width: 750px) {
    .contents-square__box {
        margin-bottom: 4vw;
        padding: 4vw 7.2vw 7.2vw;
        width: 100%;
    }
}

.contents-square__box:last-of-type {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .contents-square__box:last-of-type {
        margin-bottom: 0;
    }
}

.contents-square__box-top {
    padding-bottom: 22px;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 750px) {
    .contents-square__box-top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        padding-bottom: 4vw;

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

@media screen and (max-width: 750px) {
    .contents-square__img {
        width: 13.33333vw;
    }
}

.contents-square__ttl {
    padding-top: 22px;
    font-size: 28px;
}

@media screen and (max-width: 750px) {
    .contents-square__ttl {
        margin-left: 5.6vw;
        padding-top: 0;
        font-size: 5.33333vw;
        line-height: 1;
    }
}

.contents-square__ttl-txt {
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .contents-square__ttl-txt {
        display: inline;
        vertical-align: middle;
    }
}

.contents-square__box-bottom {
    margin-top: 22px;
}

@media screen and (max-width: 750px) {
    .contents-square__box-bottom {
        margin-top: 4vw;
    }
}

.contents-square__bottom-txt {
    letter-spacing: -.02em;
    font-weight: normal;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .contents-square__bottom-txt {
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   maintenance-block
--------------------------------------------- */
.maintenance-block {
    padding-top: 44px;
    background-color: #ebeae8;
}

@media screen and (max-width: 750px) {
    .maintenance-block {
        padding-top: 7.2vw;
    }
}

.maintenance-block--low {
    padding-bottom: 44px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .maintenance-block--low {
        padding-bottom: 0;
    }
}

.maintenance-block__inner {
    margin: 0 auto;
    width: 1040px;
}

@media screen and (max-width: 750px) {
    .maintenance-block__inner {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}

.maintenance-block__ttl {
    padding-bottom: 22px;
    border-bottom: 2px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .maintenance-block__ttl {
        padding-bottom: 4vw;
    }
}

.maintenance-block__ttl-txt {
    color: #0068b7;
    font-weight: bold;
    font-size: 36px;
}

@media screen and (max-width: 750px) {
    .maintenance-block__ttl-txt {
        font-size: 5.86667vw;
    }
}

.maintenance-block__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 44px 44px 0;
    padding-bottom: 44px;

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

@media screen and (max-width: 750px) {
    .maintenance-block__wrap {
        display: block;
        margin: 7.2vw 0;
        padding-bottom: 0;
    }
}

.maintenance-block__area {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 44px;
    width: 440px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .maintenance-block__area {
        margin-bottom: 4vw;
        padding: 7.2vw;
        width: 100%;
    }
}

.maintenance-block__area-ttl {
    margin: 0;
    color: #0068b7;
    text-align: center;
    font-weight: bold;
    font-size: 28px;
}

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

.maintenance-block__img {
    margin-top: 25px;
    margin-bottom: 44px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .maintenance-block__img {
        margin: 4vw auto 7.2vw;
        width: 41.33333vw;
    }
}

.maintenance-block__low-txt {
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .maintenance-block__low-txt {
        font-size: 3.73333vw;
    }
}

.maintenance-block__note {
    padding: 22px 0;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .maintenance-block__note {
        margin-top: 3.2vw;
        padding: 4vw 0;
        text-align: left;
    }
}

.maintenance-block__note-txt {
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    .maintenance-block__note-txt {
        width: calc(100% - 40px);
        margin: 0 20px;
        font-size: 3.73333vw;
    }
}

.maintenance-block__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 22px 0;

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

@media screen and (max-width: 750px) {
    .maintenance-block__contact {
        display: block;
        padding: 4vw 0;
        text-align: center;
    }
}

.maintenance-block__contact-txt {
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    .maintenance-block__contact-txt {
        padding-bottom: 4vw;
        font-size: 3.73333vw;
    }
}

.maintenance-block__contact-btn {
    margin-left: 56px;
    width: 137px;
    height: 30px;
    border: 2px solid #0068b7;
    background: #0068b7 url(/assets/img/mail_icon_white.png) 10px 50% no-repeat;
    background-size: 23px auto;
    color: #fff;
    -webkit-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
    -webkit-transition-property: color,background-color,background-image;
    transition-property: color,background-color,background-image;
}

@media screen and (max-width: 750px) {
    .maintenance-block__contact-btn {
        margin: 0 auto;
        width: 46.13333vw;
        height: 12.53333vw;
        background: #0068b7 url(/assets/img/mail_icon_white_sp.png) 4vw 50% no-repeat;
        background-size: 8vw auto;
    }
}

@media screen and (min-width: 751px) {
    .maintenance-block__contact-btn:hover {
        background: #fff url(/assets/img/mail_icon_red.png) 10px 50% no-repeat;
        color: #0068b7;
    }
}

.maintenance-block__contact-btn-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin: 0 auto;
    padding-left: 40px;
    width: 100%;
    height: 100%;
    font-weight: bold;

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

@media screen and (max-width: 750px) {
    .maintenance-block__contact-btn-link {
        -ms-flex-pack: center;
        padding-left: 6vw;
        font-size: 3.46667vw;

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

.ie11 .maintenance-block__contact-btn-link span {
    position: relative;
    top: 0.2em;
}

/* ---------------------------------------------
*   maintenance-low-ttl
--------------------------------------------- */
.maintenance-low-ttl {
    margin: 44px;
}

@media screen and (max-width: 750px) {
    .maintenance-low-ttl {
        margin: 7.2vw 0;
    }
}

.maintenance-low-ttl__txt {
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .maintenance-low-ttl__txt {
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   maintenance-map
--------------------------------------------- */
.maintenance-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 0 44px;

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

@media screen and (max-width: 750px) {
    .maintenance-map {
        -ms-flex-pack: center;
        margin: 0;

        -webkit-box-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

.maintenance-map__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 44px 0 44px 44px;
    width: 342px;
    height: 426px;
    border: 1px solid #c7c7c7;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 750px) {
    .maintenance-map__list {
        margin-top: 7.2vw;
        padding: 7.2vw 0 7.2vw 7.2vw;
        width: 100%;
        height: 70.93333vw;
    }
}

.maintenance-map__list-txt {
    padding-right: 44px;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .maintenance-map__list-txt {
        padding-right: 0;
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   contact
--------------------------------------------- */
form {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.contact__lead-txt {
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact__lead-txt {
        font-size: 3.73333vw;
    }
}

.contact__lead-txt--center {
    text-align: center;
}

@media screen and (max-width: 750px) {
    .contact__lead-txt--center {
        text-align: left;
    }
}

.contact__lead-txt--bold {
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .contact__lead-txt--bold {
        font-size: 4.53333vw;
    }
}

.contact__lead-txt-red {
    color: #0068b7;
}

.contact__lead {
    margin: 44px;
}

@media screen and (max-width: 750px) {
    .contact__lead {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 7.2vw 4vw;
    }
}

.contact__lead--thanks {
    margin-top: 88px;
    margin-bottom: 88px;
}

@media screen and (max-width: 750px) {
    .contact__lead--thanks {
        margin: 14.4vw 4vw;
    }
}

.contact__lead--privacy {
    margin: 44px auto;
    width: 930px;
}

@media screen and (max-width: 750px) {
    .contact__lead--privacy {
        margin: 7.2vw 4vw;
        width: calc(100% - 8vw);
    }
}

.contact__txt {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 22px;
    width: 685px;
    height: 52px;
    background-color: #F0EFED;
    color: #252334;
    text-align: left;
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .contact__txt {
        padding: 0 4vw;
        width: 100%;
        height: 13.33333vw;
        border: 0.26667vw solid #ccc;
        background-color: #fff;
        font-size: 3.73333vw;
    }
}

.contact__txt--small {
    width: 525px;
}

@media screen and (max-width: 750px) {
    .contact__txt--small {
        width: 100%;
        height: 13.33333vw;
    }
}

.contact__txt--zip {
    width: 175px;
}

@media screen and (max-width: 750px) {
    .contact__txt--zip {
        width: 50%;
    }
}

.contact__txt--tel {
    width: 175px;
}

@media screen and (max-width: 750px) {
    .contact__txt--tel {
        width: 100%;
    }
}

.contact__txt--error {
    border: 1px solid #E60012;
    background: rgba(0, 104, 183, 0.1);
}

@media screen and (max-width: 750px) {
    .contact__txt--error {
        border: 0.13333vw solid #E60012;
    }
}

@media screen and (max-width: 750px) {
    .contact__form-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 4vw;
        width: 100%;
    }
}

.contact__table {
    margin-bottom: 44px;
    width: 100%;
}

@media screen and (max-width: 750px) {
    .contact__table {
        margin-bottom: 3.2vw;
    }
}

.contact__table-bottom-txt {
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact__table-bottom-txt {
        margin-bottom: 7.2vw;
        text-align: left;
        font-size: 3.73333vw;

        -webkit-font-feature-settings: "palt" 1;
        font-feature-settings: "palt" 1;
    }
}

.contact__table-row {
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 750px) {
    .contact__table-row {
        border-bottom: none;
    }
}

.contact__table-row--none {
    border-bottom: none;
}

.contact__table-left {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 36px;
    padding-left: 22px;
    width: 270px;
    border-right: 1px solid #ccc;
    background-color: #F0EFED;
    vertical-align: top;
}

@media screen and (max-width: 750px) {
    .contact__table-left {
        display: block;
        padding: 1.33333vw 0;
        width: 100%;
        border-right: none;
        text-align: center;
    }
}

.contact__table-left--top {
    padding-top: 36px;
    vertical-align: top;
}

@media screen and (max-width: 750px) {
    .contact__table-left--top {
        padding-top: 1.33333vw;
    }
}

.contact__table-left--confirm {
    padding-top: 38px;
    vertical-align: top;
}

@media screen and (max-width: 750px) {
    .contact__table-left--confirm {
        display: block;
        padding-top: 1.33333vw;
    }
}

.contact__table-right {
    padding: 22px 44px;
}

@media screen and (max-width: 750px) {
    .contact__table-right {
        display: block;
        padding: 4vw;
        width: 100%;
    }
}

.contact__table-right--none {
    padding-bottom: 0;
}

@media screen and (max-width: 750px) {
    .contact__table-right--none {
        padding-bottom: 4vw;
    }
}

.contact__table-right-txt {
    margin-left: 15px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact__table-right-txt {
        display: block;
        margin-bottom: 2vw;
        margin-left: 0;
        font-size: 3.73333vw;

        -webkit-font-feature-settings: "palt" 1;
        font-feature-settings: "palt" 1;
    }
}

.contact__table-confirm-txt {
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact__table-confirm-txt {
        font-size: 3.73333vw;
    }
}

.contact__table-confirm-txt--mgt {
    margin-top: 22px;
}

@media screen and (max-width: 750px) {
    .contact__table-confirm-txt--mgt {
        margin-top: 4vw;
    }
}

.contact__table-left-txt {
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact__table-left-txt {
        font-size: 3.73333vw;
    }
}

.contact__table-left-txt--mgt {
    padding-top: 65px;
}

@media screen and (max-width: 750px) {
    .contact__table-left-txt--mgt {
        padding-top: 0;
    }
}

.contact__select {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 22px;
    width: 455px;
    height: 52px;
    background-color: #F0EFED;
    color: #252334;
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

@media screen and (max-width: 750px) {
    .contact__select {
        padding: 0 4vw;
        width: 100%;
        height: 13.33333vw;
        border: 0.26667vw solid #ccc;
        background-color: #fff;
        font-size: 3.73333vw;
    }
}

.contact__select--state {
    width: 285px;
}

@media screen and (max-width: 750px) {
    .contact__select--state {
        width: 100%;
        height: 13.33333vw;
    }
}

.contact__select--error {
    border: 1px solid #E60012;
    background: rgba(0, 104, 183, 0.1);
}

@media screen and (max-width: 750px) {
    .contact__select--error {
        border: 0.13333vw solid #E60012;
    }
}

.contact__select-wrapper {
    position: relative;
}

.contact__select-wrapper:after {
    position: absolute;
    top: 50%;
    top: 50%;
    right: 15px;
    right: 20px;
    width: 7px;
    width: 7px;
    height: 7px;
    height: 7px;
    border-top: 2px solid #000;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    content: '';
    -webkit-transform: translateY(-60%) rotate(135deg);
    transform: translateY(-60%) rotate(135deg);
    transform: translateY(-60%) rotate(135deg);
}

@media screen and (max-width: 750px) {
    .contact__select-wrapper:after {
        right: 4vw;
        width: 2vw;
        height: 2vw;
        border-top: 0.4vw solid #000;
        border-right: 0.4vw solid #000;
        -webkit-transform: translateY(-90%) rotate(135deg);
        transform: translateY(-90%) rotate(135deg);
    }
}

@media screen and (max-width: 750px) {
    .contact__select-wrapper:after {
        right: 4vw;
        width: 2vw;
        height: 2vw;
        border-top: 0.4vw solid #000;
        border-right: 0.4vw solid #000;
        -webkit-transform: translateY(-90%) rotate(135deg);
        transform: translateY(-90%) rotate(135deg);
    }
}

.contact__address-btn {
    margin-left: 22px;
    width: 100px;
    height: 50px;
    background-color: rgba(0, 104, 183, 0.1);
    color: #0068b7;
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 750px) {
    .contact__address-btn {
        margin-left: 7.2vw;
        width: 20.66667vw;
        height: 13.33333vw;
        font-size: 3.73333vw;
    }
}

.contact__address-btn:hover {
    background-color: rgba(0, 104, 183, 0.3);
}

.contact__table-txt-area {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 10px;
    width: 680px;
    height: 190px;
    background-color: #F0EFED;
    font-size: 16px;
    resize: both;
}

@media screen and (max-width: 750px) {
    .contact__table-txt-area {
        width: 100%;
        height: 52vw;
        border: 0.26667vw solid #ccc;
        background-color: #fff;
        font-size: 3.73333vw;
    }
}

.contact__table-txt-area--error {
    border: 1px solid #E60012;
    background: rgba(0, 104, 183, 0.1);
}

@media screen and (max-width: 750px) {
    .contact__table-txt-area--error {
        border: 0.13333vw solid #E60012;
    }
}

.contact__table-right-txt-note {
    margin-top: 5px;
    margin-left: 15px;
}

@media screen and (max-width: 750px) {
    .contact__table-right-txt-note {
        margin-top: 2vw;
        margin-left: 0;
        font-size: 3.73333vw;
    }
}

.contact__btn-wrapper {
    margin: 44px 0;
}

@media screen and (max-width: 750px) {
    .contact__btn-wrapper {
        margin: 0;
    }
}

.contact__btn {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    width: 146px;
    height: 54px;
    border: 2px solid #0068b7;
    background-color: #0068b7;
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-weight: normal;
    font-size: 16px;
    font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic bold", "游ゴシック bold", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    cursor: pointer;
    -webkit-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s;
}

@media screen and (max-width: 750px) {
    .contact__btn {
        margin-bottom: 4vw;
        padding-left: 3.33333vw;
        width: 49.33333vw;
        height: 13.33333vw;
        border: none;
        font-size: 3.73333vw;
    }
}

.contact__btn:after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
    .contact__btn:after {
        right: 4vw;
        width: 2vw;
        height: 2vw;
        border-top: 0.4vw solid #fff;
        border-right: 0.4vw solid #fff;
    }
}

.contact__btn:hover {
    background-color: #fff;
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .contact__btn:hover {
        background-color: #0068b7;
        color: #fff;
    }
}

.contact__btn:hover:after {
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .contact__btn:hover:after {
        border-top: 0.4vw solid #fff;
        border-right: 0.4vw solid #fff;
    }
}

.contact__btn--gray {
    margin-right: 88px;
    border: 2px solid #727171;
    background-color: #727171;
}

@media screen and (max-width: 750px) {
    .contact__btn--gray {
        margin-right: 0;
        margin-bottom: 0;
    }
}

.contact__btn--gray:hover {
    background-color: #fff;
    color: #727171;
}

@media screen and (max-width: 750px) {
    .contact__btn--gray:hover {
        background-color: #727171;
        color: #fff;
    }
}

.contact__btn--gray:hover:after {
    border-top: 2px solid #727171;
    border-right: 2px solid #727171;
}

@media screen and (max-width: 750px) {
    .contact__btn--gray:hover:after {
        border-top: 0.4vw solid #fff;
        border-right: 0.4vw solid #fff;
    }
}

.contact__btn--gray-one {
    margin-right: 0;
    margin-bottom: 88px;
}

@media screen and (max-width: 750px) {
    .contact__btn--gray-one {
        margin-bottom: 0;
    }
}

.contact__table-confirm {
    padding: 38px 0 38px 44px;
}

@media screen and (max-width: 750px) {
    .contact__table-confirm {
        display: block;
        padding: 4vw;
    }
}

.contact__table-confirm--none {
    padding-bottom: 0;
}

@media screen and (max-width: 750px) {
    .contact__table-confirm--none {
        padding-bottom: 4vw;
    }
}

.contact__error-txt {
    display: none;
    padding-top: 10px;
    padding-left: 22px;
    color: #0068b7;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .contact__error-txt {
        padding-top: 0.66667vw;
        padding-left: 0;
        font-size: 3.73333vw;
    }
}

.contact__error-txt--top {
    padding-top: 22px;
}

@media screen and (max-width: 750px) {
    .contact__error-txt--top {
        padding-top: 4vw;
    }
}

.contact-link {
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .contact-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        -ms-flex-align: center;
        margin-top: 14.4vw;
        padding: 7.2vw 4vw;
        background-color: #0068b7;

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

.contact-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 88px;
}

.contact-link__list--first {
    margin-top: 40px;
}

.contact-link__list-item {
    position: relative;
    display: block;
    width: 260px;
    height: 52px;
    background-color: #F0EFED;
    text-align: center;
    font-size: 16px;
    line-height: 55px;
}

.contact-link__list-item:before {
    position: absolute;
    top: 0;
    left: -1px;
    z-index: 100;
    width: 3px;
    height: 32px;
    background: #fff;
    content: "";
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.contact-link__list-item:after {
    position: absolute;
    bottom: 0;
    left: -1px;
    z-index: 100;
    width: 3px;
    height: 32px;
    background: #fff;
    content: "";
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}

.contact-link__list-item:first-of-type:before {
    content: none;
}

.contact-link__list-item:first-of-type:after {
    content: none;
}

.contact-link__list-item-current {
    position: relative;
    display: block;
    height: 100%;
    background-color: #0068b7;
    color: #fff;
}

.contact-link__list-item-current:after {
    position: absolute;
    top: 50%;
    left: 100%;
    z-index: 100;
    margin-top: -26px;
    width: 0;
    height: 0;
    border-width: 26px 0 26px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #0068b7;
    content: "";
}

.contact-link__list-item-current--gray {
    background-color: #F0EFED;
    color: #252334;
}

.contact-link__list-item-current--gray:after {
    border-color: transparent transparent transparent #F0EFED;
}

.contact-link__list-item-current--none:after {
    content: none;
}

@media screen and (max-width: 750px) {
    .contact-link__txt {
        color: #fff;
        text-align: left;
        font-size: 3.73333vw;
    }
}

.contact-link__icon-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

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

@media screen and (max-width: 750px) {
    .contact-link__icon-list-item {
        margin-right: 2.93333vw;
    }
}

.contact-link__icon {
    display: block;
    width: 2.53333vw;
    height: 2.53333vw;
    border: 0.26667vw solid #fff;
}

.contact-link__icon--white {
    background-color: #fff;
}

/* ---------------------------------------------
*   privacy-box
--------------------------------------------- */
.privacy-box {
    overflow-y: scroll;
    margin: 0 auto;
    width: 950px;
    height: 565px;
    border: 2px solid #ccc;
}

@media screen and (max-width: 750px) {
    .privacy-box {
        margin-bottom: 7.2vw;
        width: 100%;
        height: 115vw;
    }
}

.privacy-box__ttl {
    margin: 44px 0 22px;
    text-align: left;
    font-weight: bold;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .privacy-box__ttl {
        font-size: 4.53333vw;
    }
}

.privacy-box__ttl:first-of-type {
    margin-top: 0;
}

.privacy-box__txt {
    text-align: left;
    font-weight: normal;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .privacy-box__txt {
        font-size: 3.73333vw;
    }
}

.privacy-box__txt-link {
    color: #4066BC;
}

.privacy-box__txt-link:hover {
    text-decoration: underline;
}

.privacy-box-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 44px;
}

@media screen and (max-width: 750px) {
    .privacy-box-container {
        padding: 4vw;
    }
}

.privacy-box-wrapper {
    padding: 0 4vw;
}

/* ---------------------------------------------
*   search-article
--------------------------------------------- */
.search-article {
    margin: 0 auto 44px;
    padding-bottom: 44px;
    width: 1040px;
    border-bottom: 1px solid #0068b7;
    text-align: left;
}

@media screen and (max-width: 750px) {
    .search-article {
        margin-bottom: 7.2vw;
        padding: 0 4vw 7.2vw;
        width: 100%;
    }
}

.search-article:last-of-type {
    border-bottom: none;
}

.search-article__ttl {
    margin-bottom: 22px;
    padding-left: 24px;
    border-left: 8px solid #0068b7;
    font-size: 20px;
}

@media screen and (max-width: 750px) {
    .search-article__ttl {
        margin-bottom: 4vw;
        padding-left: 4.66667vw;
        border-left: 2.13333vw solid #0068b7;
        font-size: 4.53333vw;
    }
}

.search-article__link {
    color: #4066bc;
}

.search-article__link:hover {
    text-decoration: underline;
}

.search-article__link--url {
    word-break: break-all;
    font-size: 14px;
}

@media screen and (max-width: 750px) {
    .search-article__link--url {
        font-size: 3.46667vw;
    }
}

.search-article__contents {
    margin-bottom: 22px;
    font-size: 16px;
}

@media screen and (max-width: 750px) {
    .search-article__contents {
        margin-bottom: 4vw;
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   card-container
--------------------------------------------- */
.card-container {
    margin-top: 88px;
    margin-bottom: 24px;
}

@media screen and (max-width: 750px) {
    .card-container {
        margin-top: 14.4vw;
    }
}

.card-container__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


@media screen and (max-width: 750px) {
    .card-container__list {
        display: block;
    }
}

.card-container__list.card-container__list--left-col1 {
    width: 334px;
}
@media screen and (max-width: 750px) {
    .card-container__list.card-container__list--left-col1 {
        width: 100%;
    }
}

.card-container__list.card-container__list--left-col2 {
    width: 687px;
}

@media screen and (max-width: 750px) {
    .card-container__list.card-container__list--left-col2 {
        width: 100%;
    }
}

.card-container__right-high {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

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

@media screen and (max-width: 750px) {
    .card-container__right-high {
        display: block;
    }
}


.card-container__item {
    margin-bottom: 20px;
}

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

.card-container__img {
    width: 334px;
}

@media screen and (max-width: 750px) {
    .card-container__img {
        width: 100%;
    }
}

.card-container__img--01 {
    height: 364px;
}

@media screen and (max-width: 750px) {
    .card-container__img--01 {
        height: auto;
    }
}

.card-container__img--02 {
    height: 374px;
}

@media screen and (max-width: 750px) {
    .card-container__img--02 {
        height: auto;
    }
}

.card-container__img--03 {
    height: 384px;
}

@media screen and (max-width: 750px) {
    .card-container__img--03 {
        height: auto;
    }
}

.card-container__img--04 {
    height: 425px;
}

@media screen and (max-width: 750px) {
    .card-container__img--04 {
        height: auto;
    }
}

.card-container__img--05 {
    height: 767px;
}

@media screen and (max-width: 750px) {
    .card-container__img--05 {
        height: auto;
    }
}

/* ---------------------------------------------
*   card-list-content
--------------------------------------------- */
.card-list-content {
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
}
.card-list-content > div {
    width: 320px;
}
.card-list-content div dt {
    min-height: 380px;
}
.card-list-content div dt p {
    font-size: 16px;
    margin-top: 35px;
    line-height: 1.6;
    text-align: left;
}
.card-list-content div dd {
    text-align: left;
    margin-top: 20px;
}
.card-list-content div dd p {
    font-size: 16px;
    font-weight: bold;
}
.card-list-content div dd ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}
.card-list-content div dd ul li::before {
    content: '・';
    position: relative;
    top: 0;
    left: 0;
}
.card-list-content div dd ul li:nth-of-type(n + 2) {
    margin-top: 2px;
}
.card-list-content__figure {
    position: relative;
}
.card-list-content__figure img {
    width: 320px;
    height: 200px;
    object-fit: cover;
}
.card-list-content__figure h4 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate3d(-50%, -50%, 0);
    background-color: rgba(0, 104, 183, .7);
    z-index: 1;
}
.card-list-content__figure h4 span {
    color: #fff;
    font-size: 16px;
}
@media screen and (max-width: 750px) {
    .card-list-content {
        margin-top: 13.3333333vw;
        gap: 21.5384615vw 0;
    }
    .card-list-content > div {
        width: 100%;
    }
    .card-list-content div dt {
        min-height: 0;
    }
    .card-list-content div dt p {
        font-size: 3.73333333vw;
        margin-top: 8.97435897vw;
    }
    .card-list-content div dd {
        margin-top: 6.41025641vw;
    }
    .card-list-content div dd p {
        font-size: 3.73333333vw;
    }
    .card-list-content div dd ul li {
        font-size: 3.73333333vw;
    }
    .card-list-content div dd ul li:nth-of-type(n + 2) {
        margin-top: 0;
    }
    .card-list-content__figure img {
        width: 100%;
        height: 51.2820513vw;
    }
    .card-list-content__figure h4 span {
        font-size: 4.1025641vw;
    }
}

/* ---------------------------------------------
*   list-image-content
--------------------------------------------- */
.list-image-content {
    text-align: left;
    margin-top: 93px;
    padding-bottom: 10px;
}
.list-image-content li {
    display: flex;
    flex-wrap: wrap;
}
.list-image-content li:nth-of-type(n + 2) {
    margin-top: 89px;
}
.list-image-content__detail {
    width: 810px;
    box-sizing: border-box;
}
.list-image-content__detail h4 {
    color: #0068B7;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
}
.list-image-content__detail h4 span {
    display: block;
    padding-left: 10px;
    border-left: 13px solid #0068B7;
}
.list-image-content__detail-caption {
    font-size: 20px;
    font-weight: bold;
    margin-top: 22px;
}
.list-image-content__detail-text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 25px;
}
.list-image-content__figure {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: calc(100% - 810px);
    box-sizing: border-box;
}
.list-image-content__figure--1 {
    padding-right: 16px;
}
.list-image-content__figure--4 {
    padding-top: 55px;
}

@media screen and (max-width: 750px) {
    .list-image-content {
        margin-top: 12.8205128vw;
        padding-bottom: 15.1282051vw;
    }
    .list-image-content li:nth-of-type(n + 2) {
        margin-top: 21.025641vw;
    }
    .list-image-content__detail {
        width: 100%;
    }
    .list-image-content__detail h4 {
        font-size: 5.12820513vw;
        line-height: 1;
    }
    .list-image-content__detail h4 span {
        border-left-width: 1.79487179vw;
        padding-left: 2.05128205vw;
    }
    .list-image-content__detail-caption {
        line-height: 1.6;
        font-size: 4.61538462vw;
        margin-top: 7.94871795vw;
    }
    .list-image-content__detail-caption--large {
        font-size: 5.12820513vw;
        margin-top: 10vw;
    }
    .list-image-content__detail-text {
        font-size: 3.73333333vw;
        margin-top: 5.38461538vw;
    }
    .list-image-content__figure {
        display: none;
    }
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/*  pick up
--------------------------------------------- */
.pickup-body {
    margin: 44px auto;
    width: 1040px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .pickup-body {
        margin: 3.66667vw auto;
        width: 86.66667vw;
    }
}

@media screen and (max-width: 750px) {
    .pickup-body {
        margin: 7.2vw auto 0;
        width: 100%;
    }
}

.pickup-body__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 0 45px;

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

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .pickup-body__list {
        padding: 3.75vw auto;
    }
}

@media screen and (max-width: 750px) {
    .pickup-body__list {
        padding: 0;
    }
}

.pickup-body__list-item {
    position: relative;
    overflow: hidden;
    padding-top: 28%;
    width: 249px;
    height: 0;
    -webkit-transition: background-image .3s;
    transition: background-image .3s;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .pickup-body__list-item {
        padding-top: 20.75vw;
        width: 20.75vw;
    }
}

@media screen and (max-width: 750px) {
    .pickup-body__list-item {
        padding-top: 38.53333vw;
        width: 38.4vw;
    }
}

.pickup-body__list-item--1 {
    background: url(/assets/img/top_pickup1.png) 0 0 no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 750px) {
    .pickup-body__list-item--1 {
        margin-right: 4.53333vw;
        width: 38.4vw;
        background: url(/assets/img/top_pickup1_sp.png) 0 0 no-repeat;
        background-size: 100%;
    }
}

@media screen and (min-width: 751px) {
    .pickup-body__list-item--1:hover {
        background: url(/assets/img/top_pickup1_hv.png) 0 0 no-repeat;
        background-size: 100%;
    }
}

.pickup-body__list-item--3 {
    margin-left: 100px;
    background: url(/assets/img/top_pickup3.png) 0 0 no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 750px) {
    .pickup-body__list-item--3 {
        margin-left: 4.53333vw;
        width: 38.4vw;
        background: url(/assets/img/top_pickup3_sp.png) 0 0 no-repeat;
        background-size: 100%;
    }
}

@media screen and (min-width: 751px) {
    .pickup-body__list-item--3:hover {
        background: url(/assets/img/top_pickup3_hv.png) 0 0 no-repeat;
        background-size: 100%;
    }
}

.pickup-body__link {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    overflow: hidden;
    padding-top: 100%;
    width: 100%;
    height: 0;
}

/*  index-bottom
--------------------------------------------- */
.index-bottom {
    font-size: 28px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .index-bottom {
        font-size: 2.33333vw;
    }
}

.index-bottom__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 750px) {
    .index-bottom__list {
        display: block;
    }
}

.index-bottom__list-item {
    width: 33.33333%;
    height: 262px;
    background-color: #fff;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    body.home .index-bottom__list-item {
        height: 21.83333vw;
    }
}

@media screen and (max-width: 750px) {
    .index-bottom__list-item {
        width: 100%;
        height: 29.6vw;
    }
}

.index-bottom__link {
    display: inline-block;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: bold;
    -webkit-transition: .3s;
    transition: .3s;

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

.index-bottom__link:hover {
    border: 5px solid #0068b7;
    background: none;
    background-color: #fff;
    color: #0068b7;
}

.index-bottom__link--1 {
    background: url(/assets/img/top_sales.png) 0 0 no-repeat;
    background-size: cover;
}

.index-bottom__link--2 {
    background: url(/assets/img/top_maintenance.png) 0 0 no-repeat;
    background-size: cover;
}

.index-bottom__link--3 {
    background: url(/assets/img/top_recruit.png) 0 0 no-repeat;
    background-size: cover;
}

/*  index-banner
--------------------------------------------- */
.index-banner {
    padding-top: 74px;
    padding-bottom: 74px;
    background-color: #F0EFED;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .index-banner {
        padding-top: 6.16667vw;
        padding-bottom: 6.16667vw;
    }
}

@media screen and (max-width: 750px) {
    .index-banner {
        padding-top: 9.86667vw;
        padding-bottom: 9.86667vw;
    }
}

.index-banner__container {
    margin-right: auto;
    margin-left: auto;
    width: 948px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .index-banner__container {
        width: 79vw;
    }
}

@media screen and (max-width: 750px) {
    .index-banner__container {
        padding: 0 20px;
        width: 100%;
    }
}

.index-banner__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

.index-banner__item {
    margin-left: 24px;
    width: 300px;
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .index-banner__item {
        margin-left: 2vw;
        width: 25vw;
    }
}

@media screen and (max-width: 750px) {
    .index-banner__item {
        margin: 0 1px;
        width: calc(50% - 1px);
    }
}

@media screen and (min-width: 751px) {
    .index-banner__item:nth-of-type(3n+1) {
        margin-left: 0;
    }
}

@media screen and (min-width: 1201px) {
    .index-banner__item:nth-of-type(n+4) {
        margin-top: 24px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 751px) {
    .index-banner__item:nth-of-type(n+4) {
        margin-top: 2vw;
    }
}

@media screen and (max-width: 750px) {
    .index-banner__item:nth-of-type(2n+1) {
        margin-left: 0;
    }
}

@media screen and (max-width: 750px) {
    .index-banner__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .index-banner__item:nth-of-type(n+3) {
        margin-top: 2px;
    }
}

.index-banner__link {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.index-banner__link:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.index-banner__link img {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   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;
    }
}

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

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







/** 追加 */
.social-media {
  margin: 0 auto;
  padding: 80px 0 0 0;
  width: 92%;
  max-width: 1040px;
  text-align: left;
}
.social-media h3 {
  margin: 0 0 45px 0;
  padding: 0 0 10px 0;
  line-height: 1.2em;
  font-size: 36px;
  font-weight: bold;
  color: #0068b7;
  border-bottom: 2px solid #0068b7;
}
.social-media table {
  margin: 0 0 45px 0;
  width: 100%;
}
.social-media table th {
  padding: 15px;
  width: 130px;
  line-height: 1.8em;
  text-align: left;
  color: #252334;
  font-size: 16px;
  font-weight: normal;
  background: #F0EFED;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  vertical-align: top;
}
.social-media table tr:nth-last-child(1) th {
  border-bottom: none;
}
.social-media table td {
  padding: 15px;
  line-height: 1.8em;
  color: #252334;
  font-size: 16px;
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  vertical-align: top;
}
.social-media table tr:nth-last-child(1) td {
  border-bottom: none;
}
.social-media table td a {
  color: #3F66BD;
}
.social-media table td a.blank {
  position: relative;
  display: inline-block;
}
.social-media table td a.blank:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: url(/assets/img/icon_link.svg) 0 0 no-repeat;
  background-size: 100% auto;
  transform: translateY(-50%);
  margin: 0 0 0 5px;
  display: inline-block;
  vertical-align: middle;
}
.social-media table td .pdf:after {
  margin: 0 0 0 5px;
  content: url("../img/icon_pdf_01.png");
  display: inline-block;
  vertical-align: middle;
}

@media (max-width:600px){
  .social-media {
    margin: 0 auto;
    padding: 80px 0 0 0;
    width: 92%;
    max-width: 1040px;
    text-align: left;
  }
  .social-media h3 {
    margin: 0 0 45px 0;
    padding: 0 0 10px 0;
    line-height: 1.2em;
    font-size: 22px;
    font-weight: bold;
    color: #0068b7;
    border-bottom: 2px solid #0068b7;
  }
  .social-media table {
    margin: 0 0 45px 0;
    width: 100%;
    display: block;
  }
  .social-media table tr {
    display: block;
  }
  .social-media table tbody {
    display: block;
  }
  .social-media table th {
    padding: 10px;
    width: 100%;
    line-height: 1.8em;
    text-align: left;
    color: #252334;
    font-size: 14px;
    font-weight: normal;
    background: #F0EFED;
    box-sizing: border-box;
    border-right: none;
    border-bottom: none;
    vertical-align: top;
    display: block;
  }
  .social-media table td {
    padding: 10px;
    line-height: 1.8em;
    color: #252334;
    font-size: 14px;
    background: #ffffff;
    border-bottom: none;
    box-sizing: border-box;
    vertical-align: top;
    display: block;
  }
  .social-media table td a {
    color: #3F66BD;
  }
  .social-media table td a.blank {
    display: inline-block;
  }
  .social-media table td .blank:after {
    margin: 0 0 0 5px;
    content: url("../img/icon_back_01.png");
    display: inline-block;
    vertical-align: middle;
  }
  .social-media table td .pdf:after {
    margin: 0 0 0 5px;
    content: url("../img/icon_pdf_01.png");
    display: inline-block;
    vertical-align: middle;
  }



}





@media screen and (max-width: 750px) {
    .policy__list {
      margin: 0 auto;
        -ms-flex-pack: left;
        width: 100%;

        -webkit-box-pack: left;
        justify-content: center;
        gap: 12px 10px;
    }

  .footer-nav .footer-nav__list {
    background: #ffffff;
  }


  .footer-nav .footer-nav__list .footer-nav__list-item {
    background: #0068b7;
  }

  .footer-nav .footer-nav__list .footer-nav__list-item.footer-nav__list-item--contact {
    background: #ffffff;
  }



}



.child-page__body-ttl3--site-policy {
  color: #0068b7;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4em;
  text-align: left;
  margin: 0 0 15px 0;
}
.mb20 {
  margin-bottom: 20px;
}
.mb40 {
  margin-bottom: 40px;
}
.ml40 {
  margin-left: 40px;
}
.site-policy__txt__dl {
  margin-left: 40px;
  line-height: 1.4em;
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  overflow: hidden;
}
.site-policy__txt__dl dt {
  padding: 0 0 5px 0;
  width: 200px;
  float: left;
  clear: both;
}
.site-policy__txt__dl dt.w2 {
  width: 310px;
  float: left;
  clear: both;
}
.site-policy__txt__dl dd {
  padding: 0 0 5px 0;
  overflow: hidden;
}
.site-policy__list {
  margin-left: 40px;
  line-height: 1.4em;
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  overflow: hidden;
}
.site-policy__list li {
  padding: 0 0 15px 2.5em;
  position: relative;
}
.site-policy__list li .icon {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .child-page__body-ttl3--site-policy {
    color: #0068b7;
    font-size: 4.23333vw;
    font-weight: bold;
    line-height: 1.4em;
    text-align: left;
    margin: 0 0 15px 0;
  }
  .mb20 {
    margin-bottom: 20px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .ml40 {
    margin-left: 40px;
  }
  .site-policy__txt__dl {
    margin-left: 40px;
    line-height: 1.4em;
    text-align: left;
    font-weight: normal;
    font-size: 3.73333vw;
    overflow: hidden;
  }
  .site-policy__txt__dl dt {
    padding: 0 0 5px 0;
    width: 100%;
    float: none;
    clear: both;
  }
  .site-policy__txt__dl dt.w2 {
    width: 100%;
    float: none;
    clear: both;
  }
  .site-policy__txt__dl dd {
    padding: 0 0 10px 0;
    line-height: 1.2em;
    overflow: hidden;
  }
  .site-policy__txt__dl dd a {
    display: inline-block;
  }
  .site-policy__list {
    margin-left: 40px;
    line-height: 1.4em;
    text-align: left;
    font-weight: normal;
    font-size: 3.73333vw;
    overflow: hidden;
  }
  .site-policy__list li {
    padding: 0 0 15px 2.5em;
    position: relative;
  }
  .site-policy__list li .icon {
    position: absolute;
    top: 0;
    left: 0;
  }
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
.c-cassette-1 {
    width: 1040px;
    margin: 0 auto;
    border: 2px solid #0068b7;
}

@media screen and (max-width: 750px) {
    .c-cassette-1 {
        width: 100%;
        border-right: none;
        border-left: none;
    }
}

@media screen and (max-width: 750px) {
    .c-cassette-1__head {
        border-bottom: 2px solid #0068b7;
    }
}

.c-cassette-1__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

@media screen and (max-width: 750px) {
    .c-cassette-1__list {
        flex-wrap: wrap;
    }
}

.c-cassette-1__item {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    background-color: #0068b7;
    color: #fff;
    width: 25%;
    text-align: left;
    height: 54px;
    padding-left: 15px;
    cursor: pointer;
    margin-right: 4px;
    transition: 0.3s;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 751px) {
    .c-cassette-1__item {
        transition: opacity 0.3s;
    }

    .c-cassette-1__item:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-cassette-1__item {
        width: calc(50% - 1px);
        height: calc(100 / 750 * 100vw);
        font-size: calc(24 / 750 * 100vw);
        padding: calc(30 / 750 * 100vw) 30px calc(30 / 750 * 100vw) 20px;
        margin-right: 0;
    }
}

@media screen and (max-width: 750px) {
    .c-cassette-1__item:nth-of-type(2n - 1) {
        margin-right: 2px;
    }

    .c-cassette-1__item:nth-of-type(n + 3) {
        margin-top: 2px;
    }
}

.c-cassette-1__item:last-of-type {
    margin-right: 0;
}

.c-cassette-1__item::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    -webkit-transform: translateY(-75%) rotate(135deg);
    transform: translateY(-75%) rotate(135deg);
    transition: border 0.3s,transform 0.3s;
}

@media screen and (max-width: 750px) {
    .c-cassette-1__item::after {
        width: calc(14 / 750 * 100vw);
        height: calc(14 / 750 * 100vw);
        right: calc(35 / 750 * 100vw);
    }
}

.c-cassette-1__item.is-current {
    background-color: #fff;
    color: #0068b7;
}

.c-cassette-1__item.is-current::after {
    border-color: #0068b7;
    transform: translateY(-25%) rotate(-45deg);
}

.c-cassette-1__body {
    background-color: #fff;
    padding: 45px 50px;
}

@media screen and (max-width: 750px) {
    .c-cassette-1__body {
        padding: calc(54 / 750 * 100vw) 20px;
    }
}

.c-cassette-1__body-inner {
    display: none;
}

.c-cassette-1__body-inner.is-current {
    display: block;
}

.c-cassette-2 {
    margin-top: 44px;
    padding-top: 88px;
    padding-bottom: 44px;
    background-color: #e8e7e5;
}

@media screen and (max-width: 750px) {
    .c-cassette-2 {
        margin-top: calc(54 / 750 * 100vw);
        padding-top: calc(54 / 750 * 100vw);
        padding-bottom: calc(54 / 750 * 100vw);
    }
}

.c-cassette-2--bg-org {
    padding-top: 44px;
    background-color: #FAF0E6;
}

@media screen and (max-width: 750px) {
    .c-cassette-2--bg-org {
        margin-top: 0;
    }
}

@media screen and (max-width: 750px) {
    .c-cassette-2__container {
        padding: 0 20px;
    }
}

.c-cassette-2__head {
    text-align: center;
}

.c-cassette-2__body {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .c-cassette-2__body {
        margin-top: calc(54 / 750 * 100vw);
    }
}

/* ---------------------------------------------
*   c-list
--------------------------------------------- */
.c-list-1 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.c-list-1__item {
    width: calc(200 / 932 * 100%);
    margin-right: calc(44 / 932 * 100%);
}

@media screen and (max-width: 750px) {
    .c-list-1__item {
        width: calc(325 / 690 * 100%);
        margin-right: calc(40 / 690 * 100%);
    }
}

@media screen and (min-width: 751px) {
    .c-list-1__item:nth-of-type(n + 5) {
        margin-top: 44px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-1__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.c-list-1__item:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .c-list-1__item:nth-of-type(n + 3) {
        margin-top: calc(22 / 750 * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .c-list-1__cont {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
    }
}

.c-list-1__img {
    position: relative;
    width: calc(154 / 200 * 100%);
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .c-list-1__img {
        width: calc(86 / 750 * 100vw);
        margin: 0;
        margin-right: calc(22 / 750 * 100vw);
        flex-shrink: 0;
    }
}

.c-list-1__img-1 {
    opacity: 1;
    transition: opacity 0.3s;
}

@media screen and (min-width: 751px) {
    .c-list-1__link:hover .c-list-1__img-1 {
        opacity: 0;
    }
}

.c-list-1__img-2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

@media screen and (min-width: 751px) {
    .c-list-1__link:hover .c-list-1__img-2 {
        opacity: 1;
    }
}

.c-list-1__btn {
    position: relative;
    background-color: #d3def1;
    padding-left: 15px;
    padding-right: 30px;
    margin-top: 22px;
    transition: background 0.3s;
    box-sizing: border-box;
    height: 54px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 750px) {
    .c-list-1__btn {
        background-color: #fff;
        border: none;
        margin-top: 0;
        padding: 0;
        text-align: left;
        height: auto;
        width: calc(100% - (108 / 750 * 100vw));
        padding-right: 2em;
    }
}

.c-list-1__btn::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #0068b7;
    border-right: 2px solid #0068b7;
    content: '';
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: border 0.3s;
}

@media screen and (max-width: 750px) {
    .c-list-1__btn::after {
        width: calc(16 / 750 * 100vw);
        height: calc(16 / 750 * 100vw);
        right: 0;
    }
}

@media screen and (min-width: 751px) {
    .c-list-1__link:hover .c-list-1__btn {
        background-color: rgba(0, 104, 183, 0.3);
    }
}

.c-list-1__btn-txt {
    color: #0068b7;
    font-size: 16px;
    transition: color 0.3s;
    text-align: left;
    line-height: 1.25;
}

@media screen and (min-width: 751px) {
    .c-list-1__btn-txt {
        font-feature-settings: "palt";
    }
}

@media screen and (max-width: 750px) {
    .c-list-1__btn-txt {
        font-size: calc(28 / 750 * 100vw);
        width: 100%;
    }
}

.c-list-1__txt-area {
    font-size: 14px;
    font-weight: normal;
    text-align: left;
    margin-top: 20px;
}

@media screen and (min-width: 751px) {
    .c-list-1__link:hover .c-list-1__btn-txt {
        color: #0068b7;
    }
}

@media screen and (max-width: 750px) {
    .c-list-1__txt-area {
        font-size: calc(24 / 750 * 100vw);
        margin-top: calc(10 / 750 * 100vw);
    }
}

.c-list-2 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    max-width: 1040px;
    margin: 0 auto;
}

@media screen and (max-width: 750px) {
    .c-list-2 {
        flex-wrap: wrap;
    }
}

.c-list-2__item {
    width: calc(243.5 / 1040 * 100%);
    margin-right: calc(22 / 1040 * 100%);
}

@media screen and (max-width: 750px) {
    .c-list-2__item {
        width: calc(334 / 690 * 100%);
        margin-right: calc(22 / 690 * 100%);
    }
}

@media screen and (max-width: 750px) {
    .c-list-2__item:nth-of-type(2n) {
        margin-right: 0;
    }

    .c-list-2__item:nth-of-type(n + 3) {
        margin-top: calc(22 / 690 * 100%);
    }
}

.c-list-2__item:nth-of-type(4n) {
    margin-right: 0;
}

.c-list-2__link {
    position: relative;
    display: block;
}

@media screen and (min-width: 751px) {
    .c-list-2__link {
        transition: opacity 0.3s;
    }

    .c-list-2__link:hover {
        opacity: 0.8;
    }
}

.c-list-2__img {
    width: 100%;
}

.c-list-2__img img {
    width: 100%;
}

.c-list-2__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-list-2__txt {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media screen and (max-width: 750px) {
    .c-list-2__txt {
        font-size: calc(26 / 750 * 100vw);
    }
}

.is-hide {
    display: none;
}

.c-list-3 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .c-list-3 {
        margin-bottom: calc(24 / 750 * 100vw);
    }
}

.c-list-3__item {
    margin-bottom: 22px;
    margin-right: 22px;
}

@media screen and (max-width: 750px) {
    .c-list-3__item {
        margin-right: calc(44 / 750 * 100vw);
        margin-bottom: calc(30 / 750 * 100vw);
    }
}

.c-list-3__link {
    padding: 5px 10px;
}

.c-list-3__txt {
    font-size: 14px;
    font-weight: normal;
    color: #0068b7;
    border: 1px solid #0068b7;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    padding: 5px 5px 4px;
    box-sizing: border-box;
}

@media screen and (min-width: 751px) {
    .c-list-3__txt {
        transition: 0.3s;
    }

    .c-list-3__txt:hover {
        background-color: #0068b7;
        color: #fff;
    }
}

@media screen and (max-width: 750px) {
    .c-list-3__txt {
        font-size: calc(26 / 750 * 100vw);
        line-height: calc(38 / 750 * 100vw);
        border-radius: calc(10 / 750 * 100vw);
        padding: 0 calc(30 / 750 * 100vw);
    }

    .android .c-list-3__txt {
        padding-top: calc(4 / 750 * 100vw);
        line-height: calc(34 / 750 * 100vw);
    }
}

.c-list-3__input {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    width: 0;
    height: 0;
}

.c-list-3__input:checked + .c-list-3__txt {
    background-color: #0068b7;
    color: #fff;
}

.c-list-3__txt.is-current {
    background-color: #0068b7;
    color: #fff;
}

/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-block-1 {
    text-align: center;
    padding-top: 44px;
    padding-bottom: 44px;
}


@media screen and (max-width: 750px) {
    .c-block-1 {
        padding-top: calc(54 / 750 * 100vw);
        padding-bottom: calc(54 / 750 * 100vw);
    }
}

@media screen and (max-width: 750px) {
    .c-block-1__container {
        padding: 0 20px;
    }
}

.c-block-1__ttl {
    font-size: 28px;
    font-weight: bold;
    color: #b0141e;
    margin-bottom: 22px;
}

@media screen and (max-width: 750px) {
    .c-block-1__ttl {
        font-size: calc(40 / 750 * 100vw);
        margin-bottom: calc(22 / 750 * 100vw);
    }
}

.c-block-1__ttl--small {
    font-size: 16px;
    color: #0068b7;
}

@media screen and (max-width: 750px) {
    .c-block-1__ttl--small {
        padding-top: calc(54 / 750 * 100vw);
        font-size: calc(28 / 750 * 100vw);
        letter-spacing: .1em;
    }
}

@media screen and (max-width: 750px) {
    .c-block-1__txt-area {
        padding: 0 calc(30 / 750 * 100vw);
    }
}

.c-block-1__txt {
    font-size: 16px;
    font-weight: normal;
}

@media screen and (max-width: 750px) {
    .c-block-1__txt {
        font-size: calc(28 / 750 * 100vw);
    }
}

.c-block-1__btn {
    margin-top: 44px;
}

@media screen and (max-width: 750px) {
    .c-block-1__btn {
        margin-top: calc(54 / 750 * 100vw);
    }
}

.c-block-1__link {
    position: relative;
    background-color: #0068b7;
    display: inline-flex;
    align-items: center;
    padding-left: 75px;
    padding-right: 15px;
    height: 54px;
    box-sizing: border-box;
    border: 2px solid #0068b7;
    transition: background 0.3s;
}

@media screen and (min-width: 751px) {
    .c-block-1__link:hover {
        background-color: #fff;
    }
}

@media screen and (max-width: 750px) {
    .c-block-1__link {
        height: calc(77 / 750 * 100vw);
        border-radius: 100px;
        padding-left: calc(115 / 750 * 100vw);
        padding-right: calc(40 / 750 * 100vw);
    }
}

.c-block-1__link::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    width: 41px;
    height: 23px;
    background: url('../img/mail_icon_white-l.png') 0 0 no-repeat;
    background-size: 100% auto;
    transition: 0.3s;
}

@media screen and (min-width: 751px) {
    .c-block-1__link:hover::after {
        background-image: url('../img/mail_icon_red-l.png');
    }
}

@media screen and (max-width: 750px) {
    .c-block-1__link::after {
        width: calc(41 / 750 * 100vw);
        height: calc(23 / 750 * 100vw);
        left: calc(55 / 750 * 100vw);
    }
}

.c-block-1__link-txt {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

@media screen and (min-width: 751px) {
    .c-block-1__link:hover .c-block-1__link-txt {
        color: #0068b7;
    }
}

@media screen and (max-width: 750px) {
    .c-block-1__link-txt {
        font-size: calc(26 / 750 * 100vw);
    }
}

.c-block-1__icon {
    width: 40px;
    display: block;
}

/* ---------------------------------------------
*   tab-content
--------------------------------------------- */
[data-tab-content] {
    display: none;
}
.tab-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.tab-content__item {
    border: 1px solid #0068b7;
    display: block;
    min-width: 300px;
    height: 52px;
    text-align: center;
    color: #0068b7;
    font-size: 17px;
    font-weight: bold;
    padding: 5px;
    box-sizing: border-box;
}
.tab-content__item.is-active {
    background-color: #0068b7;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .tab-content {
        gap: 4vw 0;
        padding: 0 4vw;
        margin-top: 14.4vw;
    }
    .tab-content__item {
        min-width: 0;
        height: 13.8666667vw;
        width: 100%;
        font-size: 3.73333vw;
    }
}

/* ---------------------------------------------
*   other
--------------------------------------------- */
.txt-palt {
    font-feature-settings: "palt";
}
