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

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

Contents:
    module
    page
    utility
========================================================== */
/* ==========================================================
*
*   module
*
========================================================== */
/* ==========================================================
Name:
    module.css

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

Contents:
    module
    page
    utility
    ========================================================== */
#p-main_visual {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 45vh;
    width: 100%;
    height: 250vh;
    background-color: #0033cc;
}

@media screen and (orientation: landscape) {
    #p-main_visual {
        height: 400vh;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    #p-main_visual {
        height: 280vh;
    }
}

#body-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

#body-bg canvas {
    position: relative;
    z-index: 1;
}

.content-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-top: 117px;
    padding-bottom: 145px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .content-main {
        padding-top: 13.6vw;
        padding-bottom: 20.66667vw;
    }
}

/* ---------------------------------------------
*   Animation JS
--------------------------------------------- */
#animated-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

#animated-canvas canvas {
    position: relative;
    z-index: 1;
}

/* ---------------------------------------------
*   js-fade
--------------------------------------------- */
.js-fadein {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.js-fadein:before {
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0033cc), color-stop(50%, #fff));
    background: linear-gradient(to right, #0033cc 50%, #fff 50%);
    background-color: #0033cc;
    background-position: right bottom;
    background-size: 200% 100.5%;
    content: "";
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    pointer-events: none;
}

.js-fadein--solution:before {
    bottom: 271px;
    left: 160px;
    min-width: 1200px;
    width: 83.33333vw;
    height: 1px;
}

@media screen and (max-width: 750px) {
    .js-fadein--solution:before {
        bottom: 45.73333vw;
        left: 28.8vw;
        min-width: none;
        width: 92vw;
    }
}

.js-fadein--works:before {
    bottom: 266px;
    left: 215px;
    min-width: 1200px;
    width: 83.33333vw;
    height: 1px;
}

@media screen and (max-width: 750px) {
    .js-fadein--works:before {
        bottom: 45.06667vw;
        left: 38.66667vw;
        min-width: none;
        width: 92vw;
    }
}

.js-fadein.is-show {
    opacity: 1;
}

.js-fadein.is-anime:before {
    background-position: left bottom;
}

@media screen and (max-width: 750px) {
    .js-fadein.is-anime:before {
        min-width: 0;
        width: 96.26667%;
    }
}

/* ---------------------------------------------
*   bg-color
--------------------------------------------- */
/*  bg-blue
--------------------------------------------- */
.bg-blue {
    position: relative;
    padding-top: 110px;
    padding-bottom: 170px;
}

@media screen and (max-width: 750px) {
    .bg-blue {
        padding-top: 6.13333vw;
        padding-bottom: 14.66667vw;
    }
}

.bg-blue:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    min-width: 1160px;
    width: 93.40278%;
    height: 100%;
    background-color: #cce2ff;
    content: "";
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .bg-blue:before {
        min-width: 0;
        width: 96.26667%;
    }
}

/* ---------------------------------------------
*   container
--------------------------------------------- */
/*  container（1024px）
--------------------------------------------- */
.container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 1024px;
}

@media screen and (max-width: 750px) {
    .container {
        padding-right: 7.73333%;
        padding-left: 7.73333%;
        width: 100%;
    }
}

/*  container-narrow（995px）
--------------------------------------------- */
.container-narrow {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    width: 995px;
}

@media screen and (max-width: 750px) {
    .container-narrow {
        padding-right: 7.73333%;
        padding-left: 7.73333%;
        width: 100%;
    }
}

/* ---------------------------------------------
*   content-main
--------------------------------------------- */
.content-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding-top: 117px;
    padding-bottom: 145px;
    background-color: #fff;
}

@media screen and (max-width: 750px) {
    .content-main {
        padding-top: 13.6vw;
        padding-bottom: 20.66667vw;
    }
}

/* ---------------------------------------------
*   hover-opacity
--------------------------------------------- */
.hover-opacity {
    -webkit-transition: 0.2s ease 0s;
    transition: 0.2s ease 0s;
}

@media screen and (min-width: 751px) {
    .hover-opacity:hover {
        opacity: .5;
    }
}

