@charset "UTF-8";
/* ---------------------------------------------
*   l-wrapper
--------------------------------------------- */
/* ---------------------------------------------
*   l-header
--------------------------------------------- */
.l-header__body-sp p:nth-of-type(2) {
    display: none !important;
}

/* ---------------------------------------------
*   l-global-nav
--------------------------------------------- */
/* ---------------------------------------------
*   l-container
--------------------------------------------- */
.l-container {
    padding-inline: calc(var(--contents-side-padding) * 1px);
    max-width: calc(var(--contents-width) * 1px + var(--contents-side-padding) * 2px);
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .l-container {
        max-width: none;
    }
}

/* ---------------------------------------------
*   l-container-bg
--------------------------------------------- */
.l-container-bg {
    background-color: var(--color-gray-1);
}

/* ---------------------------------------------
*   l-breadcrumb
--------------------------------------------- */
/* ---------------------------------------------
*   l-footer
--------------------------------------------- */
/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-block {
    color: red;
}

/* ---------------------------------------------
*   c-box-contact
--------------------------------------------- */
.c-box-contact__lead {
    display: block;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4666666667;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-box-contact__lead {
        font-size: 16px;
        line-height: 1.5625;
        text-align: left;
    }
}
.c-box-contact__btn {
    width: 384px;
    margin-inline: auto;
    margin-block: 25px 21px;
}
@media screen and (max-width: 750px) {
    .c-box-contact__btn {
        width: 100%;
        margin-block: 31px 30px;
    }
}
.c-box-contact__note {
    max-width: 620px;
    margin-inline: auto;
    font-size: 13px;
    line-height: 1.8461538462;
}
@media screen and (max-width: 750px) {
    .c-box-contact__note {
        max-width: none;
    }
}

