/***********************************************
  Header
************************************************/
.header {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

@media screen and (max-width: 960px) {
    .header {
        height: 60px;
    }
}

.header.on-fix {
    position: fixed;
    position: -ms-device-fixed;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
    -webkit-box-shadow: 0px 3px 6px rgba(171, 171, 171, 0.16);
    box-shadow: 0px 3px 6px rgba(171, 171, 171, 0.16);
}

@-webkit-keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.header .headerCont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 0 5rem 0 3rem;
    position: relative;
    background-color: #fff;
}

@media screen and (max-width: 1150px) {
    .header .headerCont {
        padding: 0 3rem 0 3rem;
    }
}

@media screen and (max-width: 960px) {
    .header .headerCont {
        padding: 0;
        height: 60px;
    }
}

@media screen and (max-width: 960px) {
    .header .headerCont__left {
        margin-top: 0;
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 5vw;
        z-index: 9998;
        -webkit-box-shadow: 0px 3px 6px rgba(171, 171, 171, 0.16);
        box-shadow: 0px 3px 6px rgba(171, 171, 171, 0.16);
        height: 60px;
    }
}

@media screen and (max-width: 960px) {
    .header .headerCont__left .brand__img {
        max-height: 40px;
    }
}

.header .headerCont__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 960px) {
    .header .headerCont__right {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
        display: none;
        z-index: 999;
    }
}

.header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close.svg);
}

.header .headerCont .humburger {
    display: none;
    background-image: url(../img/common/icon-hamburger.svg);
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40px;
    height: 34.5px;
    position: absolute;
    right: 5vw;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9999;
}

@media screen and (max-width: 960px) {
    .header .headerCont .humburger {
        display: block;
        width: 30px;
        height: 27.5px;
    }
}

@media screen and (min-width: 961px) {
    .header .headerCont {
        min-height: 100px;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 0 1rem 0 3rem;
    }
}

.navMain {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .navMain {
        display: block;
        width: 100%;
        background-color: #fff;
        overflow: hidden;
        padding: 2rem 4rem;
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

@media screen and (max-width: 768px) {
    .navMain {
        padding: 2rem 5vw;
    }
}

@media screen and (min-width: 961px) {
    .navMain {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.navMain__item {
    padding: 0 3rem;
}

@media screen and (max-width: 1150px) {
    .navMain__item {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 960px) {
    .navMain__item {
        border-bottom: 1px solid #C1C1C1;
        padding: 0;
    }
}

@media screen and (min-width: 961px) {
    .navMain__item {
        padding: 1rem 3rem;
    }
}

@media screen and (max-width: 960px) {
    .navMain__item:last-child {
        margin-bottom: 2rem;
    }
}

.navMain__item .link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 960px) {
    .navMain__item .link {
        padding: 3rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .navMain__item .link {
        padding: 2rem 5vw;
    }
}

.navMain__item .link .en {
    font-family: "anton", sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 30px;
}

@media screen and (max-width: 960px) {
    .navMain__item .link .en {
        padding-right: 4rem;
    }
}

@media screen and (max-width: 960px) {
    .navMain__item .link .en {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .navMain__item .link .en {
        font-size: 1.6rem;
        padding-right: 2rem;
    }
}

.navMain__item .link .ja {
    color: #E60012;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 20px;
}

@media screen and (max-width: 960px) {
    .navMain__item .link .ja {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    .navMain__item .link .ja {
        font-size: 1.2rem;
    }
}

/*==================================================================================================
	orange.ver
==================================================================================================*/
body.-orange .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-orange.svg);
}

body.-orange .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-orange.svg);
}

body.-orange .navMain__item .link .ja {
    color: #FF761B;
}

/*==================================================================================================
	ocher.ver
==================================================================================================*/
body.-ocher .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-ocher.svg);
}

body.-ocher .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-ocher.svg);
}

body.-ocher .navMain__item .link .ja {
    color: #C4AB58;
}

