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

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

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
body {
    min-width: 1180px;
}

@media screen and (max-width: 768px) {
    body {
        min-width: 320px;
    }
}

.body-content {
    max-width: 1180px;
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .body-content {
        padding-left: 0;
        padding-right: 0;
    }
}

.body-content ul {
    list-style-type: none;
    padding-left: 0;
}

.body-content li {
    list-style-type: none;
}

.body-content a {
    text-decoration: none;
}

.body-content a:focus {
    outline: none;
}

.body-content img {
    max-width: 100%;
    vertical-align: bottom;
}

*:not(.m3_wrapper, .atlas-side-menu-opinion-box, .atlas-nav, .atlas-side-menu-nav__item) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/*  swiper
--------------------------------------------- */
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
    list-style: none;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    /* Fix of Webkit flickering */
    z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
    float: left;
}

.swiper-container-vertical > .swiper-wrapper {
    -ms-flex-direction: column;
    -webkit-box-direction: normal;

    -webkit-box-orient: vertical;
    flex-direction: column;
}

.swiper-wrapper {
    -webkit-box-sizing: content-box;
    -webkit-transition-property: -webkit-transform;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
    z-index: 1;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    margin: 0 auto;
    transition-timing-function: ease-out;
}

.swiper-slide {

    -ms-flex-negative: 0;
    -webkit-transition-property: -webkit-transform;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;

    -webkit-box-align: start;
    -webkit-transition-property: height, -webkit-transform;
    align-items: flex-start;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 27px 44px;
    cursor: pointer;
    height: 44px;
    margin-top: -22px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 10;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: auto;
    right: 10px;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
    display: none;
}

.swiper-pagination {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-transition: 300ms opacity;
    position: absolute;
    text-align: center;
    transform: translate3d(0, 0, 0);
    transition: 300ms opacity;
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    position: relative;
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    background: #000;
    border-radius: 100%;
    display: inline-block;
    height: 8px;
    opacity: 0.2;
    width: 8px;
}

button.swiper-pagination-bullet {
    -moz-appearance: none;

    -webkit-appearance: none;
    -webkit-box-shadow: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #007aff;
    opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
    -webkit-transform: translate3d(0px, -50%, 0);
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    -webkit-transform: translateY(-50%);
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    display: inline-block;
    transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    -webkit-transform: translateX(-50%);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform: scale(0);
    -webkit-transform-origin: left top;
    background: #007aff;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px;
}

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

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
}

.swiper-pagination-lock {
    display: none;
}

/* Scrollbar */
.swiper-scrollbar {

    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
}

.swiper-container-horizontal > .swiper-scrollbar {
    bottom: 3px;
    height: 5px;
    left: 1%;
    position: absolute;
    width: 98%;
    z-index: 50;
}

.swiper-container-vertical > .swiper-scrollbar {
    height: 98%;
    position: absolute;
    right: 3px;
    top: 1%;
    width: 5px;
    z-index: 50;
}

.swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;

    -webkit-box-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {

    -o-object-fit: contain;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.swiper-slide-zoomed {
    cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    -webkit-transform-origin: 50%;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10;
}

.swiper-lazy-preloader:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    -webkit-transition-property: opacity;
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {

    -webkit-backface-visibility: hidden;
    -webkit-transform-origin: 0 0;
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow {
    -webkit-filter: blur(50px);
    background: #000;
    bottom: 0px;
    filter: blur(50px);
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0;
}

.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

/*  m3-breadcrumbs
--------------------------------------------- */
@media screen and (min-width: 769px) {
    .m3-breadcrumbs {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 768px) {
    .m3-breadcrumbs li {
        display: inline;
        float: none;
    }
}

/*  atlas-header
--------------------------------------------- */
.atlas-header__content {
    width: 1180px;
}

@media screen and (max-width: 768px) {
    .atlas-header__content {
        width: 100%;
    }
}

/*  atlas-footer
--------------------------------------------- */
@media screen and (max-width: 768px) {
    .atlas-footer__content {
        width: 100%;
    }
}

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

/*  header
--------------------------------------------- */
.header {
    height: 82px;
    position: absolute;
    width: 100%;
    z-index: 99;
}

@media screen and (max-width: 768px) {
    .header {
        background-color: #fff;
        height: auto;
        padding-bottom: 0;
        position: relative;
    }
}

.header__container {
    -ms-flex-pack: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;

    -webkit-box-pack: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    justify-content: space-between;
    padding: 0 1.81034%;
    background-color: white
}

@media screen and (max-width: 768px) {
    .header__container {
        height: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

/*  header-logo-wrap
--------------------------------------------- */
.header-logo-wrap {
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;

    -webkit-box-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

@media screen and (min-width: 769px) {
    .header-logo-wrap {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-logo-wrap:hover {
        opacity: 0.8;
    }
    .ios .header-logo-wrap:hover,
    .android .header-logo-wrap:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .header-logo-wrap {
        -ms-flex-align: center;

        -webkit-box-align: center;
        align-items: center;
        height: 55px;
        padding-left: 4%;
    }
}

/*  header-logo
--------------------------------------------- */
@media screen and (max-width: 768px) {
    .header-logo {
        font-size: 0;
        margin-bottom: 0;
        margin-top: 0;
        width: 88px;
    }
}

/*  header-logo-txt
--------------------------------------------- */
.header-logo-txt {
    color: black;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-left: 12px;
    margin-top: 29px;
}

@media screen and (max-width: 768px) {
    .header-logo-txt {
        color: #2D2D2D;
        font-size: 10px;
        margin-left: 10px;
        margin-top: 0;
    }
}

/*  header-right-box
--------------------------------------------- */
.header-right-box {
    -ms-flex-align: center;

    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
    .header-right-box {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
}

@media screen and (max-width: 768px) {
    .header-right-box {
        background-color: rgba(0, 0, 0, 0.9);
        display: none;
        width: 100%;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    .header-nav {
        margin-right: 0;
        padding: 16vw 11.73333vw;
    }
}

.header-nav__list {
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;

    -webkit-box-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

@media screen and (min-width: 769px) {
    .ie11 .header-nav__list {
        top: 2px;
    }
}

@media screen and (max-width: 768px) {
    .header-nav__list {
        display: block;
        margin-bottom: 0;
        margin-top: 0;
    }
}

.header-nav__item {
    margin: 0 10px 0 0;
    border: 3px solid #999;
    width: 135px;
    text-align: center;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .header-nav__item {
        margin: 4vw 0 0;
        border: none;
        width: auto;
        padding: 0;
    }
    .header-nav__item:first-of-type {
        margin: 0;
    }
}

@media screen and (min-width: 769px) {
    .header-nav__item:last-of-type {
        margin: 0;
    }
}

.header-nav__link {
    color: black;
    font-weight: 700;
    position: relative;
}

@media screen and (max-width: 768px) {
    .header-nav__link {
        color: #fff;
        display: block;
        text-align: center;
    }
}

.header-nav__link:before {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    background-color: #E60012;
    bottom: -35px;
    content: '';
    display: block;
    height: 5px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .header-nav__link:before {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .ie11 .header-nav__link:before {
        bottom: -5px;
    }
    .edge .header-nav__link:before {
        bottom: -7px;
    }
}

@media screen and (min-width: 769px) {
    .header-nav__link:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.header-nav__link--current:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
    .header-nav__link-txt {
        font-size: 3.73333vw;
        font-weight: 700;
    }
}

.header-nav__sub-list {
    display: none;
}

@media screen and (max-width: 768px) {
    .header-nav__sub-list {
        display: block;
        margin-left: 4.8vw;
        margin-top: 2.13333vw;
    }
}

.header-nav__sub-item {
    margin-top: 2.13333vw;
}

.header-nav__sub-item:first-of-type {
    margin-top: 0;
}

.header-nav__sub-item-link {
    font-size: 3.2vw;
}

/*  header-menu-button
--------------------------------------------- */
.header-menu-button {
    display: none;
}

@media screen and (max-width: 768px) {
    .header-menu-button {
        -moz-appearance: none;

        -webkit-appearance: none;
        -webkit-box-shadow: none;
        appearance: none;
        background: none;
        background-color: #E60012;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        cursor: pointer;
        display: block;
        display: block;
        height: 55px;
        margin: 0;
        outline: none;
        padding: 14px 16px 24px;
        position: absolute;
        right: 0;
        top: 0;
    }
}

.header-menu-button__lines {
    display: block;
    height: 17px;
    position: relative;
    width: 23px;
}

.header-menu-button__lines:before {
    -webkit-transform: translateX(-50%);
    bottom: -17px;
    color: #fff;
    content: 'Menu';
    display: block;
    font-size: 8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.header-menu-button__line {
    display: block;
    height: 0;
    left: 0;
    padding-top: 2px;
    position: absolute;
    width: 100%;
}

.js-sp-menu-opened .header-menu-button__line {
    left: -4px;
    width: 135%;
}

.header-menu-button__line--top, .header-menu-button__line--center, .header-menu-button__line--bottom {
    -webkit-transition: 500ms;
    background-color: #fff;
    transition: 500ms;
}

.header-menu-button__line--top {
    top: 0;
}

.header-menu-button__line--center {
    margin-top: -1px;
    top: 50%;
}

.header-menu-button__line--bottom {
    bottom: 0;
}

.js-sp-menu-opened .header-menu-button__line {
    padding-top: 3px;
}

.js-sp-menu-opened .header-menu-button__line--top {
    -webkit-transform: translateY(-50%) rotate(45deg);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.js-sp-menu-opened .header-menu-button__line--center {
    background-color: rgba(0, 0, 0, 0);
}

.js-sp-menu-opened .header-menu-button__line--bottom {
    -webkit-transform: translateY(50%) rotate(-45deg);
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/*
--------------------------------------------- */
.mod-button {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    font-weight: 700;
    outline: none;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    z-index: 2;
}

.ie11 .mod-button {
    padding: .15em 0 0;
}

.mod-button:before, .mod-button:after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
}

.mod-button, .mod-button:before, .mod-button:after {
    -webkit-box-sizing: border-box;
    -webkit-transition: all .3s;
    box-sizing: border-box;
    transition: all .3s;
}

.mod-button:after {
    height: 100%;
    left: 0;
    top: -100%;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .mod-button:hover::after {
        top: 0;
    }
}

.mod-button--interview {
    background-color: #2D2D2D;
    color: #fff;
    height: 72px;
    line-height: 72px;
    width: 345px;
}

@media screen and (max-width: 768px) {
    .mod-button--interview {
        background-color: #E60012;
        font-size: 3.2vw;
        height: 12.8vw;
        letter-spacing: normal;
        line-height: 12.8vw;
        padding: 0 0 0 5.33333vw;
        text-align: left;
        width: 54.66667vw;
    }
}

.mod-button--interview .mod-button__icon {
    height: 16px;
    right: 40px;
    width: 16px;
}

@media screen and (max-width: 768px) {
    .mod-button--interview .mod-button__icon {
        height: 3.73333vw;
        right: 5.33333vw;
        width: 3.73333vw;
    }
}

.mod-button--interview .mod-button__icon:after {
    height: 4px;
    width: 4px;
}

@media screen and (max-width: 768px) {
    .mod-button--interview .mod-button__icon:after {
        height: 1.06667vw;
        width: 1.06667vw;
    }
}

@media screen and (min-width: 769px) {
    .mod-button--interview:hover:after {
        background-color: #E60012;
    }
    .mod-button--interview:hover .mod-button__icon:after {
        border-color: #E60012;
    }
}

.mod-button--gray-small {
    background-color: #2D2D2D;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.6875rem;
    height: 35px;
    line-height: 35px;
    width: 242px;
}

@media screen and (max-width: 768px) {
    .mod-button--gray-small {
        background-color: #E60012;
        border-color: #E60012;
        font-size: 2.4vw;
        height: 8.53333vw;
        line-height: 8.53333vw;
        width: 58.66667vw;
    }
}

.mod-button--gray-small .mod-button__icon {
    height: 11px;
    right: 15px;
    width: 11px;
}

@media screen and (max-width: 768px) {
    .mod-button--gray-small .mod-button__icon {
        height: 2.93333vw;
        right: 4vw;
        width: 2.93333vw;
    }
}

.mod-button--gray-small .mod-button__icon:after {
    -webkit-transform: translate3d(-50%, -35%, 0) rotate(-45deg);
    border-width: 1px;
    height: 3px;
    transform: translate3d(-50%, -35%, 0) rotate(-45deg);
    width: 3px;
}

@media screen and (max-width: 768px) {
    .mod-button--gray-small .mod-button__icon:after {
        border-width: 0.26667vw;
        height: 0.8vw;
        width: 0.8vw;
    }
}

@media screen and (min-width: 769px) {
    .mod-button--gray-small:hover:after {
        background-color: #E60012;
    }
}

.mod-button--culture {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #E60012;
    border: 2px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    color: #fff;
    height: 72px;
    line-height: 70px;
    width: 345px;
}

@media screen and (max-width: 768px) {
    .mod-button--culture {
        background-color: #fff;
        color: #2D2D2D;
        font-size: 3.73333vw;
        font-weight: 700;
        height: 17.06667vw;
        line-height: 16.53333vw;
        width: 100%;
    }
}

.mod-button--culture .mod-button__icon {
    height: 20px;
    right: 22px;
    width: 20px;
}

@media screen and (max-width: 768px) {
    .mod-button--culture .mod-button__icon {
        background-color: #E60012;
        height: 4.8vw;
        right: 8.53333vw;
        width: 4.8vw;
    }
}

.mod-button--culture .mod-button__icon:after {
    border-width: 3px;
    height: 6px;
    width: 6px;
}

@media screen and (max-width: 768px) {
    .mod-button--culture .mod-button__icon:after {
        border-color: #fff;
        border-width: 0.8vw;
        height: 1.6vw;
        width: 1.6vw;
    }
}

@media screen and (min-width: 769px) {
    .mod-button--culture:hover {
        color: #E60012;
    }
    .mod-button--culture:hover:after {
        background-color: #fff;
    }
    .mod-button--culture:hover .mod-button__icon {
        background-color: #E60012;
    }
    .mod-button--culture:hover .mod-button__icon:after {
        border-color: #fff;
    }
}

.mod-button--red {
    background-color: #E60012;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 1.3125rem;
    height: 76px;
    line-height: 76px;
    width: 330px;
}

@media screen and (max-width: 768px) {
    .mod-button--red {
        font-size: 3.73333vw;
        height: 16vw;
        line-height: 16vw;
        width: 100%;
    }
}

.mod-button--red .mod-button__icon {
    height: 20px;
    right: 22px;
    width: 20px;
}

@media screen and (max-width: 768px) {
    .mod-button--red .mod-button__icon {
        height: 4vw;
        right: 8vw;
        width: 4vw;
    }
}

.mod-button--red .mod-button__icon:after {
    border-width: 3px;
    height: 6px;
    width: 6px;
}

@media screen and (max-width: 768px) {
    .mod-button--red .mod-button__icon:after {
        border-width: 0.53333vw;
        height: 1.06667vw;
        width: 1.06667vw;
    }
}

@media screen and (min-width: 769px) {
    .mod-button--red:hover {
        color: #E60012;
    }
    .mod-button--red:hover:after {
        background-color: #fff;
    }
    .mod-button--red:hover .mod-button__icon {
        background-color: #E60012;
    }
    .mod-button--red:hover .mod-button__icon:after {
        border-color: #fff;
    }
}

.mod-button--entry {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;

    -webkit-box-pack: center;
    align-items: center;
    background-color: #E60012;
    border: 1px solid #E60012;
    border-radius: 28px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.25rem;
    height: 56px;
    justify-content: center;
    margin: 0 auto;
    width: 362px;
}

@media screen and (max-width: 768px) {
    .mod-button--entry {
        font-size: 4.26667vw;
        height: 12.26667vw;
        width: 100%;
    }
}

@media screen and (min-width: 769px) {
    .mod-button--entry:hover {
        color: #E60012;
    }
    .mod-button--entry:hover:after {
        background-color: #fff;
    }
    .mod-button--entry:hover .mod-button__arw {
        border-color: #E60012;
    }
}

.ie11 .mod-button--entry .mod-button__txt {
    padding: .4em 0 0;
}

.mod-button__arw {
    -webkit-transform: rotate(-45deg) translate3d(-50%, -50%, 0);
    -webkit-transform-origin: center;
    -webkit-transition: border-color .3s;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    display: inline-block;
    height: 12px;
    margin: 0 0 0 10px;
    transform: rotate(-45deg) translate3d(-50%, -50%, 0);
    transform-origin: center;
    transition: border-color .3s;
    width: 12px;
}

@media screen and (max-width: 768px) {
    .mod-button__arw {
        border-width: 0.8vw;
        height: 2.66667vw;
        margin: 0 0 0 4vw;
        width: 2.66667vw;
    }
}

.mod-button__icon {
    -webkit-transform: translateY(-50%);
    -webkit-transition: background-color .3s;
    background-color: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .3s;
    z-index: 3;
}

.mod-button__icon:after {
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    -webkit-transition: border-color .3s;
    border-bottom: 2px solid #E60012;
    border-right: 2px solid #E60012;
    content: "";
    display: block;
    left: 45%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transition: border-color .3s;
}

/*  yonemori-contents
--------------------------------------------- */
.yonemori-contents {
    color: #2D2D2D;
    font-family: "ÓÎ¥´¥·¥Ã¥¯", "Yu Gothic", YuGothic, "ÓÎ¥´¥·¥Ã¥¯ Medium", YuGothicM, "Yu Gothic Medium", "¥Ò¥é¥®¥Î½Ç¥´ Pro W3", "Hiragino Kaku Gothic Pro", "¥á¥¤¥ê¥ª", Meiryo, sans-serif;
    letter-spacing: .1em;
    position: relative;
}

/*  mod-entry-btn
--------------------------------------------- */
.mod-entry-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 360px;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn {
        width: 100%;
    }
}

.mod-entry-btn--header {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    width: 154px;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn--header {
        width: 100%;
    }
}

.mod-entry-btn--detail-open {
    display: none;
}

.js-detail-open .mod-entry-btn--detail-open {
    display: block;
}

.mod-entry-btn__link {
    background-color: #E60012;
    border-radius: 50px;
    color: #fff;
    display: block;
    padding-bottom: 24px;
    padding-top: 28px;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn__link {
        border-radius: 13.33333vw;
        padding-bottom: 7.46667vw;
        padding-top: 7.46667vw;
    }
}

@media screen and (min-width: 769px) {
    .ie11 .mod-entry-btn__link {
        padding-bottom: 21px;
        padding-top: 31px;
    }
}

.mod-entry-btn--header .mod-entry-btn__link {
    border-radius: 22px;
    padding-bottom: 10px;
    padding-top: 10px;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn--header .mod-entry-btn__link {
        border-radius: 0;
        padding-bottom: 7.46667vw;
        padding-top: 7.46667vw;
    }
}

@media screen and (min-width: 769px) {
    .ie11 .mod-entry-btn--header .mod-entry-btn__link {
        padding-bottom: 6px;
        padding-top: 14px;
    }
}

.mod-entry-btn__link:after {
    -webkit-transform: translate3d(0, -50%, 0) rotate(-45deg);
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    display: block;
    height: 9px;
    position: absolute;
    right: 33px;
    top: 50%;
    transform: translate3d(0, -50%, 0) rotate(-45deg);
    width: 9px;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn__link:after {
        border-width: 1.06667vw;
        height: 2.66667vw;
        right: 8vw;
        width: 2.66667vw;
    }
}

.mod-entry-btn--header .mod-entry-btn__link:after {
    right: 22px;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn--header .mod-entry-btn__link:after {
        display: none;
    }
}

.mod-entry-btn__link-txt {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    position: relative;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn__link-txt {
        font-size: 4.53333vw;
    }
}

.mod-entry-btn--header .mod-entry-btn__link-txt {
    margin-right: 1.5em;
}

@media screen and (max-width: 768px) {
    .mod-entry-btn--header .mod-entry-btn__link-txt {
        font-size: 4vw;
        margin-right: 0;
    }
}

.mod-entry-btn__link-txt:before {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    background-color: #fff;
    bottom: -7px;
    content: '';
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .ie11 .mod-entry-btn__link-txt:before {
        bottom: -3px;
    }
}

@media screen and (min-width: 769px) {
    .mod-entry-btn__link:hover .mod-entry-btn__link-txt:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

/*  footer-nav-outer
--------------------------------------------- */
.footer-nav-outer {
    background-color: #fff;
}

@media screen and (min-width: 769px) {
    .footer-nav-outer {
        border-top: 1px solid #707070;
        border-bottom: 1px solid #707070;
        border-left: 1px solid #707070;
        border-right: 1px solid #707070;
        }
}

@media screen and (max-width: 768px) {
    .footer-nav-outer {
        margin: 18.66667vw 0 0;
    }
}

/*  footer-nav
--------------------------------------------- */
@media screen and (max-width: 768px) {
    .footer-nav {
        margin: 0 0 1px;
    }
}

.footer-nav__list {

    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.footer-nav__list li {
  border-right: 1px solid #707070;
}

.footer-nav__list li:last-child {
  border-right: none;
}

@media screen and (max-width: 768px) {
    .footer-nav__list {
        border-right: 1px solid #E60012;
        border-top: 1px solid #E60012;
    }
    .footer-nav__list li:nth-child(2) {
      border-right: none;
    }
    .footer-nav__list li:nth-child(3) {
      border-right: none;
    }
}

.footer-nav__item {
    width: 25%;
}

@media screen and (max-width: 768px) {
    .footer-nav__item {
        border-bottom: 1px solid #E60012;
        border-left: 1px solid #E60012;
        width: 50%;
    }
    .li+ li {
  border-left: 1px solid #707070;
}
}

.footer-nav__link {
    display: block;
    font-weight: 700;
    line-height: 1;
}

@media screen and (min-width: 769px) {
    .footer-nav__link {
        -webkit-transition: color .3s;
        color: #2D2D2D;
        padding: 35px;
        text-align: center;
        transition: color .3s;
    }
    .footer-nav__link:hover {
        color: #E60012;
    }
    .footer-nav__link:hover .footer-nav__link-txt:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@media screen and (max-width: 768px) {
    .footer-nav__link {
        color: #E60012;
        font-size: 3.73333vw;
        padding: 3.2vw;
        position: relative;
    }
    .footer-nav__link::after {
        -webkit-transform: translate3d(0, -50%, 0) rotate(-45deg);
        border-bottom: 0.53333vw solid #E60012;
        border-right: 0.53333vw solid #E60012;
        content: '';
        display: block;
        height: 1.33333vw;
        position: absolute;
        right: 2.13333vw;
        top: 50%;
        transform: translate3d(0, -50%, 0) rotate(-45deg);
        width: 1.33333vw;
    }
}

.footer-nav__link--current {
    color: #E60012;
}

@media screen and (max-width: 768px) {
    .footer-nav__link--current {
        background-color: #E60012;
        color: #fff;
    }
    .footer-nav__link--current::after {
        border-color: #fff;
    }
}

@media screen and (min-width: 769px) {
    .footer-nav__link--current__link-txt:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@media screen and (min-width: 769px) {
    .footer-nav__link--current .footer-nav__link-txt:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.footer-nav__link-txt {
    position: relative;
}

.footer-nav__link-txt:before {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    background-color: #E60012;
    bottom: -1px;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .ie11 .footer-nav__link-txt:before {
        bottom: -3px;
    }
}

/*  mod-keyvisual
--------------------------------------------- */
.mod-keyvisual {
    position: relative;
}

.mod-keyvisual__img {
    font-size: 0;
}

.mod-keyvisual__img img {
    width: 100%;
}

.mod-keyvisual__txt-wrap {
    -ms-flex-align: center;

    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    bottom: 43px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    left: 50px;
    position: absolute;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .mod-keyvisual__txt-wrap {
        bottom: 12vw;
        left: 0;
        padding-left: 5.86667vw;
        padding-right: 5.86667vw;
    }
}

.mod-keyvisual__ttl {
    color: #fff;
    font-size: 3.125rem;
    margin-bottom: 0;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .mod-keyvisual__ttl {
        font-size: 13.33333vw;
    }
}

.mod-keyvisual__lead {
    color: #fff;
    font-size: 1rem;
    line-height: 2;
    margin-left: 60px;
}

@media screen and (max-width: 768px) {
    .mod-keyvisual__lead {
        font-size: 3.73333vw;
        letter-spacing: 0.3vw;
        line-height: 1.8;
        margin-left: 0;
        margin-top: 1.33333vw;
    }
}

@media screen and (max-width: 768px) {
    .mod-keyvisual--mbr-top .mod-keyvisual__lead {
        letter-spacing: 0.2vw;
    }
}

/*  mod-recruit
--------------------------------------------- */
.mod-recruit {
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
    background-color: #E60012;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    margin: 52px 0 0;
}

@media screen and (max-width: 768px) {
    .mod-recruit {
        display: block;
        margin: 0;
        padding: 13.33333% 16%;
    }
}

.mod-recruit__tit {
    font-size: 3.125rem;
    letter-spacing: .1em;
    line-height: 1.64;
    margin: 0 94px 0 104px;
}

@media screen and (max-width: 768px) {
    .mod-recruit__tit {
        font-size: 6.4vw;
        line-height: 1.375;
        margin: 0 0 6.66667vw;
        padding: 0 2.13333vw;
    }
}

.mod-recruit__link-area {
    margin: 0;
    padding: 45px 0;
}

@media screen and (max-width: 768px) {
    .mod-recruit__link-area {
        padding: 0;
    }
}

.mod-recruit__link + .mod-recruit__link {
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .mod-recruit__link + .mod-recruit__link {
        margin-top: 6.66667vw;
    }
}

/*  mod-info
--------------------------------------------- */
.mod-info {
    -ms-flex-direction: row-reverse;
    -webkit-box-direction: reverse;

    -webkit-box-orient: horizontal;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
    .mod-info {
        display: block;
        margin-bottom: 0;
        margin-top: 0;
        padding: 6.66667vw 4% 1.33333vw;
    }
}

.mod-info__map-wrapper {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .mod-info__map-wrapper {
        margin: 5.33333vw 0 0;
        width: 100%;
    }
}

.mod-info__contents {
    padding: 60px 50px 0 65px;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .mod-info__contents {
        padding: 0;
        width: 100%;
    }
}

.mod-info__map {
    height: 0;
    padding-top: 90%;
    position: relative;
    width: 100%;
}

.mod-info__map iframe {
    border: 0;
    bottom: 0;
    height: 100% !important;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100% !important;
}

@media screen and (max-width: 768px) {
    .mod-info__map iframe {
        height: 91.73333vw;
    }
}

@media screen and (max-width: 768px) {
    .mod-info__logo {
        width: 33.6vw;
    }
}

.mod-info__address {
    color: #333;
    display: block;
    letter-spacing: normal;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .mod-info__address {
        font-size: 4.26667vw;
        letter-spacing: 0;
        margin-top: 0.8vw;
    }
}

.mod-info__right-btm {
    -ms-flex-pack: start;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;

    -webkit-box-pack: start;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    justify-content: space-between;
    margin: 5px 0 0;
}

@media screen and (max-width: 768px) {
    .mod-info__right-btm {
        margin-top: 1.33333vw;
    }
}

.mod-info__tel {
    width: calc(100% - 52.04301%);
}

@media screen and (max-width: 900px) {
    .mod-info__tel {
        width: 100%;
    }
}

@media screen and (min-width: 769px) {
    .ie11 .mod-info__tel {
        margin-top: 5px;
    }
}

.mod-info__tel-link {
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
    .mod-info__tel-link {
        font-size: 5.86667vw;
        letter-spacing: normal;
    }
}

.mod-info__btn {
    text-align: center;
    width: 52.04301%;
}

@media screen and (max-width: 768px) {
    .mod-info__btn {
        margin-left: 0;
        margin-top: 2.66667vw;
        text-align: left;
        width: auto;
    }
}

.mod-info__btn-link {
    -webkit-transition: opacity 300ms;
    background-color: #E96678;
    color: #fff;
    display: block;
    padding-bottom: 8px;
    padding-top: 8px;
    position: relative;
    transition: opacity 300ms;
}

.mod-info__btn-link:hover {
    opacity: 0.8;
}

@media screen and (min-width: 769px) {
    .ie11 .mod-info__btn-link {
        padding-bottom: 6px;
        padding-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .mod-info__btn-link {
        padding-bottom: 2.13333vw;
        padding-top: 2.13333vw;
    }
}

@media screen and (min-width: 769px) {
    .mod-info__btn-link:hover .mod-info__btn-arrow {
        right: -28px;
    }
}

.mod-info__btn-arrow {
    -webkit-transform: translateY(-50%);
    -webkit-transition: right 0.3s;
    background-color: #333;
    display: block;
    height: 2px;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
    width: 18.18182%;
}

@media screen and (max-width: 768px) {
    .mod-info__btn-arrow {
        display: none;
    }
}

.mod-info__btn-arrow:after {
    border-color: transparent transparent transparent #333;
    border-style: solid;
    border-width: 7px 0 0 5px;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    right: -2px;
}

.mod-info__details-link {
    color: #3196D9;
}

@media screen and (min-width: 769px) {
    .mod-info__details-link:hover {
        text-decoration: underline;
    }
}

.mod-info__tbl {
    border-bottom: 2px solid #E60012;
    border-top: 2px solid #E60012;
    color: #333;
    display: block;
    letter-spacing: normal;
    margin-top: 17px;
    padding-bottom: 17px;
}

@media screen and (max-width: 768px) {
    .mod-info__tbl {
        margin-top: 2.4vw;
        padding-bottom: 5.33333vw;
    }
}

.mod-info__tbl tr {
    display: block;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .mod-info__tbl tr {
        margin-top: 4.8vw;
    }
}

@media screen and (max-width: 768px) {
    .mod-info__tbl th, .mod-info__tbl td {
        font-size: 4.26667vw;
    }
}

.mod-info__tbl th {
    -webkit-box-sizing: border-box;
    border-right: 1px solid #707070;
    box-sizing: border-box;
    font-weight: normal;
    padding-top: 5px;
    text-align: left;
    vertical-align: top;
    width: 90px;
}

@media screen and (max-width: 768px) {
    .mod-info__tbl th {
        font-size: 3.73333vw;
        padding: 1.33333vw 0 0 2.4vw;
        width: 26.66667vw;
    }
}

.mod-info__tbl td {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.35;
    padding-bottom: 10px;
    padding-left: 12px;
    padding-top: 5px;
    width: calc(100% - 90px);
}

@media screen and (max-width: 768px) {
    .mod-info__tbl td {
        font-size: 3.73333vw;
        line-height: 1.5;
        padding: 1.33333vw 0 2.66667vw 3.2vw;
    }
}

/*  mod-info-link
--------------------------------------------- */
.mod-info-link {
    background-color: #fff;
}

@media screen and (min-width: 769px) {
    .mod-info-link {
        border-top: 1px solid #707070;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 768px) {
    .mod-info-link {
        padding: 0 4%;
    }
}

.mod-info-link__list {
    margin: 0;
}

@media screen and (min-width: 769px) {
    .mod-info-link__list {

        -ms-flex-wrap: wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
    }
}

.mod-info-link__item {
    border-bottom: 1px solid #D5D5D5;
}

@media screen and (min-width: 769px) {
    .mod-info-link__item {
        border-right: 1px solid #D5D5D5;
        width: 25%;
    }
}

.mod-info-link__item:nth-of-type(4n) {
    border-right: 0;
}

/* @media screen and (min-width: 769px) {
    .mod-info-link__item:nth-last-of-type(-n + 2) {
        border-bottom: 0;
    }
} */

.mod-info-link__link {
    -ms-flex-align: center;

    -webkit-box-align: center;
    -webkit-transition: opacity 300ms;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    padding: 10px 7px;
    transition: opacity 300ms;
}

.mod-info-link__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .mod-info-link__link {
        letter-spacing: normal;
        padding: 5.33333vw;
    }
}

.mod-info-link__img {
    margin-right: 10px;
    width: 40px;
}

@media screen and (max-width: 768px) {
    .mod-info-link__img {
        margin-right: 2.66667vw;
        width: 12.53333vw;
    }
}

.mod-info-link__img--border {
    border: 1px solid #D5D5D5;
}

.mod-info-link__img img {
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .mod-info-link__img img {
        width: 100%;
    }
}

.mod-info-link__txt {
    color: #2D2D2D;
    font-size: 0.75rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .mod-info-link__txt {
        font-size: 0.875rem;
    }
}

/*  mod-section
--------------------------------------------- */
.mod-section__header {
    margin: 0 0 40px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .mod-section__header {
        height: 11.2vw;
        margin: 0 0 5.33333vw;
    }
}

@media screen and (max-width: 768px) {
    .mod-section__header--2line {
        height: 15.46667vw;
    }
}

.mod-section__tit {
    -webkit-transform: translate(-50%, -50%);
    color: #E60012;
    font-size: 33px;
    left: 50%;
    letter-spacing: .1em;
    line-height: 1.212;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .mod-section__tit {
        font-size: 5.33333vw;
    }
}

.ie11 .mod-section__tit {
    top: 60%;
}

.mod-section__sub-tit {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .mod-section__sub-tit {
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mod-section__sub-tit img {
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mod-section__body--interview {
        background-color: #2E2E2E;
        padding: 10.66667% 18.66667%;
    }
}

/*  pagetop
--------------------------------------------- */
.pagetop {
    position: relative;
}

@media screen and (min-width: 769px) {
    .pagetop {
        display: none;
    }
}

.pagetop__btn {
    bottom: 10px;
    display: none;
    position: fixed;
    right: 10px;
    z-index: 999;
}

.pagetop__btn.is-absolute {
    position: absolute;
}

/* ==========================================================
*
*   page
*
========================================================== */
/* ---------------------------------------------
*   Index Page
--------------------------------------------- */
/*  index-keyvisual
--------------------------------------------- */
.index-keyvisual {
    margin: 0 0 144px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .index-keyvisual {
        margin: 0 0 17.6vw;
    }
}

.index-keyvisual__imgs {
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

/* -- index-keyvisual-slider-wrapper -- */
.index-keyvisual-slider-wrapper {
    position: relative;
}

/* -- index-keyvisual-slider -- */
.index-keyvisual-slider {
    height: 608px;
    margin: 0;
    overflow: hidden;
    position: relative;
    width: 1160px;
}

@media screen and (max-width: 768px) {
    .index-keyvisual-slider {
        height: 109.33333vw;
        width: 100%;
    }
}

.index-keyvisual-slider__item {
    -webkit-animation-duration: 16s;
    -webkit-animation-iteration-count: infinite;
    animation-duration: 16s;
    animation-iteration-count: infinite;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.index-keyvisual-slider__item--1 {
    -webkit-animation-delay: 0s;
    -webkit-animation-name: slider-zoomin;
    animation-delay: 0s;
    animation-name: slider-zoomin;
    background-image: url(https://career-review.s3.amazonaws.com/images/official/yonemorihp/img_keyvisual_index_1.jpg);
}

.index-keyvisual-slider__item--2 {
    -webkit-animation-delay: 8s;
    -webkit-animation-name: slider-zoomin;
    animation-delay: 8s;
    animation-name: slider-zoomin;
    background-image: url(https://career-review.s3.amazonaws.com/images/official/yonemorihp/img_keyvisual_index_2.jpg);
    opacity: 0;
}

@-webkit-keyframes slider-zoomin {
    0% {
        -webkit-transform: scale(1);
        opacity: 0;
        transform: scale(1);
    }
    20.83% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    65.83% {
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1.3);
        opacity: 0;
        transform: scale(1.3);
    }
}

@keyframes slider-zoomin {
    0% {
        -webkit-transform: scale(1);
        opacity: 0;
        transform: scale(1);
    }
    20.83% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    65.83% {
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1.3);
        opacity: 0;
        transform: scale(1.3);
    }
}

/* -- index-keyvisual-tit -- */
.index-keyvisual-tit {
    -webkit-transform: translateY(-50%);
    left: 78px;
    margin: 0;
    position: absolute;
    top: 312px;
    transform: translateY(-50%);
    width: 522px;
}

@media screen and (max-width: 768px) {
    .index-keyvisual-tit {
        -webkit-transform: none;
        bottom: 16vw;
        left: 4.26667vw;
        top: auto;
        transform: none;
        width: 69.33333%;
    }
    .index-keyvisual-tit img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .index-keyvisual-tit {
        -webkit-transform: translateY(-50%);
        top: 50%;
        transform: translateY(-50%);
    }
}

/*  message
--------------------------------------------- */
.message {
    -webkit-transform: translateX(-50%);
    background-color: #E60012;
    border-radius: 13px;
    bottom: -40px;
    color: #fff;
    height: 535px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 486px;
}

@media screen and (max-width: 768px) {
    .message {
        border-radius: 3.46667vw;
        bottom: -5.86667vw;
        height: auto;
        padding: 8vw 5.33333vw 10.66667vw;
        width: 76.8%;
    }
    .iphone .message {
        padding: 8vw 4.26667vw 10.66667vw;
    }
}

.message__tit {
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: normal;
    margin: 52px 0 24px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .message__tit {
        font-size: 4vw;
        margin: 0 0 5.33333vw;
    }
}

.message__lead {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0 0 21px;
    padding: 0 0 0 35px;
}

@media screen and (min-width: 769px) {
    .message__lead {
        letter-spacing: 0.09em;
        line-height: 1.7;
    }
}

@media screen and (max-width: 768px) {
    .message__lead {
        font-size: 6.13333vw;
        line-height: 1.4;
        margin: 0 0 2.66667vw;
        padding: 0;
    }
}

.message__txt {
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
    padding: 0 0 0 34px;
}

@media screen and (max-width: 768px) {
    .message__txt {
        font-size: 3.2vw;
        line-height: 1.55;
        padding: 0;
    }
}

/*  feature-cassette
--------------------------------------------- */
.feature-cassette {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .feature-cassette {
        margin: 17.33333vw 0 0;
    }
}

.feature-cassette--1 {
    margin: 46px 0 0;
}

@media screen and (max-width: 768px) {
    .feature-cassette--1 {
        margin: 10.66667vw 0 0;
    }
}

.feature-cassette--2 {
    margin: 10px 0 0;
}

@media screen and (max-width: 768px) {
    .feature-cassette--2 {
        margin: 17.33333vw 0 0;
    }
}

.feature-cassette--3 {
    margin: 60px 0 0;
}

@media screen and (max-width: 768px) {
    .feature-cassette--3 {
        margin: 17.33333vw 0 0;
    }
}

.feature-cassette:after {
    background: url(https://career-review.s3.amazonaws.com/images/official/yonemorihp/line.png) 0 0 repeat-y;
    background-size: 100%;
    content: "";
    display: block;
    height: 417px;
    position: absolute;
    top: 99%;
    width: 33px;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .feature-cassette:after {
        height: 125.33333vw;
        opacity: .5;
        width: 5.33333vw;
    }
}

.feature-cassette--1:after {
    left: 255px;
}

@media screen and (max-width: 768px) {
    .feature-cassette--1:after {
        left: 22.4vw;
    }
}

.feature-cassette--2:after {
    right: 230px;
}

@media screen and (max-width: 768px) {
    .feature-cassette--2:after {
        right: 20.26667vw;
    }
}

.feature-cassette--3:after {
    display: none;
}

.feature-cassette__header {
    padding: 0 0 0 35px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .feature-cassette__header {
        padding: 0 4%;
    }
}

.feature-cassette__tit {
    bottom: 10%;
    font-size: 34px;
    left: 35px;
    letter-spacing: .1em;
    line-height: 1.6;
    margin: 0;
    position: absolute;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .feature-cassette__tit {
        bottom: -.2em;
        font-size: 5.33333vw;
        left: 4%;
    }
}

@media screen and (min-width: 769px) {
    .feature-cassette__tit--2 {
        left: auto;
        right: 40px;
    }
}

@media screen and (min-width: 769px) {
    .feature-cassette__body {
        padding: 0 0 0 35px;
    }
}

.feature-cassette__txt {
    font-size: 16px;
    line-height: 1.875;
    margin: 30px 0;
    position: absolute;
    width: 474px;
}

@media screen and (max-width: 768px) {
    .feature-cassette__txt {
        font-size: 3.73333vw;
        line-height: 2.1;
        margin: 4.53333vw 0 6.13333vw;
        padding: 0 4%;
        position: static;
        width: 100%;
    }
}

@media screen and (min-width: 769px) {
    .feature-cassette__txt--2 {
        right: 15px;
    }
}

@media screen and (max-width: 768px) {
    .feature-cassette__img img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .feature-cassette__icon {
        height: 25.33333vw;
    }
    .feature-cassette__icon img {
        height: 100%;
    }
}

@media screen and (min-width: 769px) {
    .feature-cassette__icon--2 {
        padding: 0 15px;
        text-align: right;
    }
}

/*  work-style
--------------------------------------------- */
.work-style {
    margin: 120px 0 100px;
}

@media screen and (max-width: 768px) {
    .work-style {
        margin: 21.33333vw 0 17.33333vw;
    }
}

@media screen and (max-width: 768px) {
    .work-style img {
        width: 100%;
    }
}

/*  interview
--------------------------------------------- */
.interview-outer {
    background-color: #2E2E2E;
    color: #fff;
    padding: 66px 70px 70px;
    width: 1160px;
}

@media screen and (max-width: 768px) {
    .interview-outer {
        padding: 0;
        width: 100%;
    }
}

.interview-slider {
    -ms-flex-pack: justify;

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

.interview {
    width: 455px;
}

@media screen and (max-width: 768px) {
    .interview {
        width: 100%;
    }
}

.interview__img {
    margin: 0 0 30px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interview__img {
        margin: 0 0 2.66667vw;
    }
}

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

.interview__header {
    text-align: center;
}

.interview__tit {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.615;
    margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
    .interview__tit {
        font-size: 4.8vw;
        line-height: 1.3;
        margin: 0 0 2.66667vw;
    }
}

.interview__prof {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
    .interview__prof {
        font-size: 3.2vw;
        margin: 0 0 2.66667vw;
    }
}

.interview__txt {
    font-size: 0.9375rem;
    line-height: 2;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .interview__txt {
        font-size: 3.73333vw;
        line-height: 2.2;
    }
}

.interview-button {
    margin: 56px 0 0 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interview-button {
        margin: 9.33333vw 0 0 0;
    }
}

.swiper-button-prev, .swiper-button-next {
    background-position: center center;
    background-size: 100%;
    height: 13.33333vw;
    margin-top: -6.66667vw;
    outline: none;
    top: 30.66667vw;
    width: 13.33333vw;
}

@media screen and (min-width: 769px) {
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
}

.swiper-button-next {
    background-image: url(https://career-review.s3.amazonaws.com/images/official/yonemorihp/icon_right.png);
    left: auto;
    right: 12%;
}

.swiper-button-prev {
    background-image: url(https://career-review.s3.amazonaws.com/images/official/yonemorihp/icon_left.png);
    left: 12%;
    right: auto;
}

/* ---------------------------------------------
*   Culture Page
--------------------------------------------- */
/*  culture-wrapper
--------------------------------------------- */
.culture-wrapper {
    background-color: #E60012;
    margin: 0 0 100px;
    padding: 90px 52px 20px;
}

@media screen and (max-width: 768px) {
    .culture-wrapper {
        margin: 0 0 20vw;
        padding: 14.66667% 9.06667%;
    }
}

/*  sec-culture
--------------------------------------------- */
.sec-culture {
    border-bottom: 2px solid #fff;
    margin: 0 0 82px;
    padding: 0 0 82px;
}

@media screen and (max-width: 768px) {
    .sec-culture {
        border-width: 1px;
        margin: 0 0 8vw;
        padding: 0 0 8vw;
    }
}

.sec-culture:last-of-type {
    border: 0;
    margin: 0;
}

.sec-culture__container:after {
    clear: both;
    content: "";
    display: block;
}

@media screen and (min-width: 769px) {
    .sec-culture__header {
        float: left;
        margin: -.5em 0 15px;
        padding: 0 20px 0 0;
        width: calc(100% - 398px);
    }
}

@media screen and (max-width: 768px) {
    .sec-culture__header {
        margin: 0 0 7.46667vw;
    }
}

.sec-culture__tit {
    color: #fff;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .sec-culture__tit {
        font-size: 5.33333vw;
    }
}

@media screen and (min-width: 769px) {
    .sec-culture__body {
        clear: left;
        float: left;
        padding: 0 20px 0 0;
        width: calc(100% - 398px);
    }
}

.sec-culture__txt {
    color: #fff;
    line-height: 1.875;
}

@media screen and (max-width: 768px) {
    .sec-culture__txt {
        font-size: 3.73333vw;
        line-height: 2.2;
        margin: 6.66667vw 0;
    }
}

@media screen and (min-width: 769px) {
    .sec-culture__img-area {
        float: right;
    }
}

.sec-culture__img {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    width: 398px;
}

@media screen and (max-width: 768px) {
    .sec-culture__img {
        margin: 0 auto;
        width: 67.73333vw;
    }
}

.sec-culture__img + .sec-culture__img {
    margin-top: 25px;
}

@media screen and (max-width: 768px) {
    .sec-culture__img img {
        width: 100%;
    }
}

.sec-culture__btn {
    margin: 30px 0 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .sec-culture__btn {
        margin: 8vw 0 0;
    }
}

.sec-culture__btn + .sec-culture__btn {
    margin: 13px 0 0;
}

@media screen and (max-width: 768px) {
    .sec-culture__btn + .sec-culture__btn {
        margin: 5.33333vw 0 0;
    }
}

/*  voice-tab
--------------------------------------------- */
@media screen and (min-width: 769px) {
    .voice-tab {
        margin: 95px 0 5px;
        padding: 0 35px;
    }
}

@media screen and (max-width: 768px) {
    .voice-tab {
        padding: 0 3.2%;
    }
}

.voice-tab__list {
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.voice-tab__item {
    width: 356px;
}

@media screen and (max-width: 768px) {
    .voice-tab__item {
        width: 31.33903%;
    }
}

.voice-tab__trigger {
    -moz-appearance: none;
    -ms-flex-align: center;
    -ms-flex-pack: center;

    -webkit-appearance: none;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -webkit-box-shadow: none;
    -webkit-transition: background-color .3s, color .3s;
    align-items: center;
    appearance: none;
    background: none;
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #2D2D2D;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.125rem;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    margin: 0;
    outline: none;
    padding: 0;
    text-align: center;
    text-indent: 0.01px;
    text-overflow: '';
    transition: background-color .3s, color .3s;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .voice-tab__trigger {
        font-size: 3.2vw;
        height: 17.6vw;
        letter-spacing: .05em;
    }
}

.ie11 .voice-tab__trigger {
    padding: .5em 0 0;
}

.voice-tab__trigger:hover, .voice-tab__trigger.is-current {
    background-color: #E60012;
    color: #fff;
}

/*  voice-block
--------------------------------------------- */
.voice-block {
    padding: 0 35px 100px;
}

@media screen and (max-width: 768px) {
    .voice-block {
        padding: 0 3.2% 18.66667%;
    }
}

.voice-block__item {
    background: repeating-linear-gradient(-45deg, #fcfcfc, #fcfcfc 3px, #fff 0, #fff 10px) right 50% bottom 0 repeat;
    display: none;
    padding: 100px 110px 100px 85px;
}

@media screen and (max-width: 768px) {
    .voice-block__item {
        padding: 10.66667vw 2.66667vw;
    }
}

.voice-block__item.is-current {
    display: block;
}

/*  voice-cassette
--------------------------------------------- */
@media screen and (max-width: 768px) {
    .voice-cassette {
        -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid #C7C7C7;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }
}

.voice-cassette + .voice-cassette {
    margin: 60px 0 0;
}

@media screen and (max-width: 768px) {
    .voice-cassette + .voice-cassette {
        margin: 10.66667vw 0 0;
    }
}

.voice-cassette__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 768px) {
    .voice-cassette__container {

        -ms-flex-wrap: wrap;
        background-color: #fff;
        flex-wrap: wrap;
        padding: 3.2vw 2.13333vw 0;
    }
}

.voice-cassette__header {
    text-align: center;
    width: 176px;
}

@media screen and (max-width: 768px) {
    .voice-cassette__header {
        width: 23.1003%;
    }
}

.voice-cassette__prof {
    font-size: 0.9375rem;
    line-height: 2;
    margin: 10px 0 0;
}

@media screen and (max-width: 768px) {
    .voice-cassette__prof {
        font-size: 3.73333vw;
        font-weight: 700;
        margin: 0 0 2.66667vw;
    }
}

.voice-cassette__body {
    padding: 0 0 0 50px;
    width: calc(100% - 176px);
}

@media screen and (max-width: 768px) {
    .voice-cassette__body {
        padding: 0 0 0 3.96825%;
        width: 76.59574%;
    }
}

.voice-cassette__lead {
    font-size: 1.125rem;
    font-weight: 700;
    margin: -5px 0 20px;
}

@media screen and (max-width: 768px) {
    .voice-cassette__lead {
        font-size: 4.26667vw;
        margin: -0.2em 0 2.66667vw;
        min-height: 12.8vw;
    }
}

.ie11 .voice-cassette__lead {
    margin: 0 0 20px;
}

.voice-cassette__txt {
    font-size: 0.9375rem;
    line-height: 2;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .voice-cassette__txt {
        display: none;
        font-size: 3.73333vw;
        line-height: 1.8;
        padding: 0 0 5.33333vw;
    }
}

@media screen and (max-width: 768px) {
    .voice-cassette__trigger {
        -moz-appearance: none;
        -ms-flex-align: center;
        -ms-flex-pack: center;

        -webkit-appearance: none;
        -webkit-box-align: center;
        -webkit-box-pack: center;
        -webkit-box-shadow: none;
        align-items: center;
        appearance: none;
        background: none;
        background-color: #C7C7C7;
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 6.66667vw;
        justify-content: center;
        margin: 0;
        outline: none;
        padding: 0;
        text-indent: 0.01px;
        text-overflow: '';
        width: 100%;
    }
}

.voice-cassette__trigger-arw {
    display: inline-block;
    width: 3.46667vw;
}

.is-open .voice-cassette__trigger-arw {
    -webkit-transform: rotateZ(180deg);
    -webkit-transform-origin: center;
    margin-top: 1%;
    transform: rotateZ(180deg);
    transform-origin: center;
}

.voice-cassette__trigger-arw img {
    vertical-align: middle;
    width: 100%;
}

/*  support-wrapper
--------------------------------------------- */
.support-wrapper {
    -ms-flex-pack: justify;

    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 105px 0 90px;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .support-wrapper {
        margin: 13.33333vw 0;
        padding: 0 8.53333% 13.33333vw;
    }
}

.support-wrapper:before {
    background-color: #2E2E2E;
    bottom: 75px;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    top: 75px;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .support-wrapper:before {
        bottom: 20vw;
        top: 6.66667vw;
    }
}

.support-wrapper .swiper-pagination-fraction, .support-wrapper .swiper-pagination-custom, .support-wrapper .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0;
}

.support-wrapper .swiper-pagination-bullet {
    background-color: #C1C1C1;
    height: 16px;
    opacity: 1;
    width: 16px;
}

.support-wrapper .swiper-pagination-bullet-active {
    background-color: #2E2E2E;
}

.support-wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
    outline: none;
}

.support-wrapper .swiper-button-prev, .support-wrapper .swiper-button-next {
    top: 39.46667vw;
}

.support-wrapper .swiper-button-next {
    right: 1.86667vw;
}

.support-wrapper .swiper-button-prev {
    left: 1.86667vw;
}

/*  support-slider
--------------------------------------------- */
@media screen and (min-width: 769px) {
    .support-slider {
        -ms-flex-pack: justify;

        -ms-flex-wrap: wrap;
        -webkit-box-pack: justify;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

/*  support-cassette
--------------------------------------------- */
.support-cassette {
    background-color: #fff;
    border-radius: 10px;
    width: 325px;
}

@media screen and (min-width: 769px) {
    .support-cassette {
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    .support-cassette {
        border-radius: 2.66667vw;
        width: 100%;
    }
}

@media screen and (min-width: 769px) {
    .support-cassette:nth-of-type(-n+3) {
        margin: 0 0 40px;
    }
}

.support-cassette__container {
    padding: 60px 30px 50px;
}

@media screen and (max-width: 768px) {
    .support-cassette__container {
        padding: 9.33333vw 10.66667vw 17.33333vw;
    }
}

.support-cassette__img {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .support-cassette__img {
        display: none;
    }
}

.support-cassette__tit {
    color: #E60012;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .support-cassette__tit {
        font-size: 4.26667vw;
        margin: 0 0 2.66667vw;
    }
}

.support-cassette__txt {
    line-height: 1.8;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .support-cassette__txt {
        font-size: 3.73333vw;
    }
}

/*  area-cassette-wrapper
--------------------------------------------- */
.area-cassette-wrapper {
    -ms-flex-pack: justify;

    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 108px 0 150px;
    padding: 0 50px;
}

@media screen and (max-width: 768px) {
    .area-cassette-wrapper {
        display: block;
        margin: 10.66667vw 0 0;
        padding: 0 3.2%;
    }
}

/*  area-cassette
--------------------------------------------- */
.area-cassette {
    background-color: #fff;
    width: 325px;
}

@media screen and (max-width: 768px) {
    .area-cassette {
        margin: 0 0 8vw;
        width: 100%;
    }
}

.area-cassette__img {
    margin: 0 0 25px;
}

@media screen and (max-width: 768px) {
    .area-cassette__img {
        margin: 0 0 8vw;
    }
}

@media screen and (max-width: 768px) {
    .area-cassette__img img {
        width: 100%;
    }
}

.area-cassette__header {
    margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
    .area-cassette__header {
        margin: 0 0 6.66667vw;
    }
}

.area-cassette__tit {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .area-cassette__tit {
        font-size: 4.8vw;
    }
}

.area-cassette__body {
    padding: 0 20px 40px;
}

@media screen and (max-width: 768px) {
    .area-cassette__body {
        padding: 0 5.33333vw 8vw;
    }
}

.area-cassette__txt {
    line-height: 1.7;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .area-cassette__txt {
        font-size: 4.26667vw;
    }
}

.area-cassette__sub-txt {
    font-size: 0.75rem;
    margin: 25px 0 0;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .area-cassette__sub-txt {
        font-size: 3.2vw;
        margin: 8vw 0 0;
    }
}

/* ---------------------------------------------
*   Recruitment Page
--------------------------------------------- */
/*  official-inner
--------------------------------------------- */
.official-inner {
    margin-top: 50px;
}

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

.official-inner h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 18px;
    margin-top: 0;
    padding-top: 5px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .official-inner h2 {
        font-size: 6.4vw;
    }
}

@media screen and (min-width: 769px) {
    .ie11 .official-inner h2 {
        margin-bottom: 14px;
        padding-top: 9px;
    }
}

.official-inner hr {
    border-style: solid;
    border-width: 2px;
    margin: 0 0 25px;
}

/*  hospitals-data
--------------------------------------------- */
.hospitals-data {
    display: none;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .hospitals-data {
        margin-bottom: 60px;
    }
}

.hospitals-data.current {
    display: block;
}

.hospitals-data__body {
    background-color: #fff;
    padding: 24px;
}

/*  inner-topbottom-adjust
--------------------------------------------- */
.inner-topbottom-adjust {
    padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .inner-topbottom-adjust {
        padding: 24px 5.86667% 16vw;
    }
}

/*  recruitments-textandtile-parts
--------------------------------------------- */
.recruitments-textandtile-parts .recruitments-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    padding-left: 12px;
}

.recruitments-textandtile-parts .recruitments-text {
    font-size: 1rem;
}

@media screen and (min-width: 769px) {
    .recruitments-textandtile-parts .recruitments-text__link:hover {
        text-decoration: underline;
    }
}

.recruitments-textandtile-parts .textcolor-yonemorihp {
    color: #E60012;
}

.recruitments-textandtile-parts .borderleft-h3-yonemorihp {
    border-left: 6px solid #E60012;
    line-height: 1;
}

/*  recruitments-button-parts
--------------------------------------------- */
.recruitments-button-parts {
    -webkit-box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
    margin: 0 auto 36px;
    padding: 40px 49px;
}

@media screen and (max-width: 768px) {
    .recruitments-button-parts {
        background-color: transparent;
        border: none;
        padding: 0;
    }
}

.recruitments-button-parts ul {
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;

    -webkit-box-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 0;
    margin-top: 0;
    overflow: hidden;
}

.recruitments-button-parts li {
    margin-right: 20px;
    text-align: center;
    width: 250px;
}

@media screen and (min-width: 769px) {
    .recruitments-button-parts li:nth-of-type(4n) {
        margin-right: 0;
    }
    .recruitments-button-parts li:nth-of-type(n+5) {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .recruitments-button-parts li {
        margin-right: 0;
        width: 100%;
    }
    .recruitments-button-parts li:nth-of-type(n+2) {
        margin-top: 5.33333vw;
    }
}

.recruitments-button-parts .recruitments-div-button {
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;

    -webkit-box-pack: center;
    -webkit-transition: 0.3s;
    align-items: center;
    background-color: #E60012;
    border-radius: 4px;
    color: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 12px 0;
    transition: 0.3s;
    width: 100%;
}

@media screen and (min-width: 769px) {
    .recruitments-button-parts .recruitments-div-button:hover {
        opacity: 0.7;
        text-decoration: underline;
    }
    .ie11 .recruitments-button-parts .recruitments-div-button {
        padding-bottom: 9px;
        padding-top: 15px;
    }
}

/*  bottom-adjust
--------------------------------------------- */
/*  worktable-wrap
--------------------------------------------- */
.worktable-wrap {
    height: 100%;
    margin-bottom: 16px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .worktable-wrap {
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        padding-bottom: 20px;
    }
}

/*  worktable-sp-note
--------------------------------------------- */
.worktable-sp-note {
    display: none;
}

@media screen and (max-width: 768px) {
    .worktable-sp-note {
        display: block;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
}

/*  worktable-detail
--------------------------------------------- */
.worktable-detail {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .worktable-detail {
        width: 768px;
    }
}

.worktable-detail .table-bgcoloradd {
    background: #f5f5f5;
}

.worktable-detail .table-bgcoloradd {
    background: #f5f5f5;
}

.worktable-detail th, .worktable-detail td {
    padding-bottom: 12px;
    padding-top: 12px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .ie11 .worktable-detail th, .ie11 .worktable-detail td {
        padding-bottom: 9px;
        padding-top: 15px;
    }
}

.worktable-detail th {
    width: calc(100% / 8);
}

.worktable-detail .breakborder-top {
    border-top: 1px solid #333;
}

.worktable-detail .breakborder-left {
    border-left: 1px solid #333;
}

.worktable-detail .breakborder-right {
    border-right: 1px solid #333;
}

.worktable-detail .breakborder-bottom {
    border-bottom: 1px solid #333;
}

/*  table-pattern2
--------------------------------------------- */
.table-pattern2 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.table-pattern2 tr {
    border-bottom: 2px dotted #E60012;
    display: block;
}

.table-pattern2 th, .table-pattern2 td {
    padding: 12px 0 12px 36px;
}

@media screen and (min-width: 769px) {
    .ie11 .table-pattern2 th, .ie11 .table-pattern2 td {
        padding-bottom: 9px;
        padding-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .table-pattern2 th, .table-pattern2 td {
        padding: 10px 10px 10px 20px;
    }
}

.table-pattern2 th {
    text-align: left;
    width: 140px;
}

@media screen and (max-width: 768px) {
    .table-pattern2 th {
        display: block;
        padding-bottom: 0;
        width: 100%;
    }
}

.table-pattern2 th:before {
    background-color: #E60012;
    border-radius: 100%;
    color: #BFBFBF;
    content: '';
    display: inline-block;
    height: 10px;
    margin-left: -15px;
    margin-right: 5px;
    position: relative;
    width: 10px;
}

.table-pattern2 td {
    width: calc(100% - 140px);
}

@media screen and (max-width: 768px) {
    .table-pattern2 td {
        display: block;
        width: 100%;
    }
}

.table-pattern2__list {
    margin-bottom: 0;
    margin-top: 0;
}

/*  tableonly-link-color
--------------------------------------------- */
.tableonly-link-color {
    color: #E60012;
}

/*  tableonly-table
--------------------------------------------- */
.tableonly-table {
    border: 1px solid #DEDEDE;
    width: 100%;
}

.tableonly-table .tableonly-thcolor {
    border-bottom: 1px solid #DEDEDE;
}

.tableonly-table tr {
    border: 1px solid #DEDEDE;
}

.tableonly-table th, .tableonly-table td {
    padding: 12px;
}

@media screen and (min-width: 769px) {
    .tableonly-table th, .tableonly-table td {
        padding-bottom: 9px;
        padding-top: 15px;
    }
}

.tableonly-table th {
    width: 200px;
}

@media screen and (max-width: 768px) {
    .tableonly-table th {
        display: block;
        width: 100%;
    }
}

.tableonly-table td {
    background-color: #fff;
    width: calc(100% - 200px);
}

@media screen and (max-width: 768px) {
    .tableonly-table td {
        display: block;
        width: 100%;
    }
}

.tableonly-table ul {
    margin-bottom: 0;
    margin-top: 0;
}

.tableonly-table li {
    padding-left: 1em;
    text-indent: -1em;
}

/*  recruitments-comment
--------------------------------------------- */
.recruitments-comment {
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;

    -webkit-box-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

@media screen and (max-width: 768px) {
    .recruitments-comment {
        display: block;
        padding-top: 10px;
    }
}

.recruitments-comment__left {
    width: 100px;
}

@media screen and (max-width: 768px) {
    .recruitments-comment__left {
        margin-left: auto;
        margin-right: auto;
        width: 32vw;
    }
}

.recruitments-comment__img {
    font-size: 0;
    padding-top: 5px;
}

.recruitments-comment__img img {
    width: 100%;
}

.recruitments-comment__caption {
    display: block;
    line-height: 1.7;
    margin-top: 9px;
    text-align: center;
}

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

.recruitments-comment__txt-wrap {
    line-height: 1.7;
    padding-left: 15px;
    width: calc(100% - 100px);
}

@media screen and (max-width: 768px) {
    .recruitments-comment__txt-wrap {
        padding-left: 0;
        padding-top: 4vw;
        width: 100%;
    }
}

.recruitments-comment__txt {
    margin-bottom: 0;
    margin-top: 0;
}

/* ==========================================================
*
*   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: 768px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 1.33333vw !important;
    }
    .mgt-sp--10 {
        margin-top: 2.66667vw !important;
    }
    .mgt-sp--15 {
        margin-top: 4vw !important;
    }
    .mgt-sp--20 {
        margin-top: 5.33333vw !important;
    }
    .mgt-sp--25 {
        margin-top: 6.66667vw !important;
    }
    .mgt-sp--30 {
        margin-top: 8vw !important;
    }
    .mgt-sp--35 {
        margin-top: 9.33333vw !important;
    }
    .mgt-sp--40 {
        margin-top: 10.66667vw !important;
    }
    .mgt-sp--45 {
        margin-top: 12vw !important;
    }
    .mgt-sp--50 {
        margin-top: 13.33333vw !important;
    }
    .mgt-sp--55 {
        margin-top: 14.66667vw !important;
    }
    .mgt-sp--60 {
        margin-top: 16vw !important;
    }
    .mgt-sp--65 {
        margin-top: 17.33333vw !important;
    }
    .mgt-sp--70 {
        margin-top: 18.66667vw !important;
    }
    .mgt-sp--75 {
        margin-top: 20vw !important;
    }
    .mgt-sp--80 {
        margin-top: 21.33333vw !important;
    }
    .mgt-sp--85 {
        margin-top: 22.66667vw !important;
    }
    .mgt-sp--90 {
        margin-top: 24vw !important;
    }
    .mgt-sp--95 {
        margin-top: 25.33333vw !important;
    }
    .mgt-sp--100 {
        margin-top: 26.66667vw !important;
    }
    .mgt-sp--105 {
        margin-top: 28vw !important;
    }
    .mgt-sp--110 {
        margin-top: 29.33333vw !important;
    }
    .mgt-sp--115 {
        margin-top: 30.66667vw !important;
    }
    .mgt-sp--120 {
        margin-top: 32vw !important;
    }
    .mgt-sp--125 {
        margin-top: 33.33333vw !important;
    }
    .mgt-sp--130 {
        margin-top: 34.66667vw !important;
    }
    .mgt-sp--135 {
        margin-top: 36vw !important;
    }
    .mgt-sp--140 {
        margin-top: 37.33333vw !important;
    }
    .mgt-sp--145 {
        margin-top: 38.66667vw !important;
    }
    .mgt-sp--150 {
        margin-top: 40vw !important;
    }
    .mgt-sp--155 {
        margin-top: 41.33333vw !important;
    }
    .mgt-sp--160 {
        margin-top: 42.66667vw !important;
    }
    .mgt-sp--165 {
        margin-top: 44vw !important;
    }
    .mgt-sp--170 {
        margin-top: 45.33333vw !important;
    }
    .mgt-sp--175 {
        margin-top: 46.66667vw !important;
    }
    .mgt-sp--180 {
        margin-top: 48vw !important;
    }
    .mgt-sp--185 {
        margin-top: 49.33333vw !important;
    }
    .mgt-sp--190 {
        margin-top: 50.66667vw !important;
    }
    .mgt-sp--195 {
        margin-top: 52vw !important;
    }
    .mgt-sp--200 {
        margin-top: 53.33333vw !important;
    }
    .mgt-sp--205 {
        margin-top: 54.66667vw !important;
    }
    .mgt-sp--210 {
        margin-top: 56vw !important;
    }
    .mgt-sp--215 {
        margin-top: 57.33333vw !important;
    }
    .mgt-sp--220 {
        margin-top: 58.66667vw !important;
    }
    .mgt-sp--225 {
        margin-top: 60vw !important;
    }
    .mgt-sp--230 {
        margin-top: 61.33333vw !important;
    }
    .mgt-sp--235 {
        margin-top: 62.66667vw !important;
    }
    .mgt-sp--240 {
        margin-top: 64vw !important;
    }
    .mgt-sp--245 {
        margin-top: 65.33333vw !important;
    }
    .mgt-sp--250 {
        margin-top: 66.66667vw !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: 768px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 1.33333vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 2.66667vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 4vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 5.33333vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 6.66667vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 8vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 9.33333vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 10.66667vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 12vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 13.33333vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 14.66667vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 16vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 17.33333vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 18.66667vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 20vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 21.33333vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 22.66667vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 24vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 25.33333vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 26.66667vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 28vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 29.33333vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 30.66667vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 32vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 33.33333vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 34.66667vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 36vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 37.33333vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 38.66667vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 40vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 41.33333vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 42.66667vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 44vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 45.33333vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 46.66667vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 48vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 49.33333vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 50.66667vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 52vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 53.33333vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 54.66667vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 56vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 57.33333vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 58.66667vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 60vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 61.33333vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 62.66667vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 64vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 65.33333vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 66.66667vw !important;
    }
}

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

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