@charset "UTF-8";
/* CSS Document */

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 2;
    letter-spacing: 0.15rem;
    color: #191919;
    margin: 0;
    position: relative;
    font-weight: 500;
    background-color: #fff;
}

@media (max-width: 500px) {
    body {
        font-size: 1.4rem;
        letter-spacing: normal;
    }
}

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

a {
    color: #191919;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: inherit;
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* ------------------------------------- /
/   スマホ表示・非表示
/* ------------------------------------- */

.sp {
    display: none !important;
}

.pc768 {
    display: block !important;
}

.sp768 {
    display: none !important;
}

.pc1024 {
    display: block !important;
}

.sp1024 {
    display: none !important;
}

.pc1200 {
    display: block !important;
}

.sp1200 {
    display: none !important;
}

@media only screen and (max-width: 1200px) {

    .pc1200 {
        display: none !important;
    }

    .sp1200 {
        display: block !important;
    }
}

@media only screen and (max-width: 1024px) {

    .pc1024 {
        display: none !important;
    }

    .sp1024 {
        display: block !important;
    }
}

@media only screen and (max-width: 768px) {
    .pc768 {
        display: none !important;
    }

    .sp768 {
        display: block !important;
    }
}

@media only screen and (max-width: 500px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.jc-fs {
    justify-content: flex-start;
}

.ai-c {
    align-items: center;
}

.anchor {
    padding-top: 100px;
    margin-top: -100px;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sec1 {
    margin: 100px auto;
}

.sec2 {
    padding: 100px 0;
}

.hd_btm {
    height: 120px;
}


@media only screen and (max-width: 1200px) {
    .inner {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 768px) {
    .anchor {
        padding-top: 50px;
        margin-top: -50px;
    }

    .sec1 {
        margin: 80px auto;
    }

    .sec2 {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 500px) {
    .sec1 {
        margin: 50px auto;
    }

    .sec2 {
        padding: 50px 0;
    }
}

/* ----------------------------------------------------------------------------
/  head_area
/ ---------------------------------------------------------------------------- */

.main-logo {
    font-size: clamp(20px, 3vw, 36px);
    color: #fff;
}

header {
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    width: 100%;
}

header .inner {
    padding: 20px 20px;
    border-bottom: 2px solid #fff;
}


header p,
header a {
    color: #fff;
    letter-spacing: 0.01em;
}

header a:hover {
    color: #fff;
}


header .menu_nav {
    max-width: 650px;
    width: 100%;
}

.menu_nav ul li {
    font-size: clamp(14px, 3vw, 15px);
}

/* change-color */
header.change-color,
header.contact {
    padding: 5px 0;
    border-bottom: 2px solid #fff;
    background-color: #191919;
}

header.change-color .inner,
header.contact .inner {
    padding: 0 20px;
    border-bottom: none;
}

@media only screen and (max-width:500px) {
    header .inner {
        padding: 5px 20px;
        border-bottom: 2px solid #fff;
    }

    /* change-color */
    header.change-color,
    header.contact {
        padding: 5px 0;
        border-bottom: 2px solid #fff;
        background-color: #191919;
    }

    header.change-color .inner,
    header.contact .inner {
        padding: 0 20px;
        border-bottom: none;
    }
}

/* ----------------------------------------------------------------------------
/  top
/ -----------------------------------------------------------------------------
/ top_main_area
/ ---------------------------------------------------------------------------- */

.main_area {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper--wrapper {
    width: 100%;
    height: 100%;
}

.p-swiper-container {
    position: relative;
}

.swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden;
    backface-visibility: hidden;
}


.main_area .inner {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.main_area .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.main_area .txt h2 {
    text-align: center;
    font-size: clamp(30px, 3vw, 60px);
    color: #fff;
    line-height: 1;
    display: inline-block;
}

.main_area .txt h2 span {
    text-align: center;
    font-size: clamp(18px, 3vw, 32px);
    margin: 15px auto;
    display: inline-block;
}

.main_area .txt h2 span.top {
    margin-bottom: 40px;
}

.main_area .img {
    display: block;
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 100%;
    height: 100%;
    width: 150px;
    height: 150px;
}

.main_area .img img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.main_area .img img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    animation: 50s linear infinite rotation1;
}

.main_area .img img:first-child:hover {
    animation: none;
}

.main_area .img img:hover {
    opacity: 1;
}

.main_area .img img:last-child:hover {
    width: 90%;
}

@keyframes rotation1 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width:1200px) {
    .main_area .img {
        right: 20px;
        width: 100px;
        height: 100px;
    }
}


@media only screen and (max-width:768px) {
    .swiper-slide {
        height: 400px !important;
    }

    .swiper-slide.bl .txt h2 {
        text-shadow: 1px 1px 10px #191919;
    }

}

@media only screen and (max-width:500px) {
    .main_area .img {
        width: 80px;
        height: 80px;
    }
}

/* ----------------------------------------------------------------------------
/  about_area
/ ---------------------------------------------------------------------------- */
.bd_ttl h2 {
    padding-left: 120px;
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 3vw, 15px);
    position: relative;
    margin-bottom: 40px;
    font-weight: 400;
    color: #71ABA5;
}

.bd_ttl h2::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: #71ABA5;
}

.h2_ttl h2 {
    font-size: clamp(12px, 10vw, 15px);
    vertical-align: baseline;
    margin-bottom: 80px;
    font-weight: 500;
}

.h2_ttl h2 span {
    font-size: clamp(30px, 8vw, 96px);
    font-family: 'Jost', sans-serif;
    padding-right: 15px;
}

.h2_ttl.center h2 {
    text-align: center;
    line-height: 1.6;
}

.about_area .inner {
    position: relative;
}

.back_txt {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: clamp(80px, 14vw, 170px);
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #F2FBFB;
    z-index: -1;
    line-height: 1;
}

.back_txt::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
}

.back_txt.active::before {
    width: 0;
    transition: 0.5s;
}

.about_area h3 {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 80px;
}

.about_area p.txt {
    font-size: clamp(14px, 3vw, 21px);
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
}

@media only screen and (max-width:768px) {
    .h2_ttl h2 {
        margin-bottom: 30px;
    }

    .about_area h3 {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width:500px) {
    .bd_ttl h2 {
        padding-left: 60px;
        font-family: 'Jost', sans-serif;
        font-size: clamp(12px, 3vw, 15px);
    }

    .bd_ttl h2::before {
        width: 40px;
    }

    .bd_ttl h2 {
        margin-bottom: 30px;
    }


}

/* ----------------------------------------------------------------------------
/  case_area
/ ---------------------------------------------------------------------------- */
.case_area {
    background-color: #E6F0F0;
    position: relative;
}

.case_area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 999;
}

.case_area.active::before {
    width: 0;
    transition: 1s;
}



/* ----------------------------------------------------------------------------
/  serv_area
/ ---------------------------------------------------------------------------- */
.serv_area .flex {
    align-items: stretch;
}

.serv_area .box {
    width: 33.3333%;
    border-top: 20px solid #191919;
    border-bottom: 2px solid #191919;
    border-right: 2px solid #191919;
    box-sizing: border-box;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
}

.serv_area .box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background-color: #191919
}