/*==================================================================================================
	yellow.ver
==================================================================================================*/
body.-yellow .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-yellow.svg);
}

body.-yellow .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-yellow.svg);
}

body.-yellow .navMain__item .link .ja {
    color: #ECD01D;
}

/*==================================================================================================
	yellowgreen.ver
==================================================================================================*/
body.-yellowgreen .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-yellowgreen.svg);
}

body.-yellowgreen .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-yellowgreen.svg);
}

body.-yellowgreen .navMain__item .link .ja {
    color: #75C647;
}

/*==================================================================================================
	green.ver
==================================================================================================*/
body.-green .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-green.svg);
}

body.-green .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-green.svg);
}

body.-green .navMain__item .link .ja {
    color: #178045;
}

/*==================================================================================================
	paleblue.ver
==================================================================================================*/
body.-paleblue .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-paleblue.svg);
}

body.-paleblue .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-paleblue.svg);
}

body.-paleblue .navMain__item .link .ja {
    color: #18B1E7;
}

/*==================================================================================================
	blue.ver
==================================================================================================*/
body.-blue .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-blue.svg);
}

body.-blue .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-blue.svg);
}

body.-blue .navMain__item .link .ja {
    color: #264393;
}

/*==================================================================================================
	purple.ver
==================================================================================================*/
body.-purple .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-purple.svg);
}

body.-purple .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-purple.svg);
}

body.-purple .navMain__item .link .ja {
    color: #694D8B;
}

/*==================================================================================================
	pink.ver
==================================================================================================*/
body.-pink .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-pink.svg);
}

body.-pink .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-pink.svg);
}

body.-pink .navMain__item .link .ja {
    color: #EC6D8B;
}

/*==================================================================================================
	gray.ver
==================================================================================================*/
body.-gray .header .headerCont.-collapsed .humburger {
    background-image: url(../img/common/icon-close-gray.svg);
}

body.-gray .header .headerCont .humburger {
    background-image: url(../img/common/icon-hamburger-gray.svg);
}

body.-gray .navMain__item .link .ja {
    color: #656565;
}

/***********************************************
  Footer Container
************************************************/
footer {
    background-color: #000;
    padding: 7rem 0 4rem;
    z-index: 9999;
    position: relative;
}

@media screen and (max-width: 768px) {
    footer.-lightPage {
        position: relative;
        z-index: 10;
        margin-top: -3rem;
    }
}

footer .footerCont .footerInfo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 4.5rem;
}

@media screen and (max-width: 870px) {
    footer .footerCont .footerInfo {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerInfo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 3rem;
    }
}

footer .footerCont .footerInfo .footerLogo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    padding-right: 3rem;
}

@media screen and (max-width: 870px) {
    footer .footerCont .footerInfo .footerLogo {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        padding-bottom: 3rem;
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerInfo .footerLogo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 0;
    }
}

footer .footerCont .footerInfo .footerLogo .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 3rem;
}

