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

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   html, body
--------------------------------------------- */
html,
body {
    font-family: "Helvetica","Arial", sans-serif;
}

/* ---------------------------------------------
*   box-container
--------------------------------------------- */
.box-container {
    margin-right: auto;
    margin-left: auto;
    width: 70.83333%;
    font-weight: normal;
}

@media screen and (min-width: 641px) {
    .box-container {
        margin: 0 auto;
        min-width: 1190px;
        max-width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .box-container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding-right: 5.33333%;
        padding-left: 5.33333%;
        width: 100%;
    }
}

/* ---------------------------------------------
*   section
--------------------------------------------- */
.section__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    margin-bottom: 47px;
    position: relative;

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

@media screen and (max-width: 640px) {
    .section__heading {
        margin-bottom: 40px;
    }
}

/* ---------------------------------------------
*   title-item
--------------------------------------------- */
.title-item {
    font-size: 1.5625rem;
}

@media screen and (max-width: 640px) {
    .title-item {
        font-size: 1.375rem;
    }
}

.title-item--center {
    text-align: center;
    margin: 0 auto;
}

.title-item--bold {
    font-weight: bold;
}

.title-item--small {
    font-size: 1.25rem;
}

.title-item--gray {
    color: #656565;
}

.title-item__link {
    position: absolute;
    top: 10px;
    right: 0;
    padding-right: 26px;
    color: #5D5D5D;
    text-decoration: none;
    font-size: 0.8125rem;
    -webkit-transition: opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
    transition: opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
}

@media screen and (min-width: 641px) {
    .title-item__link:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 640px) {
    .title-item__link {
        top: 8px;
    }
}

.title-item__link:before {
    position: absolute;
    top: 40%;
    right: 0;
    display: block;
    background-size: 100% auto;
    content: ">";
    font-size: 1.1875rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

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

.box-content__list {
    margin-right: 2.85714%;
    width: 31.42857%;
}

.box-content__list2 {
    margin: 0 auto;
    width: 30%;
}

.box-content__wrap3{	
    justify-content: space-evenly;	
}	
    .box-content__list3{	
    width: 30%;	
}

@media screen and (max-width: 640px) {
    .box-content__list {
        margin-right: 0;
        width: 100%;
    }
    .box-content__list2 {
        margin-right: 0;
        width: 100%;
    }	
    .box-content__list3{	
    width: 100%;	
    }	
    .box-content__list3:nth-child(n+2){	
    margin-top: 20px;
    }
}
.box-content__list3-img img{	
    width: 100% !important;	
}

.box-content__list:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width: 640px) {
    .box-content__list:nth-of-type(n + 2) {
        margin-top: 65px;
    }
    .box-content__list2:nth-of-type(n + 2) {
    margin-top: 65px;
}
}

@media screen and (max-width: 640px) {
    .box-content__list:nth-of-type(n + 4) {
        display: none;
    }
}

@media screen and (min-width: 641px) {
    .box-content__list:nth-of-type(n + 4) {
        margin-top: 50px;
    }
}

.box-content__link {
    display: block;
    color: #5D5D5D;
    text-decoration: none;
    -webkit-transition: opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
    transition: opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
}

@media screen and (min-width: 641px) {
    .box-content__link:hover {
        opacity: .7;
    }
}

.box-content__list-img {
    margin-bottom: 22px;
}

@media screen and (max-width: 640px) {
    .box-content__list-img {
        margin-bottom: 12px;
    }
}

.box-content__list-img img {
    width: 100%;
}

.box-content__list-tag {
    margin-bottom: 6px;
    font-size: 0.75rem;
}

@media screen and (max-width: 640px) {
    .box-content__list-tag {
        margin-bottom: 4px;
    }
}

.box-content__list-title {
    font-weight: bold;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.box-content__list-title2 {
    font-weight: bold;
    font-size: 0.9375rem;
    line-height: 1.7;
    text-align: center;
}

/* ---------------------------------------------
*   list-news
--------------------------------------------- */
.list-news {
    color: #5D5D5D;
}

.list-news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

@media screen and (max-width: 640px) {
    .list-news__item {
        display: block;
    }
}

.list-news__item:nth-of-type(n + 2) {
    margin-top: 35px;
}

@media screen and (max-width: 640px) {
    .list-news__item:nth-of-type(n + 2) {
        margin-top: 45px;
    }
}

.list-news__date {
    width: 140px;
    font-size: 0.875rem;
}

@media screen and (max-width: 640px) {
    .list-news__date {
        margin-bottom: 9px;
        width: 100%;
        letter-spacing: -.02em;
    }
}

.list-news__date-link {
    margin-left: 12px;
    width: calc(100% - 140px - 12px);
    font-weight: bold;
    font-size: 0.875rem;
}

@media screen and (max-width: 640px) {
    .list-news__date-link {
        margin-left: 0;
        width: 100%;
        line-height: 1.8;
    }
}

.list-news__date-link a {
    display: inline-block;
    color: #5D5D5D;
    text-decoration: none;
    line-height: 1.5;
    margin: -3px 0 0;
}

@media screen and (min-width: 641px) {
    .list-news__date-link a:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 640px) {
    .list-news__date-link a {
        text-decoration: none;
        margin: 0;
    }
}

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

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

.box-lineup__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 2.52101%;
    width: 23.10924%;
}