/* ---------------------------------------------
*   image-link
--------------------------------------------- */
.image-link {
    position: relative;
    display: block;
}

.image-link:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 204, 0.35);
    content: "";
    opacity: 1;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out;
    pointer-events: none;
}

@media screen and (max-width: 750px) {
    .image-link:before {
        background-color: rgba(0, 51, 204, 0.23);
    }
}

@media screen and (min-width: 751px) {
    .image-link:hover:before {
        opacity: 0;
    }
}

.image-link--harf {
    margin-right: 56px;
    width: 469px;
}

@media screen and (max-width: 750px) {
    .image-link--harf {
        margin-right: auto;
        margin-left: auto;
        width: 84.70032%;
    }
}

.image-link--harf:nth-of-type(2n) {
    margin-right: 0;
}

@media screen and (max-width: 750px) {
    .image-link--harf:nth-of-type(2n) {
        margin-right: auto;
    }
}

@media screen and (max-width: 750px) {
    .image-link--harf:nth-of-type(n + 2) {
        margin-top: 9.73333vw;
    }
}

.image-link--third {
    margin-right: 51px;
    width: 297px;
}

@media screen and (max-width: 750px) {
    .image-link--third {
        margin-right: 5.99369%;
        width: 47.00315%;
    }
}

@media screen and (max-width: 750px) {
    .image-link--third:nth-of-type(2n) {
        margin-right: 0;
    }
}

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

@media screen and (max-width: 750px) {
    .image-link--third:nth-of-type(n + 3) {
        margin-top: 8vw;
    }
}

@media screen and (min-width: 751px) {
    .image-link--third:nth-of-type(n + 4) {
        margin-top: 60px;
    }
}

.image-link__photo img {
    display: block;
}

.image-link__title {
    position: absolute;
    bottom: -11px;
    left: 0;
    display: inline-block;
    padding: 4px 40px 1px 15px;
    background-color: #0033cc;
}

@media screen and (max-width: 750px) {
    .image-link__title {
        bottom: -2.66667vw;
        padding: 0.4vw 6vw 0.26667vw 2.66667vw;
    }
}