@media screen and (max-width: 960px) {
    footer .footerCont .footerInfo .footerLogo .logo {
        margin-right: 2rem;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerInfo .footerLogo .logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

footer .footerCont .footerInfo .footerLogo .logo img {
    max-width: 187px;
}

@media screen and (max-width: 960px) {
    footer .footerCont .footerInfo .footerLogo .logo img {
        width: 160px;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerInfo .footerLogo .logo img {
        width: 140px;
    }
}

footer .footerCont .footerInfo .footerLogo .txt p {
    font-size: 1.4rem;
    line-height: 21px;
    font-weight: 500;
    color: #fff;
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerInfo .footerLogo .txt p {
        font-size: 1.2rem;
    }
}

footer .footerCont .footerSitemap .listSitemap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 820px;
}

footer .footerCont .footerSitemap .listSitemap__item {
    padding-right: 5rem;
    padding-bottom: 4rem;
    text-align: center;
}

@media screen and (max-width: 961px) {
    footer .footerCont .footerSitemap .listSitemap__item {
        padding-right: 4.5rem;
    }
}

@media screen and (max-width: 860px) {
    footer .footerCont .footerSitemap .listSitemap__item {
        padding-right: 4rem;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerSitemap .listSitemap__item {
        border-bottom: 1px solid #7F7F7F;
        padding: 0;
        width: 100%;
    }
}

footer .footerCont .footerSitemap .listSitemap__item:nth-child(6) {
    padding-right: 0;
}

footer .footerCont .footerSitemap .listSitemap__item .link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerSitemap .listSitemap__item .link {
        padding: 3rem;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerSitemap .listSitemap__item .link {
        padding: 2rem 5vw;
    }
}

footer .footerCont .footerSitemap .listSitemap__item .link .en {
    font-family: "anton", sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 30px;
    color: #fff;
}

@media screen and (max-width: 960px) {
    footer .footerCont .footerSitemap .listSitemap__item .link .en {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerSitemap .listSitemap__item .link .en {
        font-size: 1.6rem;
        padding-right: 2rem;
    }
}

footer .footerCont .footerSitemap .listSitemap__item .link .ja {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 20px;
}

@media screen and (max-width: 960px) {
    footer .footerCont .footerSitemap .listSitemap__item .link .ja {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {
    footer .footerCont .footerSitemap .listSitemap__item .link .ja {
        font-size: 1.2rem;
    }
}

footer .footerCont .copyRight {
    padding-top: 5rem;
}

footer .footerCont .copyRight p {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
}

@media screen and (max-width: 768px) {
    footer .footerCont .copyRight p {
        font-size: 1rem;
    }
}

/*==================================================================================================
gray.ver
==================================================================================================*/
body.-gray footer .btn.-btnRed {
    background-color: #656565 !important;
}

/*==================================================================================================
	TOP
==================================================================================================*/
.bannerCont {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    height: calc(100vh - 100px);
    padding-top: 10rem;
    padding-left: 5vw;
    min-height: 700px;
}

@media screen and (max-width: 960px) {
    .bannerCont {
        height: calc(100vh - 80px);
        min-height: 600px;
    }
}

@media screen and (max-width: 768px) {
    .bannerCont {
        height: 80vh;
        min-height: 550px;
        padding-top: 6rem;
    }
}

@media screen and (max-width: 480px) {
    .bannerCont {
        min-height: 300px;
    }
}

.bannerCont.bg1 {
    background-image: url(../img/top/banner-01.jpg);
}

@media screen and (max-width: 425px) {
    .bannerCont.bg1 {
        background-size: 200%;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .bannerCont.bg1 {
        background-size: 200%;
    }
}

.bannerCont.bg2 {
    background-image: url(../img/top/banner-02.jpg);
    background-color: #fff;
}

@media screen and (max-width: 426px) {
    .bannerCont.bg2 {
        background-size: 170%;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .bannerCont.bg2 {
        background-size: 170%;
    }
}

.bannerCont .roteteCont {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
}

.bannerCont .roteteCont .pageTtl {
    font-family: "anton", sans-serif;
    font-size: 14.7rem;
    line-height: 1;
    padding-bottom: 2rem;
    letter-spacing: 0.05em;
}

@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .bannerCont .roteteCont .pageTtl {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 960px) {
    .bannerCont .roteteCont .pageTtl {
        font-size: 10rem;
    }
}

@media screen and (max-width: 768px) {
    .bannerCont .roteteCont .pageTtl {
        font-size: 5.5rem;
    }
}

.bannerCont .roteteCont .pageDesc {
    background-color: #E60012;
    display: inline-block;
    position: relative;
    width: 730px;
    height: 84px;
    padding: 4em 1em;
}

@media screen and (max-width: 960px) {
    .bannerCont .roteteCont .pageDesc {
        width: 600px;
        height: 64px;
        padding: 2em 1em;
    }
}

@media screen and (max-width: 768px) {
    .bannerCont .roteteCont .pageDesc {
        width: 270px;
        height: 31px;
    }
}

.bannerCont .roteteCont .pageDesc span {
    font-weight: 900;
    color: #fff;
    vertical-align: baseline;
    font-size: 4rem;
    line-height: 1.3;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
    .bannerCont .roteteCont .pageDesc span {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .bannerCont .roteteCont .pageDesc span {
        font-size: 1.5rem;
    }
}

.-topPage .mContainer.-interview {
    z-index: 9;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(33.9%, #000000), color-stop(34%, #ffffff));
    background: -webkit-linear-gradient(bottom, #000000 33.9%, #ffffff 34%);
    background: linear-gradient(0deg, #000000 33.9%, #ffffff 34%);
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview {
        background: -webkit-gradient(linear, left bottom, left top, color-stop(70.9%, #000000), color-stop(71%, #ffffff));
        background: -webkit-linear-gradient(bottom, #000000 70.9%, #ffffff 71%);
        background: linear-gradient(0deg, #000000 70.9%, #ffffff 71%);
    }
}

.-topPage .mContainer.-interview .listInter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }
}

.-topPage .mContainer.-interview .listInter__item {
    width: 33.3%;
    margin-right: 3rem;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item {
        margin-right: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .-topPage .mContainer.-interview .listInter__item:last-child {
        margin-bottom: 0;
    }
    .-topPage .mContainer.-interview .listInter__item img {
        width: 100%;
    }
}

.-topPage .mContainer.-interview .listInter__item:last-child {
    margin-right: 0;
}

.-topPage .mContainer.-interview .listInter__item .image {
    position: relative;
}

.-topPage .mContainer.-interview .listInter__item .image .tag {
    position: absolute;
    background-color: #E60012;
    color: #fff;
    padding: 0 2.5rem;
    text-align: center;
    right: 0;
    top: 0;
}

@media screen and (max-width: 960px) {
    .-topPage .mContainer.-interview .listInter__item .image .tag {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item .image .tag {
        padding: 0.6rem 1rem;
    }
}

.-topPage .mContainer.-interview .listInter__item .image img {
    width: 100%;
}

.-topPage .mContainer.-interview .listInter__item .ttl {
    padding: 2rem;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item .ttl {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .-topPage .mContainer.-interview .listInter__item .ttl {
        padding: 5vw;
    }
}

.-topPage .mContainer.-interview .listInter__item .ttl .desc {
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item .ttl .desc {
        margin-bottom: 1rem;
    }
}

.-topPage .mContainer.-interview .listInter__item .ttl .desc p {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 36px;
}

@media screen and (max-width: 960px) {
    .-topPage .mContainer.-interview .listInter__item .ttl .desc p {
        font-size: 1.6rem;
        line-height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item .ttl .desc p {
        line-height: 27px;
    }
}

.-topPage .mContainer.-interview .listInter__item .ttl .date {
    font-weight: 500;
    font-size: 1.5rem;
}

.-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #E60012;
    font-weight: 500;
    font-size: 1.8rem;
}

@media screen and (max-width: 960px) {
    .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
        font-size: 1.6rem;
    }
}

.-topPage .mContainer.-news {
    padding: 13rem 0 11rem;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-news {
        padding: 8rem 0 6rem;
    }
}

.-topPage .mContainer.-news .newsList {
    margin-bottom: 3em;
}

.-topPage .mContainer.-news .newsList__item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1em;
    border-bottom: 1px solid #e0e0e0;
    color: white;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer.-news .newsList__item > a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 1em .5em;
    }
}

.-topPage .mContainer.-news .newsList__item > a > time {
    line-height: 1.5em;
    margin-right: 1em;
}

.-topPage .mContainer.-news .newsList__item > a > p {
    line-height: 1.5em;
    font-weight: bold;
}

.-topPage .mContainer.-news .newsList__item:first-child > a {
    padding-top: 0;
}

.-topPage .mContainer.-welfare {
    z-index: 8;
}

.-topPage .mContainer .guidelineCont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -1.5rem;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer .guidelineCont {
        margin: 0;
        padding-bottom: 7rem;
    }
}

.-topPage .mContainer .guidelineCont__item {
    padding: 1.5rem;
    width: 33.3%;
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer .guidelineCont__item {
        width: 100%;
        padding: 0;
        padding-bottom: 2rem;
    }
}

.-topPage .mContainer .guidelineCont__item .content:hover {
    display: block;
}

.-topPage .mContainer .guidelineCont__item .content .desc .txt {
    background-color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
}

.-topPage .mContainer .guidelineCont__item .content .desc .txt h4 {
    color: #E60012;
    font-size: 2.5rem;
    font-weight: bold;
    padding-bottom: 1.5rem;
}

@media screen and (max-width: 960px) {
    .-topPage .mContainer .guidelineCont__item .content .desc .txt h4 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer .guidelineCont__item .content .desc .txt h4 {
        font-size: 2rem;
        padding-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .-topPage .mContainer .guidelineCont__item .content .desc .txt p {
        text-align: left;
    }
}

.-topPage .mContainer .guidelineCont__item .content .desc .btnArea .btn {
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .-topPage .mContainer .guidelineCont__item .content .desc .btnArea .btn {
        padding: 1.7rem 5rem;
    }
}

@media screen and (max-width: 1100px) {
    .-topPage .mContainer .guidelineCont__item .content .desc .btnArea .btn .-icon:after {
        right: -5rem;
    }
}

/*==================================================================================================
	orange.ver
==================================================================================================*/
body.-orange .bannerCont .roteteCont .pageDesc {
    background-color: #FF761B;
}

body.-orange .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #FF761B;
}

body.-orange .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #FF761B;
}

/*==================================================================================================
	ocher.ver
==================================================================================================*/
body.-ocher .bannerCont .roteteCont .pageDesc {
    background-color: #C4AB58;
}

body.-ocher .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #C4AB58;
}

body.-ocher .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #C4AB58;
}

/*==================================================================================================
	yellow.ver
==================================================================================================*/
body.-yellow .bannerCont .roteteCont .pageDesc {
    background-color: #ECD01D;
}

body.-yellow .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #ECD01D;
}

body.-yellow .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #ECD01D;
}

/*==================================================================================================
	yellowgreen.ver
==================================================================================================*/
body.-yellowgreen .bannerCont .roteteCont .pageDesc {
    background-color: #75C647;
}

body.-yellowgreen .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #75C647;
}

body.-yellowgreen .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #75C647;
}

/*==================================================================================================
	green.ver
==================================================================================================*/
body.-green .bannerCont .roteteCont .pageDesc {
    background-color: #178045;
}

body.-green .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #178045;
}

body.-green .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #178045;
}

/*==================================================================================================
	paleblue.ver
==================================================================================================*/
body.-paleblue .bannerCont .roteteCont .pageDesc {
    background-color: #18B1E7;
}

body.-paleblue .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #18B1E7;
}

body.-paleblue .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #18B1E7;
}

/*==================================================================================================
	blue.ver
==================================================================================================*/
body.-blue .bannerCont .roteteCont .pageDesc {
    background-color: #264393;
}

body.-blue .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #264393;
}

body.-blue .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #264393;
}

