@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/


body {
    background-color: #f8f7f6;
    font-size: 14px;
    line-height: 1.5;
    color: #515354;
    font-family: "Noto Sans JP", sans-serif;
}

body.fixed {
    overflow: hidden;
}

.inner {
    width: 100%;
    max-width: 1060px;
    padding: 0 30px;
    margin: 0 auto;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 12px;
    color: red;
}

/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 17px 40px 17px 32px;
    background-color: #fff;
    z-index: 9;
}
#header.shadow {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#header .inner {
    max-width: none;
    padding: 0;
}
#header .logo {
    width: 147px;
}
#header .mainMenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 160px);
}
#header .mainMenu .menuList {
    display: flex;
    flex-wrap: wrap;
    margin-right: 30px;
}
#header .mainMenu .menuList li:not(:last-child) {
    margin-right: 38px;
}
#header .mainMenu .menuList li a {
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #515354;
    letter-spacing: 0.6px;
}
#header .mainMenu .menuList li a::before {
    content: "";
    position: absolute;
    bottom:-3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: #2dc2c0;;
    transition: all .3s;
}
#header .mainMenu .menuList li:not(:last-child) a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #515354;
}
#header .mainMenu .menuPhone {
    text-align: center;
    margin-top: 2px;
    margin-right: 17px;
}
#header .mainMenu .menuPhone a {
    color: #515354;
}
#header .mainMenu .menuPhone a span {
    display: block;
}
#header .mainMenu .menuPhone a .phoneNumber {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    padding-left: 13px;
    line-height: 1;
    letter-spacing: 1px;
}
#header .mainMenu .menuPhone a .phoneNumber::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
    width: 18px;
    aspect-ratio: 1/1;
    background: url(../images/common/icon-phone.png) no-repeat center center/100%;
}
#header .mainMenu .menuPhone a .phoneNote {
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    letter-spacing: -0.4px;
    margin-top: -2px;
}
#header .mainMenu .contact {
    max-width: 297px;
    margin: 0;
}
#header .mainMenu .contact li:first-child {
    width: 138px;
}
#header .mainMenu .contact li:last-child {
    width: 145px;
}
#header .mainMenu .contact li a {
    font-size: 12px;
    border-radius: 8px;
    padding: 11px 5px;
}
#header .mainMenu .contact li:last-child a {
    padding: 13px 5px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.contact li {
    width: calc(50% - 9px);
}
.contact li a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    color: #ff8c00;
    background-color: #fff;
    border: 2px solid #ff8c00;
    border-radius: 10px;
    padding: 10px 5px;
}
.contact li a .name {
    position: relative;
    padding-right: 15px;
}
.contact li a .name::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 12px;
    aspect-ratio: 1/1;
    background: url(../images/common/icon-inquiry-orange.svg) no-repeat center center/100%;
} 
.contact li:last-child a {
    background: linear-gradient(90deg, rgba(237,158,27,1) 0%, rgba(252,103,0,1) 100%);
    color: #fff;
    border: none;
    padding: 13px 5px;
}

/* CONTENT */
#content {
    width: 100%;
}

.areaTitle {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: -3.5px;
    margin-bottom: 12px;
}
.titleSub {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.7px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.titleSub .blue {
    font-weight: 900;
    color: #33b8b5;
}

.areaBtn {
    text-align: center;
    margin-bottom: 30px;
}
.areaBtn .btnSub {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}
.areaBtn .btnSub::before, 
.areaBtn .btnSub::after {
    content: "";
    position: absolute;
    top: 52%;
    left: -31px;
    transform: translateY(-50%) rotate(-39deg);
    width: 1px;
    height: 22px;
    background-color: #fff;
}
.areaBtn .btnSub::after {
    left: auto;
    right: -31px;
    transform: translateY(-50%) rotate(40deg);
}
.areaBtn .btnMain a {
    display: block;
    width: 400px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(90deg, rgba(237, 158, 27, 1) 0%, rgba(252, 103, 0, 1) 100%);
    border-radius: 10px;
    padding: 21px 5px 22px;
    margin: 0 auto;
}

/* areaContactThank */
.areaContactThank {
    background: #fff;
}
.areaContactThank .contactThankWrap {
    padding: 120px 0;
    background: linear-gradient(90deg, rgba(80, 212, 199, 0.1) 0%, rgba(16, 192, 180, 0.1) 100%);
}
.areaContactThank .inner {
    min-height: 32vh;
}
.areaContactThank .areaTitle {
    width: 100%;
    color: #2dc2c0;
    text-align: center;
    margin-bottom: 80px;
}
.areaContactThank .contactThank {
    width: 100%;
    max-width: 900px;
    font-size: 18px;
    line-height: 2;
    margin: 0 auto;
    text-align: center;
}
/* areaContactThank */

/* FOOTER */
#footer {
    width: 100%;
    background-color: #2dc2c0;
    text-align: center;
    padding: 45px 0 51px;
}
#footer .ftNote {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    letter-spacing: -0.6px;
    margin-bottom: 23px;
}
#footer .contact {
    max-width: 496px;
    margin-bottom: 26px;
}
#footer .contact li:first-child {
    width: 239px;
}
#footer .contact li:last-child {
    width: 247px;
}
#footer .contact li a {
    border-radius: 12px;
    padding: 18px 5px;
}
#footer .contact li:last-child a {
    padding: 20px 5px;
}
#footer .contact li a .name {
    padding-right: 19px;
}
#footer .contact li a .name::before {
    top: 55%;
    right: 7px;
    width: 18px;
}
#footer .ftPhone {
    text-align: center;
}
#footer .ftPhone a {
    color: #fff;
}
#footer .ftPhone a span {
    display: block;
}
#footer .ftPhone a .phoneNumber {
    position: relative;
    display: inline-block;
    font-size: 33px;
    font-weight: 900;
    padding-left: 45px;
    line-height: 1;
    letter-spacing: 1.6px;
    margin-bottom: 8px;
}
#footer .ftPhone a .phoneNumber::before {
    content: "";
    position: absolute;
    top: 53%;
    left: 1px;
    transform: translateY(-50%);
    width: 31px;
    aspect-ratio: 1/1;
    background: url(../images/common/icon-phone-white.png) no-repeat center center/100%;
}
#footer .ftPhone a .phoneNote {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.4px;
}