.serv_area .box.active::before {
    height: 0;
    transition: 0.8s;
}



.serv_area .box:first-child {
    border-left: 2px solid #191919;
}

.serv_area .box .num {
    font-size: clamp(12px, 3vw, 15px);
    color: #71ABA5;
    padding-left: 20px;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    position: relative;
}

.serv_area .box .num::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: #71ABA5;
}

.serv_area .box .cont {
    padding-right: 20px;
    padding-left: 20px;
}

.serv_area .box .cont h3 {
    font-size: clamp(18px, 1.5vw, 25px);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.serv_area .box .cont h4 {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #50958E;
    letter-spacing: 0.01em;
}

.serv_area .box .cont p.txt {
    margin-bottom: 30px;
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 0.01em;
    min-height: 230px;
}

.serv_area .box .cont img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width:1024px) {
    .serv_area .box .cont p.txt br {
        display: none;
    }

    .serv_area .box .cont p.txt br.block {
        display: block;
    }
}

@media only screen and (max-width:768px) {
    .serv_area .box .cont p.txt {
        min-height: 350px;
    }

    .serv_area .box .cont h3 {
        font-size: clamp(16px, 1.5vw, 25px);
    }
}

@media only screen and (max-width:500px) {

    .serv_area .box .cont h3,
    .serv_area .box .cont h4 {}

    .serv_area .box .cont h3 br,
    .serv_area .box .cont h4 br {
        display: none !important;
    }

    .serv_area .box {
        width: 100%;
        border: 2px solid #191919;
        border-top: 20px solid #191919;
        margin-bottom: 10px;
    }

    .serv_area .box .cont p.txt {
        min-height: 100%;
    }

    .serv_area .box .cont img {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ----------------------------------------------------------------------------
/  partner_area
/ ---------------------------------------------------------------------------- */
.partner_area {
    background-color: #F6F6F4;
}

.partner_area .box a {
    display: block;
    width: 23%;
}

.partner_area .box a img {
    width: 100%;
    height: 100%;
}

@media only screen and (max-width:500px) {
    .partner_area .box a {
        width: 48%;
        margin-bottom: 20px;
    }
}

/* ----------------------------------------------------------------------------
/  company_area
/ ---------------------------------------------------------------------------- */
.company_area .inner {
    max-width: 800px;
}

.company_area dl {
    padding: 20px 0;
    border-bottom: 1px solid #BEBEB2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}

.company_area dl dt {
    width: 20%;
    font-weight: 700;
}

.company_area dl dd {
    width: 80%;
}

.company_area dl dd h3 {
    color: #50958E;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.company_area dl dd h3::before {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: #71ABA5;
}

.company_area dl dd ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.company_area dl dd ul li::before {
    position: absolute;
    content: "●";
    top: 3px;
    left: 0;
    font-size: clamp(12px, 3vw, 14px);
    color: #71ABA5;
}

.company_area dl dd a {
    margin-left: 20px;
    display: inline-block;
}



.company_area dl dd a p {
    font-size: clamp(12px, 3vw, 14px);
    color: #A2A2A2;
    border-bottom: 1px solid #A2A2A2;
    line-height: 1.2;
}

.company_area dl dd a img {
    width: 16px;
    height: 13px;
    padding-left: 5px;
}

.company_area dl dd a:hover {
    opacity: 1;
}

.company_area dl dd a:hover {
    filter: brightness(50%);
}

@media only screen and (max-width:500px) {
    .company_area dl dt {
        width: 25%;
    }

    .company_area dl dd {
        width: 75%;
    }

    .company_area dl dd a {
        margin-left: 0px;
    }
}

/* ----------------------------------------------------------------------------
/  recruit_area
/ ---------------------------------------------------------------------------- */
.recruit_area {
    background-color: #E6F0F0;
    position: relative;
    width: 100%;

}

.recruit_area .index {
    position: relative;
    z-index: 1;
}

.recruit_area .inner {
    position: relative;
}

.recruit_area .back_txt {
    text-align: right;
    top: 5%;
    left: auto;
    right: 0;
    transform: translate(0, 0);
    color: #EEF6F6;
    line-height: 1.1;
    z-index: -10;
}

.recruit_area .back_txt::before {
    background-color: #E6F0F0;
    right: 0;
    left: auto;
}

.recruit_area .area {
    width: 100%;
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
}

.recruit_area .img {
    position: absolute;
    width: 50vw;
    height: 550px;
    bottom: 0;
    left: 0;
    z-index: 0;
}


.recruit_area .img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background-color: #E6F0F0;
}

.recruit_area .img.active::before {
    width: 0;
    transition: 0.5s;
}

.recruit_area .img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}

.recruit_area .area .box {
    max-width: 660px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.recruit_area .area .box h3 {
    font-size: clamp(18px, 3vw, 28px);
    color: #fff;
    font-weight: 700;
    background-color: #191919;
    padding: 10px 20px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 40px;
}

.recruit_area .area .box .cont {
    max-width: 500px;
    margin-left: auto;
}

.recruit_area .area .box .cont p {
    margin-bottom: 50px;
    letter-spacing: 0.01em;
}

.entry_btn a {
    display: block;
    width: 100%;
    max-width: 250px;
    padding: 15px 15px;
    border-radius: 50px;
    background-color: #50958E;
    color: #fff;
    text-align: center;
    border: 1px solid #50958E;
}

.entry_btn.contact a {
    margin: 0 auto;
}

.entry_btn a:hover {
    color: #50958E;
    background-color: #fff;
    transition: 0.2s;
}



@media only screen and (max-width:768px) {
    .recruit_area .area {
        padding-top: 0px;
        padding-bottom: 8s0px;
    }

    .recruit_area .img {
        width: 50vw;
        height: 200px;
    }

    .recruit_area .img img {
        width: 100%;
        height: 200px;
    }
}

@media only screen and (max-width:500px) {
    .recruit_area .img {
        width: 60vw;
        height: 150px;
        left: auto;
        right: 0;
        opacity: 0.5;
    }

    .recruit_area .img img {
        height: 150px;
    }

    .recruit_area .area .box .cont p br {
        display: none;
    }
}

/* ----------------------------------------------------------------------------
/  access_area
/ ---------------------------------------------------------------------------- */
.access_area .lft {
    width: 28%;
}

.access_area .lft h3 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
    margin-bottom: 20px;
}

.access_area .lft p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.access_area .lft p:last-child {
    margin-bottom: 0px;
}

.access_area .rgt {
    width: 70%;
}

.access_area .rgt iframe {
    width: 100%;
    height: 300px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%)
}