/*==================================================================================================
	purple.ver
==================================================================================================*/
body.-purple .bannerCont .roteteCont .pageDesc {
    background-color: #694D8B;
}

body.-purple .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #694D8B;
}

body.-purple .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #694D8B;
}

/*==================================================================================================
	pink.ver
==================================================================================================*/
body.-pink .bannerCont .roteteCont .pageDesc {
    background-color: #EC6D8B;
}

body.-pink .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #EC6D8B;
}

body.-pink .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #EC6D8B;
}

/*==================================================================================================
	gray.ver
==================================================================================================*/
body.-gray .bannerCont .roteteCont .pageDesc {
    background-color: #656565;
}

body.-gray .-topPage .mContainer.-interview .listInter__item .image .tag {
    background-color: #656565;
}

body.-gray .-topPage .mContainer.-interview .listInter__item .ttl .date .red {
    color: #656565;
}

/*==================================================================================================
	NEWS
==================================================================================================*/
.pageLabel.-news {
    background-image: url(../img/news/page-label.jpg);
    background-position: 50% 60%;
}

.lContainer.-newsPage .mContainer {
    padding: 17rem 0 13rem !important;
}

@media screen and (max-width: 768px) {
    .lContainer.-newsPage .mContainer {
        padding: 6rem 0 7rem !important;
    }
}

