@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   base
*
========================================================== */
body {
    overflow-x: auto;
}

/* ---------------------------------------------
*   font
--------------------------------------------- */
.ff-mincho {
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
}

/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents::after {
    content: none;
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    overflow-x: hidden;
    color: #333;
}

.wrapper::after {
    content: none;
}

.wrapper p, .wrapper h1, .wrapper h2, .wrapper h3, .wrapper h4, .wrapper h5, .wrapper h6, .wrapper a, .wrapper li, .wrapper caption, .wrapper td, .wrapper th, .wrapper dt, .wrapper dd, .wrapper input, .wrapper textarea, .wrapper select, .wrapper address {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;
}

/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-block
--------------------------------------------- */
.c-block {
    position: relative;
    padding-top: 145px;
    padding-bottom: 164px;
}

.c-block::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(1.74%, #fffafc), color-stop(4.47%, #fff2f7), color-stop(95.92%, #ffdada), to(rgba(255, 217, 217, 0)));
    background: linear-gradient(#fff 0%, #fffafc 1.74%, #fff2f7 4.47%, #ffdada 95.92%, rgba(255, 217, 217, 0) 100%);
    content: "";
    opacity: 0.6;
}

.c-block__container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.c-block__lead {
    text-align: center;
    letter-spacing: 0.07em;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.7;
}

.c-block__lead .ff-mincho {
    letter-spacing: 0.05em;
    font-size: 2.75rem;
}

.c-block__img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-top: 85px;

    -webkit-box-pack: center;
    justify-content: center;
}

.c-block__img {
    margin-left: 24px;
    width: 400px;
}

.c-block__img:first-of-type {
    margin-left: 0;
}

.c-block__contents {
    margin-top: 160px;
}

/*  c-block-2
--------------------------------------------- */
.c-block-2 {
    position: relative;
    padding-top: 80px;
    padding-bottom: 190px;
}

.c-block-2::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    min-width: 1920px;
    width: 100%;
    height: 87.86458vw;
    background: url(/health/amicolla/cmp/20thanniversary/img/bg_flower_bottom.png) top center no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

@media screen and (max-width: 1920px) {
    .c-block-2::before {
        height: 1687px;
    }
}

.c-block-2__container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.c-block-2__lead {
    margin-right: auto;
    margin-left: auto;
    width: 740px;
}

.c-block-2__img {
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    width: 340px;
}

.c-block-2__txt {
    margin-top: 65px;
    color: #000;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    font-weight: bold;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
    line-height: 2.25;
}

/* ---------------------------------------------
*   c-box
--------------------------------------------- */
.c-box {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    width: 194px;
    background: #ffd2dd url(/health/amicolla/cmp/20thanniversary/img/bg_bnr_flower.png) 0 0 no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    pointer-events: none;
}

.c-box.visible {
    opacity: 1;
    pointer-events: auto;
}

.c-box__inner {
    padding: 57px 19px 51px;
}

.c-box__head {
    margin-right: auto;
    margin-left: auto;
    width: 85px;
}

.c-box__list {
    margin-top: 46px;
}

.c-box__item {
    margin-top: 23px;
}

.c-box__item:first-of-type {
    margin-top: 0;
}