/* ---------------------------------------------
*   c-btn-1
--------------------------------------------- */
.c-btn-1 {
    position: relative;
    padding: 13px 45px;
    display: block;
    color: var(--color-blue-1);
    font-size: 14px;
    line-height: 1.7857142857;
    border: 1px solid var(--color-blue-1);
    border-radius: 8px;
    background-color: var(--color-white-1);
    text-decoration: none !important;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-btn-1 {
        padding: 11px 45px;
    }
}
.c-btn-1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    display: block;
    width: 11px;
    aspect-ratio: 11/6;
    transform: translateY(-50%) rotate(-90deg);
    -webkit-mask: url(../img/ico_arrow.svg) 0 0 no-repeat;
            mask: url(../img/ico_arrow.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    background-color: var(--color-blue-1);
}
.c-btn-1[target=_blank]::after {
    right: 22px;
    width: 14px;
    aspect-ratio: 1/1;
    transform: translateY(-50%);
    -webkit-mask: url(../img/ico_outlink.svg) 0 0 no-repeat;
            mask: url(../img/ico_outlink.svg) 0 0 no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
}
@media screen and (max-width: 750px) {
    .c-btn-1[target=_blank]::after {
        right: 16px;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1 {
        transition: color 0.3s, background-color 0.3s;
    }
    .c-btn-1:hover {
        background-color: var(--color-blue-3);
        color: var(--color-blue-2);
    }
}
.c-btn-1--blue {
    background-color: var(--color-white-1);
    color: var(--color-base-1);
    font-weight: bold;
    border-color: #939393;
}
.c-btn-1--blue small {
    font-size: 13px;
    font-weight: 400;
}
.c-btn-1--blue::after {
    background-color: var(--color-white-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-btn-1--blue:hover {
        background-color: var(--color-white-1);
    color: var(--color-base-1);
    }
}
.c-btn-1--reverse::after {
    right: auto;
    left: 18px;
    transform: translateY(-50%) rotate(90deg);
}

/*  c-btn-1-wrap
--------------------------------------------- */
.c-btn-1-wrap {
    max-width: 386px;
    margin-block: 30px 101px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-btn-1-wrap {
        max-width: none;
        margin-block: 25px 77px;
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
/* ---------------------------------------------
*   c-cassette-1
--------------------------------------------- */
.c-cassette-1 {
    padding-block: 37px 38px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}
@media screen and (max-width: 750px) {
    .c-cassette-1 {
        padding-block: 30px 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}
.c-cassette-1__content {
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    gap: 12px;
    padding-inline: 20px;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__content {
        padding: 30px 0 44px;
        display: block;
    }
}
@media screen and (min-width: 751px) {
    .c-cassette-1__content:first-of-type::after {
        content: "";
        position: absolute;
        top: 3.3%;
        right: 0;
        display: block;
        width: 1px;
        height: 94%;
        background-color: var(--color-gray-3);
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1__content:first-of-type {
        border-bottom: 1px solid var(--color-gray-3);
    }
}
.c-cassette-1__ico {
    display: block;
    width: 77px;
    margin: 0 auto;
}
.c-cassette-1__ttl {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3125;
    margin-top: 21px;
}
@media (hover: hover) and (pointer: fine) {
    .c-cassette-1__ico,.c-cassette-1__qr {
        -webkit-transition: opacity .3s;
        -o-transition: opacity .3s;
        transition: opacity .3s;
    }
    .c-cassette-1__ico:hover,.c-cassette-1__qr:hover {
        opacity: .7;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-1__ttl {
        margin-top: 33px;
    }
}
.c-cassette-1__txt {
    font-size: 13px;
    line-height: 1.7692307692;
    margin-top: 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__txt {
        margin-top: 13px;
    }
}
.c-cassette-1__qr {
    display: block;
    width: 135px;
    margin: 22px auto 0;
}
@media screen and (max-width: 750px) {
    .c-cassette-1__qr {
        margin-top: 25px;
    }
}

/* ---------------------------------------------
*   c-cassette-2
--------------------------------------------- */
.c-cassette-2 {
    margin-top: 29px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2 {
        margin-top: 45px;
    }
}
.c-cassette-2 + .c-cassette-2 {
    margin-top: 44px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2 + .c-cassette-2 {
        margin-top: 35px;
    }
}
.c-cassette-2:last-of-type {
    padding-bottom: 13px;
}
.c-cassette-2__head {
    padding: 7px 14px;
    background-color: var(--color-gray-1);
}
.c-cassette-2__ttl {
    font-size: 17px;
    font-weight: bold;
}
.c-cassette-2__body {
    margin-top: 34px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__body {
        margin-top: 29px;
    }
}
.c-cassette-2__body--col2 {
    display: grid;
    grid-template-columns: calc(436 / 950 * 100%) calc(472 / 950 * 100%);
    gap: calc(42 / 950 * 100%);
}
@media screen and (max-width: 750px) {
    .c-cassette-2__body--col2 {
        display: block;
    }
}
.c-cassette-2__body--col2-narrow {
    display: grid;
    grid-template-columns: calc(675 / 950 * 100%) calc(245 / 950 * 100%);
    gap: calc(30 / 950 * 100%);
}
@media screen and (max-width: 750px) {
    .c-cassette-2__body--col2-narrow {
        display: block;
    }
}
.c-cassette-2__txt {
    font-size: 15px;
    line-height: 1.8666666667;
    text-align: justify;
}
.c-cassette-2__imgs1 {
    display: grid;
    grid-template-columns: calc(256 / 472 * 100%) calc(181 / 472 * 100%);
    gap: calc(35 / 472 * 100%);
    margin-top: 8px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__imgs1 {
        grid-template-columns: calc(182 / 335 * 100%) calc(129 / 335 * 100%);
        gap: calc(24 / 335 * 100%);
        max-width: 335px;
        margin-inline: auto;
        margin-top: 31px;
    }
}
.c-cassette-2__img3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(34 / 950 * 100%);
    max-width: 807px;
    margin-inline: auto;
    margin-top: 30px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__img3col {
        grid-template-columns: repeat(1, 1fr);
        gap: 21px;
        max-width: 226px;
        margin-inline: auto;
        margin-top: 21px;
    }
}
.c-cassette-2__img3col .c-cassette-2__fig img {
    aspect-ratio: 254/169;
}
.c-cassette-2__img2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(30 / 523 * 100%);
    max-width: 523px;
    margin-inline: auto;
    margin-top: 30px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__img2col {
        grid-template-columns: repeat(1, 1fr);
        gap: 22px;
        max-width: 246px;
        margin-inline: auto;
        margin-top: 35px;
    }
}
.c-cassette-2__fig {
    margin: 0;
}
.c-cassette-2__fig img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-cassette-2__fig figcaption {
    font-size: 13.5px;
    font-weight: 500;
    margin-top: 11px;
    margin-left: -2px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__fig figcaption {
        font-size: 11px;
        line-height: 1.6363636364;
        margin-top: 6px;
    }
}
.c-cassette-2__fig--mt8 {
    margin-top: 8px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__fig--mt8 {
        max-width: 225px;
        margin-inline: auto;
        margin-top: 27px;
    }
}
.c-cassette-2__fig--wide {
    max-width: 611px;
    margin-inline: auto;
    margin-top: 32px;
}
@media screen and (max-width: 750px) {
    .c-cassette-2__fig--wide {
        max-width: 335px;
        margin-inline: auto;
        margin-top: 27px;
    }
}
@media screen and (max-width: 750px) {
    .c-cassette-2 picture {
        display: block;
        max-width: 335px;
        margin-inline: auto;
        margin-top: 26px;
    }
}
.c-cassette-2 picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-nav-anchor
--------------------------------------------- */
.c-nav-anchor__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.c-nav-anchor__item {
    flex-shrink: 0;
}
.c-nav-anchor__link {
    padding-right: 17px;
    color: var(--color-base-1);
    font-size: 14px;
    line-height: 1.7857142857;
    background: url(../img/ico_arrow.svg) top 8px right no-repeat;
    background-size: 11px 6px;
}
@media (hover: hover) and (pointer: fine) {
    .c-nav-anchor__link {
        text-underline-offset: 0.25em;
    }
    .c-nav-anchor__link:hover {
        text-decoration: underline;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-nav-anchor__link {
        transition: color 0.3s;
    }
    .c-nav-anchor__link:hover {
        color: var(--color-blue-2);
    }
}
@media screen and (max-width: 750px) {
    .c-nav-anchor__link {
        line-height: 1.5;
    }
}

/* ---------------------------------------------
*   c-nav-breadclumb
--------------------------------------------- */
.c-nav-breadclumb {
    padding: 21px 2px;
}
@media screen and (max-width: 750px) {
    .c-nav-breadclumb {
        padding: 27px 0;
    }
}
.c-nav-breadclumb__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 12px;
}
.c-nav-breadclumb__item {
    position: relative;
}
.c-nav-breadclumb__item:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin-left: 6px;
}
.c-nav-breadclumb__item a {
    color: var(--color-base-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-nav-breadclumb__item a {
        text-underline-offset: 0.25em;
    }
    .c-nav-breadclumb__item a:hover {
        text-decoration: underline;
    }
}

/* ---------------------------------------------
*   c-img
--------------------------------------------- */
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
/* ---------------------------------------------
*   c-list
--------------------------------------------- */
/* ---------------------------------------------
*   c-section-news
--------------------------------------------- */
.c-section-news {
    padding-block: 43px 20px;
    background-color: var(--color-gray-1);
}
@media screen and (max-width: 750px) {
    .c-section-news {
        padding-block: 18px 23px;
    }
}
.c-section-news__container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 41px;
}
@media screen and (max-width: 750px) {
    .c-section-news__container {
        display: block;
    }
}
.c-section-news__head {
    flex-shrink: 0;
}
.c-section-news__body {
    margin-top: 2px;
}
@media screen and (max-width: 750px) {
    .c-section-news__body {
        margin-top: 15px;
    }
}
.c-section-news__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 33px;
}
@media screen and (max-width: 750px) {
    .c-section-news__item {
        display: block;
    }
}
.c-section-news__item + .c-section-news__item {
    margin-top: 8px;
}
@media screen and (max-width: 750px) {
    .c-section-news__item + .c-section-news__item {
        margin-top: 10px;
    }
}
.c-section-news__date {
    display: block;
    flex-shrink: 0;
    width: 110px;
    font-size: 14px;
    line-height: 1.7857142857;
}
@media screen and (max-width: 750px) {
    .c-section-news__date {
        font-size: 13px;
        width: auto;
    }
}
.c-section-news__link {
    color: var(--color-blue-1);
    display: inline-block;
    font-size: 14px;
    line-height: 1.7857142857;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-news__link {
        text-underline-offset: 0.25em;
    }
    .c-section-news__link:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 750px) {
    .c-section-news__link {
        margin-top: 4px;
    }
}


.c-section-news__nolink {
color: var(--color-base-1);
    display: inline-block;
    font-size: 14px;
    line-height: 1.7857142857;
}

@media screen and (max-width: 750px) {
    .c-section-news__nolink {
        margin-top: 4px;
    }
}



.c-section-news__link-txt {
    display: inline;
}
.c-section-news__link-ico {
    display: inline-block;
    width: 13px;
    margin-left: 5px;
    transform: translateY(-2px);
}
@media screen and (max-width: 750px) {
    .c-section-news__link-ico {
        margin-left: 2px;
    }
}
.c-section-news__link-ico img {
    vertical-align: middle !important;
}
.c-section-news__trigger {
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    cursor: pointer;
    color: var(--color-base-1);
    padding-right: 20px;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    letter-spacing: 0.025em;
    line-height: 1.9230769231;
    margin-top: 7px;
}
@media (hover: hover) and (pointer: fine) {
    .c-section-news__trigger {
        text-underline-offset: 0.25em;
    }
    .c-section-news__trigger:hover {
        text-decoration: underline;
    }
}
@media (hover: hover) and (pointer: fine) {
    .c-section-news__trigger {
        transition: color 0.3s;
    }
    .c-section-news__trigger:hover {
        color: var(--color-blue-2);
    }
}
@media screen and (max-width: 750px) {
    .c-section-news__trigger {
        margin-top: 5px;
    }
}
.c-section-news__trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 11px;
    aspect-ratio: 11/6;
    background: url(../img/ico_arrow.svg) center right no-repeat;
    background-size: cover;
    transform: translateY(-50%);
}
.is-show-all .c-section-news__trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

/* ---------------------------------------------
*   c-section-movie
--------------------------------------------- */
.c-section-movie {
    padding-block: 42px 62px;
}
@media screen and (max-width: 750px) {
    .c-section-movie {
        padding-block: 57px 62px;
    }
}
.c-section-movie__body {
    margin-top: 34px;
}
.c-section-movie__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media screen and (max-width: 750px) {
    .c-section-movie__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 28px;
    }
}
.c-section-movie__link {
    display: block;
    text-decoration: none !important;
    color: var(--color-base-1);
}
@media (hover: hover) and (pointer: fine) {
    .c-section-movie__link img {
        transition: transform 0.3s;
    }
    .c-section-movie__link:hover img {
        transform: scale(1.1);
    }
}
.c-section-movie__thumb {
    position: relative;
    aspect-ratio: 1920/1080;
    border: 1px solid var(--color-gray-2);
    margin: 0;
    overflow: hidden;
}

.c-section-movie__thumb img {
    display: block;
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
}
.c-section-movie__thumb::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 44px;
    aspect-ratio: 1/1;
    background: url(../img/ico_play.png) center center no-repeat;
    background-size: 100% auto;
}
@media screen and (max-width: 750px) {
    .c-section-movie__thumb::after {
        width: calc(48 / 333 * 100%);
    }
}
.c-section-movie__movie-ttl {
    display: block;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    margin-top: 22px;
    padding-inline: 3px;
}
@media screen and (max-width: 750px) {
    .c-section-movie__movie-ttl {
        padding-inline: 0;
        margin-top: 16px;
    }
}
.c-section-movie__movie-txt {
    padding-inline: 3px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.7142857143;
    margin-top: 7px;
}
@media screen and (max-width: 750px) {
    .c-section-movie__movie-txt {
        padding-inline: 0;
        -webkit-line-clamp: 2;
    }
}
.c-section-movie__foot {
    width: 384px;
    margin-top: 35px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-section-movie__foot {
        width: 100%;
        margin-top: 37px;
    }
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
    padding-block: 53px 1px;
}
@media screen and (max-width: 750px) {
    .c-section-1 {
        padding-block: 60px 0;
    }
}
.c-section-1:last-of-type {
    padding-bottom: 86px;
}
@media screen and (max-width: 750px) {
    .c-section-1:last-of-type {
        padding-bottom: 63px;
    }
}
.c-section-1__body {
    margin-top: 30px;
}
@media screen and (max-width: 750px) {
    .c-section-1__body {
        margin-top: 23px;
    }
}
.c-section-1__foot {
    width: 384px;
    margin-top: 34px;
    margin-inline: auto;
}
@media screen and (max-width: 750px) {
    .c-section-1__foot {
        width: 100%;
    }
}