.lContainer.-newsPage .mContainer:first-child {
    padding: 17rem 0 0 !important;
}

@media screen and (max-width: 768px) {
    .lContainer.-newsPage .mContainer:first-child {
        padding: 6rem 0 0 !important;
    }
}

.lContainer.-newsPage .mContainer:last-child {
    padding: 0 0 13rem !important;
}

@media screen and (max-width: 768px) {
    .lContainer.-newsPage .mContainer:last-child {
        padding: 0 0 7rem !important;
    }
}

.lContainer.-newsPage .newsList {
    margin-bottom: 3em;
}

.lContainer.-newsPage .newsList__item > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5em 1em;
    border-bottom: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
    .lContainer.-newsPage .newsList__item > a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 1em .5em;
    }
}

.lContainer.-newsPage .newsList__item > a:hover > time {
    opacity: .8;
}

.lContainer.-newsPage .newsList__item > a:hover > p {
    opacity: .8;
}

.lContainer.-newsPage .newsList__item > a > time {
    line-height: 1.5em;
    margin-right: 1em;
}

.lContainer.-newsPage .newsList__item > a > p {
    line-height: 1.5em;
    font-weight: bold;
}

.lContainer.-newsPage .newsList__item:first-child > a {
    padding-top: 0;
}

.lContainer.-newsPage .newsDetail > time {
    letter-spacing: .05em;
}