@media only screen and (max-width:768px) {
    .access_area .lft {
        width: 100%;
        order: 2;
    }

    .access_area .rgt {
        width: 100%;
        order: 1;
        margin-bottom: 20px;
    }

    .access_area .rgt iframe {
        height: 200px;
    }

}

/* ----------------------------------------------------------------------------
/  form
/ ---------------------------------------------------------------------------- */
.contact_area {
    background-color: #F6F6F4;
}

.contact_area .inner {
    max-width: 920px;
}

.contact_area .txt {
    text-align: center;
    margin-bottom: 50px;
}

form dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form dl dt {
    width: 35%;
    position: relative;
}

form dl dt::before {
    position: absolute;
    content: "必須";
    font-size: clamp(12px, 3vw, 14px);
    padding: 0px 10px;
    border: 1px solid #191919;
    border-radius: 50px;
    color: #191919;
    right: 0;
    top: 0;
}

form dl dd {
    width: 60%;
    margin-bottom: 30px;
}

form dl dd input {
    font-size: clamp(14px, 3vw, 16px);
    color: #191919 !important;
    border: none;
    outline: none;
    padding: 15px 10px;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

form dl dd textarea {
    font-size: clamp(14px, 3vw, 16px);
    color: #191919 !important;
    border: none;
    outline: none;
    padding: 15px 10px;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

form dl dd select {
    width: 300px;
    font-size: clamp(14px, 3vw, 16px);
    border: none;
    outline: none;
    padding: 15px 10px;
    background-color: #fff;
    color: #191919 !important;
    box-sizing: border-box;
}

form select {
    -webkit-appearance: none;
    appearance: none;
    /* デフォルトの矢印を非表示 */
}

form select::-ms-expand {
    display: none;
    /* デフォルトの矢印を非表示(IE用) */
}

form .select {
    position: relative;
    display: inline-block;
    width: auto;
}

/* セレクトボックスの矢印デザイン変更 */
form .select::before {
    /* くの字の表示設定 */
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 7px;
    /* くの字を山なりに見た時、左側の長さ */
    height: 7px;
    /* くの字を山なりに見た時、右側の長さ */
    border-top: 1px solid #000;
    /* くの字を山なりに見た時、左側の太さと色 */
    border-right: 1px solid #000;
    /* くの字を山なりに見た時、右側の太さと色 */
    transform: rotate(135deg);
    /* くの字の向き */
}


@media only screen and (max-width:768px) {

    form dl dt {
        width: auto;
        padding-right: 70px;
        margin-bottom: 20px;
    }

    form dl dd {
        width: 100%;
    }
}


/* ----------------------------------------------------------------------------
/  policy
/ ---------------------------------------------------------------------------- */

/* policy */
.policy_area {
    border: 1px solid #191919;
    margin-bottom: 50px;
    padding: 5px 5px 5px 0px;
}

.policy_area .box {
    overflow-y: scroll;
    padding: 35px;
    height: 270px;
}

.policy_area .box::-webkit-scrollbar {
    width: 10px;
}

/* .policy_area .box::-webkit-scrollbar-track {
    background-color: #E8E8E8;
} */

.policy_area .box::-webkit-scrollbar-thumb {
    background-color: #A2A2A2;
}

.policy_area .box h3 {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 20px;
    text-align: center;
}

.policy_area .box h4 {
    font-weight: 500;
}

.policy_area .box p {
    margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
    .policy_area {
        margin-bottom: 30px;
    }
}

/* .Form-CheckItem-Label */

.Form-CheckItem-Label {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 50px;
}

.Form-CheckItem-Label-Input {
    display: none;
}

.Form-CheckItem-Label-SquareIcon {
    border: 1px solid #191919;
    display: block;
    flex: none;
    width: 15px;
    height: 15px;
    background: #fff;
}

@media screen and (max-width: 500px) {
    .Form-CheckItem-Label-SquareIcon {
        width: 12px;
        height: 12px;
    }

    .Form-CheckItem-Label {
        margin-bottom: 30px;
    }
}

/* .Form-CheckItem-Label-Text */

.Form-CheckItem-Label-Text {
    padding-left: 8px;
    font-size: clamp(14px, 3vw, 16px);
}

.red-txt {
    color: #FF2323;
}

@media screen and (max-width: 500px) {
    .Form-CheckItem-Label-Text {
        padding-left: 6px;
    }
}

/* .Form-Btn */

.Form-Btn {
    display: block !important;
    border: none !important;
    outline: none !important;
    max-width: 360px !important;
    padding: 25px 0 !important;
    font-size: clamp(14px, 3vw, 16px);
    width: 100% !important;
    background-color: #50958E !important;
    border-radius: 50px !important;
    color: #fff !important;
    margin: 0 auto !important;
    text-align: center !important;
    opacity: 0.2;
    pointer-events: none;
    transition: all 0.2s;
    min-height: 75px !important;
}

/* .Form-Btn.isActive */

.Form-Btn.isActive {
    opacity: 1;
    pointer-events: inherit;
    cursor: pointer;
}

.center-form {
    text-align: center;
}

.Form-CheckItem {
    display: inline-block;
}

/* .Form-CheckItem-Label-Input:checked+.Form-CheckItem-Label-SquareIcon:before {
    content: "■";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    color: #004099;
} */

.Form-CheckItem-Label-Input:checked+*:before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #50958E;
    transform-origin: bottom left;
    transform: rotateZ(90deg);
}

.Form-CheckItem-Label-Input:checked+*:after {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #50958E;
    transform-origin: bottom left;
    transform: rotateZ(0deg);
}

.Form-CheckItem-Label-Input:checked+* {
    width: 0;
    height: 0;
    transform: translate(8px, 8px) rotateZ(-135deg) scale(1.1);
}

@media screen and (max-width: 480px) {
    .Form-CheckItem-Label-Input:checked+* {
        transform: translate(5px, 7px) rotateZ(-135deg) scale(1.5);
    }
}

@media only screen and (max-width:500px) {
    .policy_area .box {
        padding: 35px 20px;
    }
}


/* ----------------------------------------------------------------------------
/  footer
/ ---------------------------------------------------------------------------- */
footer {
    background-color: #191919;
}

footer .lft {
    max-width: 230px;
    width: 100%;
}

.menu-logo {
    font-family: 'Jost', sans-serif;
    font-size: clamp(30px, 12vw, 90px);
    color: #fff;
    line-height: 1;
    margin-bottom: 200px;
    display: block;
}

.menu-logo:hover {
    color: #fff;
}

.sns-box {
    max-width: 120px;
    margin-bottom: 20px;
}

.sns-box a {
    width: 40%;
}

.sns-box a:hover {
    opacity: 1;
}

.sns-box a:hover img {
    width: 95%;
    margin: 0 auto;
    transition: 0.2s;
}

.copy,
.copy a {
    font-family: 'Jost', sans-serif;
    font-size: clamp(12px, 3vw, 14px);
    color: #98BCBA;
}

.cmn-nav {
    max-width: 550px;
    width: 100%;
}

.cmn-nav li {
    width: 48%;
    margin-bottom: 30px;
}

.cmn-nav li a {
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-size: clamp(20px, 3vw, 54px);
    font-weight: 500;
    line-height: 1;
    display: block;
}

.cmn-nav li a span {
    width: 48%;
    color: #FFFFFF;
    font-family: 'Jost', sans-serif;
    font-size: clamp(10px, 3vw, 15px);
    vertical-align: top;
}

@media only screen and (min-width:768px) {
    .cmn-nav li a:hover span {
        font-size: clamp(15px, 3vw, 20px);
    }
}


@media only screen and (max-width:768px) {
    footer.sec2 {
        padding-bottom: 20px;
    }

    footer .lft {
        max-width: 100%;
    }

    .menu-logo {
        font-family: 'Jost', sans-serif;
        font-size: clamp(30px, 11vw, 90px);
        margin-bottom: 50px;
    }

    .sns-box {
        max-width: 80px;
        margin-bottom: 20px;
    }

    footer .cmn-nav ul {
        max-width: 400px;
        width: 100%;
        margin-bottom: 40px;
    }
}

/* ----------------------------------------------------------------------------
/  pagetop
/ ---------------------------------------------------------------------------- */

.pagetop a {
    position: fixed;
    bottom: 5%;
    right: 5%;
    background-color: #fff;
    color: #191919;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    /* border: 1px solid #BEBEB2; */
    z-index: 9999;
}

.pagetop a p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* ----------------------------------------------------------------------------
/  fadein
/ ---------------------------------------------------------------------------- */
.inview {
    opacity: 0;
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.img-blur {
    -webkit-animation-name: imageBlur;
    animation-name: imageBlur;
    opacity: 1;
    transition: .3s;
}

@-webkit-keyframes imageBlur {
    from {
        opacity: 0;
        -webkit-filter: blur(15px);
        -moz-filter: blur(15px);
        -ms-filter: blur(15px);
        -o-filter: blur(15px);
        filter: blur(15px);
    }

    to {
        opacity: 1;
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -ms-filter: blur(0px);
        -o-filter: blur(0px);
        filter: blur(0px);
    }
}

/* ----------------------------------------------------------------------------
/  mail
/ ---------------------------------------------------------------------------- */
/* #formarea b,
#formarea #text {
    display: none;
} */

table.formTable th {
    color: #fff !important;
    background-color: #50958E !important;
}

input#submit_button,
input#reset_button {
    background-color: #50958E !important;
    border: 1px solid #50958E !important;
}

.not-area {
    visibility: hidden;
}

.not-area table {
    visibility: visible;
    margin-top: -250px !important;
}

.not-area p {
    visibility: visible;
}