.c-box__link {
    display: block;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.c-box__link:hover {
    opacity: 0.8;
}

/* ---------------------------------------------
*   c-btn
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .c-btn {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-btn:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-card
--------------------------------------------- */
.c-card {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .c-card {
        margin-bottom: 16.80672vw;
    }
}

.c-card__head {
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .c-card__head {
        margin-bottom: 8.40336vw;
    }
}

.c-card__body {
    padding: 0 10px;
}

@media screen and (max-width: 750px) {
    .c-card__body {
        padding: 0;
    }
}

/* ---------------------------------------------
*   c-cassette
--------------------------------------------- */
.c-cassette {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    padding-top: 30px;
    padding-bottom: 40px;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.c-cassette::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 500px;
    border-bottom: 1px dashed #D12E61;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-cassette:nth-of-type(2n+1) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

.c-cassette:first-of-type {
    padding-top: 0;
}

.c-cassette:last-of-type {
    padding-bottom: 0;
}

.c-cassette:last-of-type:before {
    content: none;
}

.ie .c-cassette--mgr {
    margin-right: -30px;
}

.c-cassette--column {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
}

.c-cassette:nth-of-type(2n) .c-cassette__desc {
    text-align: right;
}

.c-cassette--column .c-cassette__desc {
    margin-left: 15px;
}

.c-cassette__ttl {
    color: #E50060;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.875;
}

.c-cassette__txt {
    margin-top: 15px;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 2;
}

.c-cassette--column .c-cassette__txt {
    position: relative;
    left: 10px;
}

.c-cassette__txt .txt-strong {
    color: #E50060;
    font-weight: bold;
    font-size: 1.125rem;
}

.c-cassette__txt .txt-bold {
    font-weight: bold;
}

.c-cassette__img {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.c-cassette__img--01 {
    margin-right: 28px;
    width: 360px;
}

.c-cassette__img--02 {
    margin-left: 32px;
    width: 366px;
}

.c-cassette__img--03 {
    margin-right: 42px;
    margin-left: 10px;
    width: 331px;
}

.c-cassette__img--04 {
    margin-right: 40px;
    margin-left: 90px;
    width: 262px;
}

.c-cassette__img--05 {
    width: 320px;
}

.c-cassette__img--06 {
    margin-top: 17px;
    width: 320px;
}

.c-cassette__img--07 {
    margin-top: 35px;
    margin-bottom: 15px;
    width: 740px;
}

.c-cassette__img-wrap {
    margin-right: 30px;
    margin-left: 53px;
}

/* ---------------------------------------------
*   c-chapter
--------------------------------------------- */
.c-chapter {
    margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
    .c-chapter {
        margin-bottom: 16.80672vw;
    }
}

.c-chapter__container {
    margin: 0 auto;
    width: 1200px;
}

@media screen and (max-width: 750px) {
    .c-chapter__container {
        width: 80%;
    }
}

.c-chapter__head {
    margin-bottom: 15px;
}

@media screen and (max-width: 750px) {
    .c-chapter__head {
        margin-bottom: 8.40336vw;
    }
}

.c-chapter__body {
    padding: 0 10px;
}

@media screen and (max-width: 750px) {
    .c-chapter__body {
        padding: 0;
    }
}

/* ---------------------------------------------
*   c-figure
--------------------------------------------- */
/* ---------------------------------------------
*   c-form
--------------------------------------------- */
/*  c-form-input-txt
--------------------------------------------- */
/*  c-form-input-pw
--------------------------------------------- */
/*  c-form-txtarea
--------------------------------------------- */
/*  c-form-select
--------------------------------------------- */
/*  c-form-chkbox
--------------------------------------------- */
/*  c-form-radio
--------------------------------------------- */
/* ---------------------------------------------
*   c-img
--------------------------------------------- */
.c-img__item {
    position: absolute;
}

.c-img__item--01 {
    top: -104px;
    left: -130px;
    width: 267px;
}

.c-img__item--02 {
    top: -100px;
    right: -76px;
    width: 295px;
}

.c-img__item--03 {
    bottom: 270px;
    left: -100px;
    width: 216px;
}

.c-img__item--04 {
    bottom: -90px;
    left: -167px;
    width: 317px;
}

/*  c-img-2
--------------------------------------------- */
.c-img-2__item {
    position: absolute;
}

.c-img-2__item--01 {
    top: -72px;
    left: -78px;
    width: 179px;
}

.c-img-2__item--02 {
    top: -72px;
    right: -145px;
    width: 318px;
}

.c-img-2__item--03 {
    top: 446px;
    right: -78px;
    width: 216px;
}

.c-img-2__item--04 {
    bottom: -93px;
    left: -129px;
    width: 295px;
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    position: relative;
}

.c-kv::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    min-width: 1920px;
    width: 100%;
    height: 47.39583vw;
    background: url(/health/amicolla/cmp/20thanniversary/img/bg_flower_top.png) top center no-repeat;
    background-size: 100% 100%;
    content: "";
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

@media screen and (max-width: 1920px) {
    .c-kv::before {
        height: 910px;
    }
}

.c-kv__container {
    margin-right: auto;
    margin-left: auto;
    padding-top: 100px;
    max-width: 1200px;
}

.c-kv__ttl {
    margin-right: auto;
    margin-left: auto;
    width: 800px;
}

.c-kv__img {
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    width: 712px;
    -webkit-transform: translateX(-33px);
    transform: translateX(-33px);
}

.c-kv__note {
    margin-top: 35px;
    margin-right: auto;
    margin-left: auto;
    width: 625px;
}

/* ---------------------------------------------
*   c-link
--------------------------------------------- */
@media screen and (min-width: 751px) {
    .c-link {
        text-decoration: underline;
    }
    .c-link:hover {
        text-decoration: none;
    }
}

/* ---------------------------------------------
*   c-list
--------------------------------------------- */
/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section {
    position: relative;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    width: 900px;
    background-color: #fff;
}

.c-section:first-of-type {
    margin-top: 0;
}

.c-section__container {
    padding: 45px 55px 60px;
}

.c-section__ttl {
    position: relative;
    display: inline-block;
    margin-left: 68px;
    border-bottom: 1px solid #571308;
    color: #571308;
    font-weight: bold;
    font-size: 1.5625rem;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
}

.c-section__ttl::before {
    position: absolute;
    top: -45px;
    left: -88px;
    display: block;
    width: 70px;
    height: 100px;
    background-position: 0 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
}

.c-section--01 .c-section__ttl::before {
    background-image: url(/health/amicolla/cmp/20thanniversary/img/img_num_01.svg);
}

.c-section--02 .c-section__ttl::before {
    background-image: url(/health/amicolla/cmp/20thanniversary/img/img_num_02.svg);
}

.c-section__contents {
    margin-top: 30px;
}

.c-section--02 .c-section__contents {
    margin-top: 40px;
}

.c-section__main {
    padding-bottom: 32px;
    border-bottom: 1px solid #D12E61;
}

.c-section__lead {
    font-weight: bold;
    font-size: 2.75rem;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
    line-height: 1.3;
}

.c-section--01 .c-section__lead {
    margin-left: 40px;
}

.c-section--02 .c-section__lead {
    margin-left: 85px;
}

.c-section__lead .txt-small {
    font-size: 2rem;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", sans-serif;
}

.c-section__img {
    margin-top: 25px;
    margin-right: auto;
    margin-left: auto;
    width: 500px;
}

.c-section__detail {
    padding-top: 40px;
}

/* ---------------------------------------------
*   c-slider
--------------------------------------------- */
/* ---------------------------------------------
*   c-table
--------------------------------------------- */
.c-table {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}

.c-table__th, .c-table__td {
    padding: 1em;
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}

.c-table__thead .c-table__th {
    color: red;
}

.c-table__tbody .c-table__th {
    font-weight: bold;
}

/* ---------------------------------------------
*   c-tile
--------------------------------------------- */
/* ---------------------------------------------
*   c-ttl
--------------------------------------------- */
.c-ttl {
    font-weight: bold;
    font-size: 2rem;
}

@media screen and (max-width: 750px) {
    .c-ttl {
        font-size: 3.125rem;
    }
}

/* ---------------------------------------------
*   c-txt
--------------------------------------------- */
.c-txt {
    font-size: 0.875rem;
}

@media screen and (max-width: 750px) {
    .c-txt {
        font-size: 0.9375rem;
    }
}

.c-txt__strong {
    text-decoration: underline;
    font-weight: bold;
}

.c-txt__italic {
    font-style: italic;
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   js-fadein
--------------------------------------------- */
.js-fadein {
    opacity: 0;
}

.js-fadein.is-fadein {
    opacity: 1;
    -webkit-transition: opacity 1.2s;
    transition: opacity 1.2s;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !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;
}

@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: 1.40056vw !important;
    }
    .mgt-sp--10 {
        margin-top: 2.80112vw !important;
    }
    .mgt-sp--15 {
        margin-top: 4.20168vw !important;
    }
    .mgt-sp--20 {
        margin-top: 5.60224vw !important;
    }
    .mgt-sp--25 {
        margin-top: 7.0028vw !important;
    }
    .mgt-sp--30 {
        margin-top: 8.40336vw !important;
    }
    .mgt-sp--35 {
        margin-top: 9.80392vw !important;
    }
    .mgt-sp--40 {
        margin-top: 11.20448vw !important;
    }
    .mgt-sp--45 {
        margin-top: 12.60504vw !important;
    }
    .mgt-sp--50 {
        margin-top: 14.0056vw !important;
    }
    .mgt-sp--55 {
        margin-top: 15.40616vw !important;
    }
    .mgt-sp--60 {
        margin-top: 16.80672vw !important;
    }
    .mgt-sp--65 {
        margin-top: 18.20728vw !important;
    }
    .mgt-sp--70 {
        margin-top: 19.60784vw !important;
    }
    .mgt-sp--75 {
        margin-top: 21.0084vw !important;
    }
    .mgt-sp--80 {
        margin-top: 22.40896vw !important;
    }
    .mgt-sp--85 {
        margin-top: 23.80952vw !important;
    }
    .mgt-sp--90 {
        margin-top: 25.21008vw !important;
    }
    .mgt-sp--95 {
        margin-top: 26.61064vw !important;
    }
    .mgt-sp--100 {
        margin-top: 28.0112vw !important;
    }
    .mgt-sp--105 {
        margin-top: 29.41176vw !important;
    }
    .mgt-sp--110 {
        margin-top: 30.81232vw !important;
    }
    .mgt-sp--115 {
        margin-top: 32.21289vw !important;
    }
    .mgt-sp--120 {
        margin-top: 33.61345vw !important;
    }
    .mgt-sp--125 {
        margin-top: 35.01401vw !important;
    }
    .mgt-sp--130 {
        margin-top: 36.41457vw !important;
    }
    .mgt-sp--135 {
        margin-top: 37.81513vw !important;
    }
    .mgt-sp--140 {
        margin-top: 39.21569vw !important;
    }
    .mgt-sp--145 {
        margin-top: 40.61625vw !important;
    }
    .mgt-sp--150 {
        margin-top: 42.01681vw !important;
    }
    .mgt-sp--155 {
        margin-top: 43.41737vw !important;
    }
    .mgt-sp--160 {
        margin-top: 44.81793vw !important;
    }
    .mgt-sp--165 {
        margin-top: 46.21849vw !important;
    }
    .mgt-sp--170 {
        margin-top: 47.61905vw !important;
    }
    .mgt-sp--175 {
        margin-top: 49.01961vw !important;
    }
    .mgt-sp--180 {
        margin-top: 50.42017vw !important;
    }
    .mgt-sp--185 {
        margin-top: 51.82073vw !important;
    }
    .mgt-sp--190 {
        margin-top: 53.22129vw !important;
    }
    .mgt-sp--195 {
        margin-top: 54.62185vw !important;
    }
    .mgt-sp--200 {
        margin-top: 56.02241vw !important;
    }
    .mgt-sp--205 {
        margin-top: 57.42297vw !important;
    }
    .mgt-sp--210 {
        margin-top: 58.82353vw !important;
    }
    .mgt-sp--215 {
        margin-top: 60.22409vw !important;
    }
    .mgt-sp--220 {
        margin-top: 61.62465vw !important;
    }
    .mgt-sp--225 {
        margin-top: 63.02521vw !important;
    }
    .mgt-sp--230 {
        margin-top: 64.42577vw !important;
    }
    .mgt-sp--235 {
        margin-top: 65.82633vw !important;
    }
    .mgt-sp--240 {
        margin-top: 67.22689vw !important;
    }
    .mgt-sp--245 {
        margin-top: 68.62745vw !important;
    }
    .mgt-sp--250 {
        margin-top: 70.02801vw !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: 1.40056vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 2.80112vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 4.20168vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 5.60224vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 7.0028vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 8.40336vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 9.80392vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 11.20448vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 12.60504vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 14.0056vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 15.40616vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 16.80672vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 18.20728vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 19.60784vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 21.0084vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 22.40896vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 23.80952vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 25.21008vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 26.61064vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 28.0112vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 29.41176vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 30.81232vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 32.21289vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 33.61345vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 35.01401vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 36.41457vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 37.81513vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 39.21569vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 40.61625vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 42.01681vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 43.41737vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 44.81793vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 46.21849vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 47.61905vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 49.01961vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 50.42017vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 51.82073vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 53.22129vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 54.62185vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 56.02241vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 57.42297vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 58.82353vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 60.22409vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 61.62465vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 63.02521vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 64.42577vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 65.82633vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 67.22689vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 68.62745vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 70.02801vw !important;
    }
}