@media screen and (max-width: 640px) {
    .box-lineup__item {
        margin-right: 4.47761%;
        width: 47.76119%;
    }
}

@media screen and (max-width: 640px) {
    .box-lineup__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media screen and (min-width: 641px) {
    .box-lineup__item:nth-of-type(4n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 640px) {
    .box-lineup__item:nth-of-type(n + 3) {
        margin-top: 15px;
    }
}

@media screen and (min-width: 641px) {
    .box-lineup__item:nth-of-type(n + 5) {
        margin-top: 30px;
    }
}

.box-lineup__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    width: 100%;
    height: 110px;
    background-color: #DADADA;
    color: #333333;
    text-align: center;
    text-decoration: none;
    letter-spacing: -.05em;
    font-size: 1.25rem;
    line-height: 1.3;
    -webkit-transition: opacity 0.1s cubic-bezier(0, 0, 0.58, 1);
    transition: opacity 0.1s cubic-bezier(0, 0, 0.58, 1);

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

@media screen and (min-width: 641px) {
    .box-lineup__link:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 640px) {
    .box-lineup__link {
        height: 82px;
        font-size: 1rem;
        line-height: 1.3;
    }
}

/* ---------------------------------------------
*   btn-more
--------------------------------------------- */
@media screen and (max-width: 640px) {
    .btn-more {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;

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

@media screen and (max-width: 640px) {
    .btn-more__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;
        margin-top: 45px;
        width: 250px;
        height: 50px;
        border-radius: 25px;
        background-color: #767676;
        color: #fff;
        text-decoration: none;
        font-size: 0.9375rem;

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

/* ---------------------------------------------
*   keyvisual
--------------------------------------------- */
#tmpl_main {
    position: relative;
    color: #5d5d5d;
    width: 100% !important;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.pd-content {
    margin-bottom: 96px;
}

@media screen and (max-width: 640px) {
    .pd-content {
        margin-bottom: 56px;
    }
}

.pd-mv-img {
    width: 100%;
    vertical-align: middle;
}

img {
    max-width: 100%;
    height: auto;
}

.pd-mv {
    position: relative;
    overflow: hidden;
    min-width: 1190px;
    max-height: 480px;
    width: 100%;
}

.pd-main {
    margin: 0 auto;
    width: 1190px;
    text-align: center;
}
/*
.pd-mv-title {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #ffffff;
    text-align: center;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.75), -1px 1px 8px rgba(0, 0, 0, 0.75), 1px -1px 15px rgba(0, 0, 0, 0.3), -1px -1px 15px rgba(0, 0, 0, 0.3);
    font-size: 35px;
    line-height: 1.2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
*/
.pd-mv-title {
    margin-top: 48px;
    color: #000;
    font-size: 28px;
}
/*
.pd-intro {
    margin-top: 42px;
    color: #656563;
    font-size: 17px;
    line-height: 2.4;
}
*/
.pd-intro {
    margin-top: 48px;
    color: #656565;
    font-size: 16px;
    line-height: 32px;
}

#tmpl_main ul.tec_l-info_list {
    margin-top: 20px;
}

.box-container h2{
    margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .pd-mv {
        min-width: auto;
        max-height: 210px;
    }
    .pd-mv-title {
        margin-top: 32px;
        font-size: 18px;
        line-height: 28px;
        color: #000;
    }
    .pd-main {
        width: auto;
    }
    .pd-intro {
        margin: 32px 20px 0;
        text-align: center;
        font-size: 13px;
        line-height: 26pt;
    }
    .box-container h2{
    margin-bottom: 24px;
    }
}

.tec_top__mv {
    margin: 0 auto;
    padding: 0 0 142px;
    width: 100%;
    text-align: center;
}

.tec_top__mv img {
    width: 100%;
    vertical-align: middle;
}

.tec_top__mv {
    margin: 0 auto;
    padding: 0 0 142px;
    max-width: 1190px;
    width: 100%;
    text-align: center;
}

.tec_top__mv img:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.tec_top__mv h3 {
    margin: 50px 0 0;
    font-weight: normal;
    font-size: 22px;
    line-height: 1.3181818;
}

.tec_top__mv p {
    margin: 70px 0 0;
    font-weight: normal;
    font-size: 17px;
}

@media screen and (max-width: 640px) {
    .tec_top__mv {
        padding: 0 0 64px;
    }
    .tec_top__mv h3 {
        margin: 12px 24px 0;
        font-size: 14px;
        line-height: 1.5;
    }
    .tec_top__mv p {
        margin: 60px 24px 0;
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ==========================================================
*
*   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 screen and (min-width: 641px) {
    .pc-hide {
        display: none !important;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