.image-link__title:before {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 14px;
    height: 7px;
    background: url(/img/common/arrow_link_white.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .image-link__title:before {
        right: 2vw;
        width: 2.66667vw;
        height: 1.06667vw;
        background: url(/img/common/sp/arrow_link_white.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.image-link__title-item {
    display: block;
    color: #fff;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .image-link__title-item {
        letter-spacing: .03em;
        font-size: 3.2vw;
    }
}

.image-link__title-item--blank {
    position: relative;
    padding-right: 15px;
}

@media screen and (max-width: 750px) {
    .image-link__title-item--blank {
        padding-right: 2.66667vw;
    }
}

.image-link__title-item--blank:before {
    position: absolute;
    top: 45%;
    right: 0;
    width: 9px;
    height: 9px;
    background: url(/img/common/icon_blank_white.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .image-link__title-item--blank:before {
        top: 50%;
        width: 1.73333vw;
        height: 1.73333vw;
    }
}

/* ---------------------------------------------
*   img-loading
--------------------------------------------- */
.img-loading {
    position: fixed;
    z-index: 1;
    min-width: 1200px;
    width: 100vw;
    height: 100vh;
    background: url(/img/top/img_keyvisual.jpg) center bottom no-repeat;
    background-size: cover;
    opacity: 1;
    -webkit-transition: opacity 0.8s ease-out;
    transition: opacity 0.8s ease-out;
}

@media screen and (max-width: 1100px) {
    .img-loading {
        width: 100%;
        height: 100%;
    }
}

.tablet .img-loading {
    min-width: none;
}

@media screen and (max-width: 750px) {
    .img-loading {
        min-width: 0;
        background: url(/img/top/sp/img_keyvisual.jpg) center bottom no-repeat;
        background-size: auto 130%;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .img-loading {
        background-size: cover;
    }
}

.img-loading.is-hide {
    opacity: 0.1;
}

.img-loading.is-fade {
    opacity: 0;
}

/*  img-loading-change
--------------------------------------------- */
.img-loading-change {
    position: fixed;
    min-width: 1200px;
    width: 100vw;
    height: 100vh;
    background: url(/img/top/img_keyvisual_scroll.jpg) center bottom no-repeat;
    background-size: cover;
    opacity: 1;
    -webkit-transition: opacity 0.8s ease-out;
    transition: opacity 0.8s ease-out;
}

@media screen and (max-width: 1100px) {
    .img-loading-change {
        width: 100%;
        height: 100%;
    }
}

.tablet .img-loading-change {
    min-width: none;
}

@media screen and (max-width: 750px) {
    .img-loading-change {
        min-width: 0;
        background: url(/img/top/sp/img_keyvisual_scroll.jpg) center bottom no-repeat;
        background-size: auto 130%;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .img-loading-change {
        background-size: cover;
    }
}

/* ---------------------------------------------
*   index-keyvisual
--------------------------------------------- */
.index-keyvisual {
    position: relative;
    padding-bottom: 45vh;
    width: 100%;
    height: 250vh;
    background-color: #0033cc;
}

/* ---------------------------------------------
*   lineup-list
--------------------------------------------- */
.lineup-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

/* ---------------------------------------------
*   link-item
--------------------------------------------- */
.link-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.link-item--right {
    -ms-flex-pack: end;

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

.link-item__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 20px;
    width: 200px;
    height: 40px;
    border: 1px solid #444444;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #000000), color-stop(50%, #fff));
    background: linear-gradient(to left, #000000 50%, #fff 50%);
    background-position: left bottom;
    background-size: 200% 100.5%;
    font-size: 0.75rem;
    font-family: 'Libre Baskerville', serif;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;

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

@media screen and (max-width: 750px) {
    .link-item__item {
        padding-left: 4.66667vw;
        width: 46.13333vw;
        height: 9.33333vw;
        border-width: 0.26667vw;
        font-size: 3.2vw;
    }
}

@media screen and (min-width: 751px) {
    .link-item__item:hover {
        background-position: right bottom;
        color: #fff;
    }
}

.link-item__item:hover:before {
    background: url(/img/common/arrow_link_white.png) 0 0 no-repeat;
}

@media screen and (min-width: 751px) {
    .link-item__item:hover .link-item__border--top {
        background-position: right bottom;
    }
}

@media screen and (min-width: 751px) {
    .link-item__item:hover .link-item__border--right {
        background-position: right bottom;
        background-size: 100.5% 200%;
    }
}

@media screen and (min-width: 751px) {
    .link-item__item:hover .link-item__border--bottom {
        background-position: right bottom;
        background-size: 200% 100.5%;
    }
}

@media screen and (min-width: 751px) {
    .link-item__item:hover .link-item__border--left {
        background-position: left bottom;
    }
}

.link-item__item:before {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 14px;
    height: 7px;
    background: url(/img/common/arrow_link_black.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .link-item__item:before {
        right: 4.26667vw;
        width: 2.66667vw;
        height: 1.06667vw;
        background: url(/img/common/sp/arrow_link_black.png) 0 0 no-repeat;
        background-size: 100% auto;
    }
}

.link-item__border {
    position: absolute;
    display: block;
    background-color: #444444;
    pointer-events: none;
}

.link-item__border--top {
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #444444), color-stop(50%, #fff));
    background: linear-gradient(to left, #444444 50%, #fff 50%);
    background-position: left bottom;
    background-size: 200% 100.5%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.link-item__border--right {
    top: -5px;
    right: -5px;
    width: 1px;
    height: calc(100% + 10px);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(80%, #444444), color-stop(20%, #fff));
    background: linear-gradient(to top, #444444 80%, #fff 20%);
    background-position: right top;
    background-size: 100.5% 100%;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

@media screen and (max-width: 750px) {
    .link-item__border--right {
        top: auto;
        right: -1.06667vw;
        bottom: -1.06667vw;
        width: 0.26667vw;
        height: 10.66667vw;
    }
}

.link-item__border--bottom {
    bottom: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, color-stop(95%, #444444), color-stop(5%, #fff));
    background: linear-gradient(to left, #444444 95%, #fff 5%);
    background-position: left bottom;
    background-size: 100% 100.5%;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

@media screen and (max-width: 750px) {
    .link-item__border--bottom {
        right: -1.06667vw;
        bottom: -1.06667vw;
        left: auto;
        width: 47.73333vw;
        height: 0.26667vw;
    }
}

.link-item__border--left {
    top: -5px;
    left: -5px;
    width: 1px;
    height: calc(100% + 10px);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #444444), color-stop(50%, #fff));
    background: linear-gradient(to top, #444444 50%, #fff 50%);
    background-position: left top;
    background-size: 100.5% 200%;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

/* ---------------------------------------------
*   list-content
--------------------------------------------- */
.list-content {
    width: 824px;
}

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

.list-content--topics {
    margin-top: 20px;
    margin-left: 80px;
}

@media screen and (max-width: 750px) {
    .list-content--topics {
        margin-top: 0.8vw;
        margin-left: 0;
    }
}

.list-content__item {
    border-bottom: 1px solid #cccccc;
}

.list-content__item:first-child {
    border-top: 1px solid #cccccc;
}

.list-content__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 27px 0;
}
.list-content__link-title-item{
    width: 5em;
}

@media screen and (max-width: 750px) {
    .list-content__link {
        display: block;
        padding: 5.6vw 0;
    }
}

.list-content__link-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    width: 195px;

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

@media screen and (max-width: 750px) {
    .list-content__link-title {
        margin-bottom: 1.73333vw;
        width: 100%;
    }
}

.list-content__link-title-item {
    letter-spacing: .04em;
}

.list-content__link-title-text {
    margin-left: 15px;
    color: #b0b0b0;
    font-weight: bold;
    font-size: 0.75rem;
}

@media screen and (max-width: 750px) {
    .list-content__link-title-text {
        margin-left: 2vw;
        font-size: 3.2vw;
    }
}

.list-content__link-caption {
    width: calc(100% - 195px);
}

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

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

/* ---------------------------------------------
*   section
--------------------------------------------- */
.section--topics {
    margin-bottom: 210px;
}

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

.section--solution {
    margin-bottom: 230px;
}

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

/* ---------------------------------------------
*   section-nest
--------------------------------------------- */
/* ---------------------------------------------
*   text-content
--------------------------------------------- */
.text-content {
    line-height: 1.8;
}

@media screen and (max-width: 750px) {
    .text-content {
        font-size: 3.73333vw;
        line-height: 1.4;
    }
}

.text-content--large {
    font-size: 1rem;
}

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

.text-content--blue {
    color: #0033cc;
}

/* ---------------------------------------------
*   title-animation
--------------------------------------------- */
.title-animation {
    position: relative;
    pointer-events: none;
}

.title-animation--solution {
    left: -170px;
    width: 830px;
}

@media screen and (max-width: 750px) {
    .title-animation--solution {
        left: -28.66667vw;
        width: 140vw;
    }
}

.title-animation--solution .title-animation-inner {
    top: -363px;
}

@media screen and (max-width: 750px) {
    .title-animation--solution .title-animation-inner {
        top: -62.26667vw;
    }
}

.title-animation--works {
    left: -225px;
    width: 800px;
}

@media screen and (max-width: 750px) {
    .title-animation--works {
        left: -38.4vw;
        width: 134.66667vw;
    }
}

.title-animation--works .title-animation-inner {
    top: -350px;
}

@media screen and (max-width: 750px) {
    .title-animation--works .title-animation-inner {
        top: -59.6vw;
    }
}

.title-animation__item {
    display: block;
    overflow: hidden;
    height: 0;
}

/*  title-animation-inner
--------------------------------------------- */
.title-animation-inner {
    position: absolute;
    width: 100%;
}

/* ---------------------------------------------
*   title-item
--------------------------------------------- */
.title-item {
    display: inline-block;
    letter-spacing: -.05em;
    font-size: 2.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 750px) {
    .title-item {
        font-size: 8.8vw;
    }
}

.title-item--bd {
    position: relative;
    left: -3px;
}

.title-item--bd:before {
    position: absolute;
    bottom: 13px;
    left: 4px;
    width: 100%;
    height: 1px;
    background-color: #333333;
    content: "";
}

@media screen and (max-width: 750px) {
    .title-item--bd:before {
        bottom: 2.8vw;
        left: 0;
        min-height: 1px;
        height: 0.26667vw;
    }
}

/*  title-item-outer
--------------------------------------------- */
.title-item-outer--topics {
    width: calc(100% - 824px - 80px);
}

@media screen and (max-width: 750px) {
    .title-item-outer--topics {
        width: 100%;
    }
}

/* ---------------------------------------------
*   title-main
--------------------------------------------- */
.title-main {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    margin-top: 40px;
    width: 100%;
    color: #fff;
    text-align: center;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.title-main__item {
    margin-bottom: 18px;
    font-size: 3.75rem;
    font-family: 'Libre Baskerville', serif;
}

@media screen and (max-width: 750px) {
    .title-main__item {
        font-size: 6.93333vw;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .title-main__item {
        top: 43%;
        font-size: 22px;
    }
}

.title-main__item-inner {
    position: relative;
    display: inline-block;
}

.title-main__item-inner:before {
    position: absolute;
    top: 18px;
    right: -18px;
    width: 15px;
    height: 14px;
    background: url(/img/top/icon_title_r.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
}

@media screen and (max-width: 750px) {
    .title-main__item-inner:before {
        top: 2vw;
        right: -1.73333vw;
        width: 1.86667vw;
        height: 1.73333vw;
        background-size: 100% auto;
    }
}

.title-main__item-icon {
    position: relative;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 25px auto;
    width: 1px;
    height: 80px;
}

@media screen and (max-width: 750px) {
    .title-main__item-icon {
        margin: 3.33333vw auto;
        width: 1px;
        height: 10.66667vw;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .title-main__item-icon {
        margin: 20px auto;
        height: 30px;
    }
}

.title-main__item-icon:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: "";
    -webkit-animation: scBar 1.5s linear infinite;
    animation: scBar 1.5s linear infinite;
}

@-webkit-keyframes scBar {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes scBar {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.title-main__caption {
    letter-spacing: .05em;
    font-weight: bold;
    font-size: 1.25rem;
}

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

@media screen and (orientation: landscape) and (max-width: 750px) {
    .title-main__caption {
        font-size: 13px;
    }
}

.title-main__text {
    position: absolute;
    left: 50%;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .title-main__text {
        font-size: 3.46667vw;
        line-height: 1.5;
    }
}

@media screen and (orientation: landscape) and (max-width: 750px) {
    .title-main__text {
        font-size: 13px;
        line-height: 1.3;
    }
}

/*  svg animation
--------------------------------------------- */
.svgall {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.svgall svg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 280px;
}

@media screen and (max-width: 750px) {
    .svgall svg {
        width: 70%;
    }
}

@media screen and (max-width: 750px) {
    #svg-anime {
        width: 140vw;
        height: 98.93333vw;
    }
}

@media screen and (max-width: 750px) {
    #svg-anime-works {
        width: 134.66667vw;
        height: 96.552vw;
    }
}

/*  svg animation
--------------------------------------------- */
.st0 {
    fill: none;
    stroke: #0033CC;
    stroke-miterlimit: 10;
}

.st1 {
    fill: none;
    stroke: #0033CC;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.st-works0 {
    fill: none;
    stroke: #0033CC;
    stroke-miterlimit: 10;
}

.st-works1 {
    fill: none;
    stroke: #0033CC;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

/* ---------------------------------------------
*   loading
--------------------------------------------- */
.loading {
    position: absolute;
    top: 50%;
    left: 49%;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    color: #fff;
    text-indent: -9999em;
    font-size: 40px;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-animation: loadAmine 1.7s infinite ease, round 1.7s infinite ease;
    animation: loadAmine 1.7s infinite ease, round 1.7s infinite ease;
}

@media screen and (max-width: 750px) {
    .loading {
        left: 47%;
        font-size: 25px;
    }
}

@-webkit-keyframes loadAmine {
    0% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes loadAmine {
    0% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*  loading-outer
--------------------------------------------- */
.loading-outer {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #0033cc;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.loading-outer.js-loading {
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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