.lContainer.-newsPage .newsDetail > .detailTtl {
    color: #E60012;
    padding-bottom: .7em;
    margin-bottom: 1.7em;
    margin-top: .3em;
    border-bottom: 1px solid #cecece;
    font-size: 175%;
    font-weight: bold;
}

.lContainer.-newsPage .newsDetail .blockEditorContainer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.lContainer.-newsPage .newsDetail .btnArea {
    margin-top: 3em;
}

/*==================================================================================================
	orange.ver
==================================================================================================*/
body.-orange .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #FF761B;
}

/*==================================================================================================
	ocher.ver
==================================================================================================*/
body.-ocher .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #C4AB58;
}

/*==================================================================================================
	yellow.ver
==================================================================================================*/
body.-yellow .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #ECD01D;
}

/*==================================================================================================
	yellowgreen.ver
==================================================================================================*/
body.-yellowgreen .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #75C647;
}

/*==================================================================================================
	green.ver
==================================================================================================*/
body.-green .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #178045;
}

/*==================================================================================================
	paleblue.ver
==================================================================================================*/
body.-paleblue .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #18B1E7;
}

/*==================================================================================================
	blue.ver
==================================================================================================*/
body.-blue .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #264393;
}

/*==================================================================================================
	purple.ver
==================================================================================================*/
body.-purple .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #694D8B;
}

/*==================================================================================================
	pink.ver
==================================================================================================*/
body.-pink .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #EC6D8B;
}

/*==================================================================================================
	gray.ver
==================================================================================================*/
body.-gray .lContainer.-newsPage .newsDetail > .detailTtl {
    color: #656565;
}

/*==================================================================================================
	GUIDELINE
==================================================================================================*/
.pageLabel.-contact {
    background-image: url(../img/contact/page-label.jpg);
    background-position: 50% 60%;
}

.lContainer.-contactPage > .mContainer {
    padding-bottom: 0;
    margin-bottom: 10em;
}

.lContainer.-contactPage > .mContainer:first-child {
    margin-bottom: 0;
}

.lContainer.-contactPage .-mb0 {
    padding-bottom: 0;
}