/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2 {
    padding-block: 18px;
}
@media screen and (max-width: 750px) {
    .c-section-2 {
        padding-block: 8px 0;
    }
}
.c-section-2__body {
    margin-top: 38px;
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
    display: block;
    font-size: 23px;
    font-weight: bold;
}
@media screen and (max-width: 750px) {
    .c-ttl-1 {
        font-size: 22px;
    }
}

/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2 {
    display: block;
    font-size: 26px;
    font-weight: bold;
}

/* ---------------------------------------------
*   c-txt-1
--------------------------------------------- */
.c-txt-1 {
    font-size: 15px;
    line-height: 1.8666666667;
}

/* ---------------------------------------------
*   c-txt-2
--------------------------------------------- */
.c-txt-2 {
    font-size: 15px;
    line-height: 1.8666666667;
    text-align: justify;
}

/* ---------------------------------------------
*   p-top-xx
--------------------------------------------- */
/* ---------------------------------------------
*   p-lower-page-xx
--------------------------------------------- */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: var(--color-white-1) !important;
}

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

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

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

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

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

/*  .js-acc-target
--------------------------------------------- */
.js-acc-target {
    --acc-body-height: 15px;
    height: 0;
    margin-top: 10px;
    overflow: hidden;
}
.js-acc-scope.is-close .js-acc-target {
    animation: closeAccAnim 0.5s forwards;
}