/* SHOW HIDE PC SP */
@media (min-width: 769px) {
    .sp {
        display: none;
    }
    #header .mainMenu .menuList li a:hover {
        color: #2dc2c0;
    }
    #header .mainMenu .menuList li a:hover::before {
        width: 100%;
    }
    #header .mainMenu .menuPhone a,
    #footer .ftPhone a{
        pointer-events: none;
    }
    #header .mainMenu .contact li:last-child a:hover {
        border: none;
        color: #fff;
        background: linear-gradient(90deg,rgba(80, 212, 199, 1) 0%, rgba(16, 192, 180, 1) 100%);
    }
    .contact li a:hover {
        color: #fff;
        background-color: #ff8c00;
    }
    .contact li a:hover .name::before {
        background: url(../images/common/icon-inquiry-white.svg) no-repeat center center/100%;
    }
    .contact li:last-child a:hover {
        background: #fff;
        color: #ff8c00;
        border: 2px solid #ff8c00;
        padding: 11px 5px;
    }
    .areaBtn .btnMain a:hover {
        background: #fff;
        color: #ff8c00;
        border: 2px solid #ff8c00;
        padding: 19px 5px 20px;
    }
    #footer .contact li:last-child a:hover {
        padding: 18px 5px;
    }
}
@media (max-width: 1200px) and (min-width: 769px) {
    #header {
        padding: 15px 20px;
    }
    #header .mainMenu .menuList {
        margin-right: 20px;
    }
    #header .mainMenu .menuList li:first-child {
        margin-right: 20px;
    }
    #header .mainMenu .menuList li:first-child a::after {
        right: -10px;
    }
    #header .mainMenu .menuPhone {
        margin-right: 10px;
    }
    #header .mainMenu .contact {
        max-width: 270px;
    }
    #header .mainMenu .contact li:first-child {
        width: 47%;
    }
    #header .mainMenu .contact li:last-child {
        width: 50%;
    }
}
@media (max-width: 1000px) and (min-width: 769px) {
    .areaTitle {
        font-size: 30px;
        letter-spacing: -1px;
    }
    .titleSub {
        font-size: 18px;
        letter-spacing: -0.5px;
    }
}
@media (max-width:930px) and (min-width: 769px) {
    #header {
        padding: 15px 10px;
    }
    #header .mainMenu .menuPhone {
        margin-right: 5px;
    }
    #header .mainMenu .contact {
        max-width: 220px;
    }
}
@media (max-width: 900px) and (min-width: 769px) {
    .areaBtn .btnSub {
        font-size: 18px;
    }
    .areaBtn .btnMain a {
        width: 350px;
        font-size: 18px;
    }
}
@media (max-width: 850px) and (min-width: 769px) {
    #header .mainMenu .menuList {
        width: 100%;
        justify-content: flex-end;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* STYLE MOBILE */
@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .inner {
        width: 100%;
        padding:0 6.1%;
    }
    #header {
        padding: 0;
    }
    #header .headerBar {
        width: 100%;
        padding: 7px 0 5px;
    }
    #header .inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 0 4.2%;
    }
    #header .logo {
        width: 98px;
    }

    /* MENU */
    .hamburger {
        width: 15px;
        z-index: 9991;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-end;
        margin-top: -2px;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #515354;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        margin-bottom: 2px;
    }

    .hamburger span:nth-child(2) {
        width: 10px;
        opacity: 1
    }

    .hamburger span:nth-child(3) {
        width: 13px;
        margin-top: 2px;
    }

    .hamburger.open span:nth-child(1) {
        margin-bottom: -3px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        margin-top: -3px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        width: 15px;
    }


    #header .mainMenu {
        position: fixed;
        top: 47px;
        display: none;
        width: 100%;
        height: calc(100vh - 47px);
        padding: 83px 10%;
        overflow-y: auto;
        background-color: #fff;
        z-index: 1;
    }
    #header .mainMenu .menuList {
        flex-direction: column;
        align-items: center;
        margin: 0 0 33px;
    }
    #header .mainMenu .menuList li:not(:last-child) {
        margin: 0 0 16px;
    }
    #header .mainMenu .menuList li:not(:last-child) a::after {
        display: none;
    }
    #header .mainMenu .menuList li a {
        font-size: 16px;
        letter-spacing: -0.6px;
    }
    #header .mainMenu .contact {
        max-width: 370px;
        margin: 0 auto 36px;
    }
    #header .mainMenu .contact li:first-child {
        width: 100%;
        margin: 0 0 19px;
    }
    #header .mainMenu .contact li:last-child {
        width: 100%;
    }
    #header .mainMenu .contact li a {
        font-size: 16px;
        border-radius: 11px;
        padding: 20px 5px 21px;
    }
    #header .mainMenu .contact li:last-child a {
        padding: 22px 5px;
    }
    #header .mainMenu .contact li a .name {
        padding-right: 19px;
    }
    #header .mainMenu .contact li a .name::before {
        top: 57%;
        right: 11px;
        width: 18px;
    }
    #header .mainMenu .menuPhone a .phoneNumber {
        font-size: 28px;
        color: #33b8b5;
        padding-left: 53px;
        letter-spacing: -0.4px;
    }
    #header .mainMenu .menuPhone a .phoneNumber::before {
        top: 55%;
        left: 12px;
        width: 33px;
    }
    #header .mainMenu .menuPhone a .phoneNote {
        font-size: 16px;
        margin-right: -16px;
        letter-spacing: -1px;
        margin-top: 7px;
    }

    .areaTitle {
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -1.8px;
        margin-bottom: 6px;
    }
    .titleSub {
        font-size: 16px;
    }
    .areaBtn .btnMain a {
        width: 100%;
        max-width: 400px;
        font-size: 16px;
        padding: 20px 5px 21px;
    }
    .areaBtn .btnSub {
        margin-bottom: 16px;
    }
    .areaContactThank .contactThankWrap {
        padding: 50px 0;
    }
    .areaContactThank .areaTitle {
        font-size: 28px;
        margin-bottom: 50px;
        letter-spacing: -0.4px;
    }
    .areaContactThank .contactThank {
        font-size: 16px;
        letter-spacing: -0.5px;
    }

    .areaCta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 10px 4.3%;
        z-index: 2;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }
    .areaCta .contact li a {
        padding: 9px 5px;
    }
    .areaCta .contact li:last-child {
        width: 50%;
    }
    .areaCta .contact li:last-child a {
        padding: 11px 5px;
    }
    .areaBtn .btnSub::after  {
        right: -30px;
    }

    #footer {
        padding: 29px 0 84px;
    }
    #footer .ftNote {
        font-size: 16px;
        line-height: 1.45;
        letter-spacing: -0.3px;
        margin-bottom: 20px;
    }
    #footer .contact {
        width: 91.4%;
        max-width: 370px;
        margin-bottom: 23px;
        justify-content: center;
    }
    #footer .contact li:first-child {
        width: 100%;
        margin-bottom: 15px;
    }
    #footer .contact li:last-child {
        width: 100%;
    }
    #footer .contact li a {
        padding: 20px 5px 21px;
    }
    #footer .contact li:last-child a {
        padding: 22px 5px;
    }
    #footer .ftPhone a .phoneNumber {
        font-size: 28px;
        padding-left: 42px;
        letter-spacing: 1.4px;
        margin-bottom: 9px;
    }
    #footer .ftPhone a .phoneNumber::before {
        top: 56%;
        width: 31px;
    }
    #footer .ftPhone a .phoneNote {
        font-size: 16px;
        letter-spacing: -0.9px;
    }
}

@media (max-width: 375px) {
    .inner {
        padding: 0 4.5%;
    }
}

@media (max-width: 360px) {
    .areaTitle {
        font-size: 23px;
    }
}