.lContainer.-contactPage .basicText > a {
    text-decoration: underline;
}

.lContainer.-contactPage .blockEditorContainer .container .mContainer {
    padding-bottom: 0;
}

.lContainer.-contactPage .blockEditorContainer .container .mContainer:nth-child(2) {
    padding-top: 0;
}

.lContainer.-contactPage .blockEditorContainer .container .mContainer:nth-child(n+3) {
    padding-top: 11rem !important;
}

.lContainer.-contactPage .blockEditorContainer .container .mContainer.shewBg {
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
}

.lContainer.-contactPage .blockEditorContainer .container .mContainer.shewBg .maxSkew {
    -webkit-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
}

.lContainer.-contactPage .new {
    padding-bottom: 0;
}

.lContainer.-contactPage .new .inner {
    padding: 0;
}

.lContainer.-contactPage .new .bnrCont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lContainer.-contactPage .new .bnrCont__item {
    width: 31%;
    margin: 0 1% 2% 1%;
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .new .bnrCont__item {
        width: 41%;
    }
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .new .bnrCont__item {
        width: 48%;
    }
}

.lContainer.-contactPage .halfway .inner {
    padding: 0;
}

.lContainer.-contactPage .halfway .basicText {
    padding-bottom: 0;
}

.lContainer.-contactPage .form {
    padding-bottom: 0;
}

.lContainer.-contactPage .form .basicText .red {
    background-color: #E02C2C;
    color: #fff;
    padding: 0 0.3em;
    margin-right: 0.2em;
}

.lContainer.-contactPage .btnArea {
    text-align: center;
}

.lContainer.-contactPage .btnArea .btn {
    font-weight: bold;
    background-color: #E60012;
    position: relative;
}

.lContainer.-contactPage .btnArea .btn:after {
    content: '\f054';
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 13px;
    height: 21px;
    right: 5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 960px) {
    .lContainer.-contactPage .btnArea .btn:after {
        right: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .btnArea .btn:after {
        right: 5rem;
        height: 17px;
    }
}

.lContainer.-contactPage .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .form-group {
        display: block;
    }
}

.lContainer.-contactPage .form-group label {
    width: 30%;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .form-group label {
        width: 100%;
        margin-bottom: .5em;
    }
}

.lContainer.-contactPage .form-group .form-check, .lContainer.-contactPage .form-group .form-control {
    width: 70%;
    height: auto !important;
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .form-group .form-check, .lContainer.-contactPage .form-group .form-control {
        width: 100%;
    }
}

.lContainer.-contactPage .form-group .form-check label, .lContainer.-contactPage .form-group .form-control label {
    font-weight: normal;
}

.lContainer.-contactPage .form-group textarea {
    height: 9em !important;
}