.js-acc-scope.is-open .js-acc-target {
    animation: openAccAnim 0.5s forwards;
}

@keyframes openAccAnim {
    0% {
        height: 0px;
        visibility: hidden;
    }
    99% {
        height: var(--acc-body-height);
        visibility: visible;
    }
    100% {
        height: auto;
    }
}
@keyframes closeAccAnim {
    0% {
        height: var(--acc-body-height);
    }
    99% {
        visibility: visible;
    }
    100% {
        height: 0px;
        visibility: hidden;
    }
}

.js-acc-scope .init-hidden {
    display: none;
}
.js-acc-scope.is-open .init-visible {
    display: none;
}
.js-acc-scope.is-open .init-hidden {
    display: block;
}

@media print and (min-width: 751px), screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}
@media print and (max-width: 750px), screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}
/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--10 {
        margin-top: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--15 {
        margin-top: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--20 {
        margin-top: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--25 {
        margin-top: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--30 {
        margin-top: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--35 {
        margin-top: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--40 {
        margin-top: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--45 {
        margin-top: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--50 {
        margin-top: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--55 {
        margin-top: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--60 {
        margin-top: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--65 {
        margin-top: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--70 {
        margin-top: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--75 {
        margin-top: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--80 {
        margin-top: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--85 {
        margin-top: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--90 {
        margin-top: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--95 {
        margin-top: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--100 {
        margin-top: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--105 {
        margin-top: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--110 {
        margin-top: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--115 {
        margin-top: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--120 {
        margin-top: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--125 {
        margin-top: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--130 {
        margin-top: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--135 {
        margin-top: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--140 {
        margin-top: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--145 {
        margin-top: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--150 {
        margin-top: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--155 {
        margin-top: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--160 {
        margin-top: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--165 {
        margin-top: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--170 {
        margin-top: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--175 {
        margin-top: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--180 {
        margin-top: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--185 {
        margin-top: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--190 {
        margin-top: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--195 {
        margin-top: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--200 {
        margin-top: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--205 {
        margin-top: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--210 {
        margin-top: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--215 {
        margin-top: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--220 {
        margin-top: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--225 {
        margin-top: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--230 {
        margin-top: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--235 {
        margin-top: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--240 {
        margin-top: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--245 {
        margin-top: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgt-sp--250 {
        margin-top: calc(250 / var(--design-width) * 100vw) !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: calc(5 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--10 {
        margin-bottom: calc(10 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--15 {
        margin-bottom: calc(15 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--20 {
        margin-bottom: calc(20 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--25 {
        margin-bottom: calc(25 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--30 {
        margin-bottom: calc(30 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--35 {
        margin-bottom: calc(35 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--40 {
        margin-bottom: calc(40 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--45 {
        margin-bottom: calc(45 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--50 {
        margin-bottom: calc(50 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--55 {
        margin-bottom: calc(55 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--60 {
        margin-bottom: calc(60 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--65 {
        margin-bottom: calc(65 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--70 {
        margin-bottom: calc(70 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--75 {
        margin-bottom: calc(75 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--80 {
        margin-bottom: calc(80 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--85 {
        margin-bottom: calc(85 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--90 {
        margin-bottom: calc(90 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--95 {
        margin-bottom: calc(95 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--100 {
        margin-bottom: calc(100 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--105 {
        margin-bottom: calc(105 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--110 {
        margin-bottom: calc(110 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--115 {
        margin-bottom: calc(115 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--120 {
        margin-bottom: calc(120 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--125 {
        margin-bottom: calc(125 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--130 {
        margin-bottom: calc(130 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--135 {
        margin-bottom: calc(135 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--140 {
        margin-bottom: calc(140 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--145 {
        margin-bottom: calc(145 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--150 {
        margin-bottom: calc(150 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--155 {
        margin-bottom: calc(155 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--160 {
        margin-bottom: calc(160 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--165 {
        margin-bottom: calc(165 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--170 {
        margin-bottom: calc(170 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--175 {
        margin-bottom: calc(175 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--180 {
        margin-bottom: calc(180 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--185 {
        margin-bottom: calc(185 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--190 {
        margin-bottom: calc(190 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--195 {
        margin-bottom: calc(195 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--200 {
        margin-bottom: calc(200 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--205 {
        margin-bottom: calc(205 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--210 {
        margin-bottom: calc(210 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--215 {
        margin-bottom: calc(215 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--220 {
        margin-bottom: calc(220 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--225 {
        margin-bottom: calc(225 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--230 {
        margin-bottom: calc(230 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--235 {
        margin-bottom: calc(235 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--240 {
        margin-bottom: calc(240 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--245 {
        margin-bottom: calc(245 / var(--design-width) * 100vw) !important;
    }
    .mgb-sp--250 {
        margin-bottom: calc(250 / var(--design-width) * 100vw) !important;
    }
}