.lContainer.-contactPage .form-group .form-check {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lContainer.-contactPage .form-group .form-check:nth-child(n+3) {
    width: 70%;
    margin-left: 30%;
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .form-group .form-check:nth-child(n+3) {
        width: 100%;
        margin-left: 0;
    }
}

.lContainer.-contactPage .form-group .form-check .form-check-input {
    margin-top: 0px;
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .form-group .form-check .form-check-input {
        margin-top: -4px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .lContainer.-contactPage .form-group .form-check .form-check-input {
        margin-top: -8px;
    }
}

@media screen and (-ms-high-contrast: active) and (max-width: 768px), screen and (-ms-high-contrast: none) and (max-width: 768px) {
    .lContainer.-contactPage .form-group .form-check .form-check-input {
        margin-top: -12px;
    }
}

.lContainer.-contactPage .form-group .form-check .form-check-label {
    padding-left: 2%;
    width: 97%;
}

.lContainer.-contactPage .form-group .necessary_input {
    background-color: #E02C2C;
    color: #fff;
    padding: 0 0.3em;
    margin-right: 0.2em;
}

.lContainer.-contactPage form input, .lContainer.-contactPage form textarea, .lContainer.-contactPage form select {
    border: 1px solid #CDD6DD;
    border-radius: 0.2em;
    padding: 0.4em 0.8em;
    font-size: 1.6rem;
}

.lContainer.-contactPage form .btnArea {
    margin-top: 4em;
    text-align: center;
}

.lContainer.-contactPage form .btnArea button {
    max-width: 330px;
    width: 100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.lContainer.-contactPage form .btnArea button:hover {
    opacity: 0.8;
}

.lContainer.-contactPage .myFormConfirm .form-control {
    border: none;
    font-size: 100%;
    padding: .375rem 0;
}

.lContainer.-contactPage .myFormConfirm .btnArea.-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lContainer.-contactPage .myFormConfirm .btnArea.-list .btn.-bgBack {
    margin-right: 1em;
    background-color: #b7b7b7;
    position: relative;
}

.lContainer.-contactPage .myFormConfirm .btnArea.-list .btn.-bgBack:after {
    content: '\f053';
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 13px;
    height: 21px;
    left: 5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 960px) {
    .lContainer.-contactPage .myFormConfirm .btnArea.-list .btn.-bgBack:after {
        left: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .myFormConfirm .btnArea.-list .btn.-bgBack:after {
        left: 5rem;
        height: 17px;
    }
}

@media screen and (max-width: 768px) {
    .lContainer.-contactPage .myFormConfirm .btnArea.-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .lContainer.-contactPage .myFormConfirm .btnArea.-list .btn {
        margin-bottom: 1em;
    }
    .lContainer.-contactPage .myFormConfirm .btnArea.-list .btn.-bgBack {
        margin-right: 0;
        background-color: #b7b7b7;
    }
}

.lContainer.-contactPage .alert {
    padding: 1em 2em;
    margin-bottom: 4rem;
    border: 1px solid #ed6d6d;
    font-size: 90%;
    color: #E02C2C;
}

.lContainer.-contactPage .alert > strong {
    font-size: 120%;
}

.lContainer.-contactPage .alert .close:hover {
    color: #E02C2C;
}

#edittingNowOnTheOurCms .lContainer.-contactPage .blockEditorContainer .container .mContainer .subTitle {
    border-bottom: none !important;
}

#edittingNowOnTheOurCms .lContainer.-contactPage .blockEditorContainer .container .mContainer .subTitle .en {
    color: #000 !important;
}

/*==================================================================================================
orange.ver
==================================================================================================*/
body.-orange .lContainer.-contactPage .btnArea .btn {
    background-color: #FF761B;
}

/*==================================================================================================
ocher.ver
==================================================================================================*/
body.-ocher .lContainer.-contactPage .btnArea .btn {
    background-color: #C4AB58;
}

/*==================================================================================================
yellow.ver
==================================================================================================*/
body.-yellow .lContainer.-contactPage .btnArea .btn {
    background-color: #ECD01D;
}

/*==================================================================================================
yellowgreen.ver
==================================================================================================*/
body.-yellowgreen .lContainer.-contactPage .btnArea .btn {
    background-color: #75C647;
}

/*==================================================================================================
green.ver
==================================================================================================*/
body.-green .lContainer.-contactPage .btnArea .btn {
    background-color: #178045;
}

/*==================================================================================================
paleblue.ver
==================================================================================================*/
body.-paleblue .lContainer.-contactPage .btnArea .btn {
    background-color: #18B1E7;
}

/*==================================================================================================
blue.ver
==================================================================================================*/
body.-blue .lContainer.-contactPage .btnArea .btn {
    background-color: #264393;
}

/*==================================================================================================
purple.ver
==================================================================================================*/
body.-purple .lContainer.-contactPage .btnArea .btn {
    background-color: #694D8B;
}

/*==================================================================================================
pink.ver
==================================================================================================*/
body.-pink .lContainer.-contactPage .btnArea .btn {
    background-color: #EC6D8B;
}

/*==================================================================================================
gray.ver
==================================================================================================*/
body.-gray .lContainer.-contactPage .btnArea .btn {
    background-color: #000;
}
