@charset "utf-8";

@import url("base.css");

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

@font-face {
    font-family: "aristotelica";
    src: url("../font/aristotelica-extralight.ttf");
    src: url("../font/aristotelica-extralight.eot") format("embedded-opentype"),
        url("../font/aristotelica-extralight.woff2") format("woff2"),
        url("../font/aristotelica-extralight.woff") format("woff"),
        url("../font/aristotelica-extralight.ttf") format("truetype"),
        url("../font/aristotelica-extralight.svg") format("svg");
}
.aristotelica {
    font-family: 'aristotelica';
}

@font-face {
    font-family: "aristotelica-demi";
    src: url("../font/aristotelica-demibold.ttf");
    src: url("../font/aristotelica-demibold.eot") format("embedded-opentype"),
        url("../font/aristotelica-demibold.woff2") format("woff2"),
        url("../font/aristotelica-demibold.woff") format("woff"),
        url("../font/aristotelica-demibold.ttf") format("truetype"),
        url("../font/aristotelica-demibold.svg") format("svg");
}
.aristotelica-demi {
    font-family: 'aristotelica-demi';
}
.noto {
    font-family: "Noto Sans JP", sans-serif;
}
body {
    background-color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #0B2148;
}
body.fixed {
    overflow: hidden;
}
.inner {
    width: 100%;
    max-width: 1140px;
    padding: 0 30px;
    margin: 0 auto;
}
.innerBig {
    width: 100%;
    max-width: 1260px;
    padding: 0 30px;
    margin: 0 auto;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 14px;
    color: #E70F41;
}
label.error {
    margin-top: 10px;
}

/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255,0.8);
    padding: 15px 0;
    z-index: 9;
}
#header .innerBig {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
#header .headerBar .logo {
    width: 207px;
    transform: translateY(-4px);
} 
#header .headerBar .logo a {
    display: block;
}
#header .headerBar .logo img {
    width: 100%;
    aspect-ratio: 207/49;
}
#header .mainMenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: calc(100% - 227px);
    transform: translateY(-1px);
}
#header .mainMenu .menuList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    width: calc(100% - 262px);
    margin-right: 46px;
}
#header .mainMenu .menuList li:not(:last-child) {
    margin-right: 50px;
}
#header .mainMenu .menuList li a {
    font-size: 16px;
    font-weight: bold;
    color: #0B2148;
}
#header .mainMenu .contactHeader {
    width: 216px;
}
#header .mainMenu .contactHeader a {
    display: block;
    background: #E70F41;
    border-radius: 70px;
    padding: 8px 33px 11px 31px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1.2px;
    border: 1px solid transparent;
}
#header .mainMenu .contactHeader a .txtContactHeader {
    position: relative;
    padding-left: 29px;
}
#header .mainMenu .contactHeader a .txtContactHeader:before {
    content: "";
    position: absolute;
    background: url('../images/common/icon-mail-header.svg') no-repeat;
    background-size: 100%;
    width: 20px;
    height: 15px;
    top: 56%;
    transform: translateY(-50%);
    left: 1px;
}

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

/* areaCta */
.areaCta {
    background-color: #32A7A4;
    padding: 46px 0;
}
.areaCta .ctaWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    background-color: #fff;
    padding: 35px 58px;
}
.areaCta .ctaWrap .ctaPhoto {
    width: 31.6%;
}
.areaCta .ctaWrap .ctaPhoto img{
    width: 100%;
    aspect-ratio: 342/198;
}
.areaCta .ctaWrap .ctaIntro {
    width: 67.8%;
    text-align: center;
    transform: translateY(-4px);
}
.areaCta .ctaWrap .ctaIntro .introNote {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 11px;
}
.areaCta .ctaWrap .ctaIntro .introSub {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 21px;
    line-height: 1.65;
}
/* areaCta */

.areaBtn {
    position: relative;
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
    z-index: 1;
}
.areaBtn a {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border-radius: 70px;
    background: #E70F41 url(../images/common/icon-arrow-white.svg) no-repeat center right 15px / 25px;
    padding: 12px 6px 11px 10px;
    letter-spacing: 1.8px;
    transition: all .3s;
    box-shadow: 0 5px 0 #8B0827;
}

.areaTitle {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}
.areaTitle .jp {
    display: block;
}
.areaTitle .en {
    display: block;
    font-size: 18px;
    color: #32A0A2;
    margin-top: 8px;
}

/* FOOTER */
#footer {
    width: 100%;
    background-color: #126872;
    padding: 37px 0;
}
#footer .innerBig {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
#footer .ftLogo {
    width: 298px;
} 
#footer .ftLogo a {
    display: block;
}
#footer .ftLogo img {
    width: 100%;
    aspect-ratio: 298/71;
}
#footer .ftMenu {
    width: calc(100% - 310px);
    transform: translateY(-1px);
}
#footer .ftMenu .menuList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 30px;
}
#footer .ftMenu .menuList li:not(:last-child) {
    margin-right: 50px;
}
#footer .ftMenu .menuList li a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}
#footer .ftMenu #copyright {
    color: #fff;
    font-size: 12px;
    text-align: right;
}

@media(max-width: 1175px) and (min-width: 769px) {
    #header .mainMenu .menuList {
        width: calc(100% - 240px);
        margin-right: 25px;
    }
    #header .mainMenu .menuList li:not(:last-child) {
        margin-right: 30px;
    }
}
@media(max-width: 1100px) and (min-width: 769px) {
    .areaCta .ctaWrap {
        padding: 35px;
    }
    .areaCta .ctaWrap .ctaIntro .introNote {
        font-size: 26px;
    }
    .areaCta .ctaWrap .ctaIntro .introSub {
        font-size: 18px;
    }
}
@media(max-width: 1070px) and (min-width: 769px) {

    #header .headerBar .logo {
        transform: translateY(0);
    }
    #header .mainMenu .menuList li:not(:last-child) {
        margin-right: 2vw;
    }
    #header .mainMenu .menuList li a {
        font-size: 14px;
    }
    #footer .ftMenu .menuList li:not(:last-child) {
        margin-right: 25px;
    }
    #footer .ftMenu .menuList li a {
        font-size: 14px;
    }
}
@media(max-width: 1000px) and (min-width: 769px) {
    #header .mainMenu .menuList {
        width: calc(100% - clamp(150px, 19.6vw, 216px));
    }
    #header .mainMenu .contactHeader {
        width: clamp(150px, 19.6vw, 216px);
    }
    #header .mainMenu .contactHeader a {
        font-size: clamp(14px, 1.6vw, 16px);
        padding: 9px clamp(14px, 1.1vw, 31px) 10px;
    }
}
@media(max-width: 975px) and (min-width: 769px) {
    #header .innerBig {
        padding: 0 20px;
    }
}
@media(max-width: 950px) and (min-width: 769px) {
    #header .mainMenu .menuList {
        margin-right: 2vw;
    }
    #header .mainMenu .menuList li:not(:last-child) {
        margin-right: 1.3vw;
    }
    #footer .ftLogo {
        width: 207px;
    }
    #footer .ftMenu {
        width: calc(100% - 220px);
    }
    #footer .ftMenu .menuList {
        margin-bottom: 20px;
    }
}
@media(max-width: 870px) and (min-width: 769px) {
    #header .headerBar .logo {
        width: clamp(150px, 20.1vw, 201px);
    }
    #header .mainMenu {
        width: calc(100% - clamp(155px, 21.1vw, 206px));
    }
    #header .mainMenu .menuList {
        width: calc(100% - clamp(155px, 20.6vw, 221px));
    }
}

/* SHOW HIDE PC SP */
@media (min-width: 769px) {
    .sp {
        display: none;
    }
    #header .mainMenu .menuList li a:hover {
        color: #32A0A2;
    }
    .areaBtn a:hover {
        transform: translateY(5px);
        box-shadow: none;
    }
    #header .mainMenu .contactHeader a:hover {
        background: #ffffff;
        color: #E70F41;
        border-color: #E70F41;
    }
    #header .mainMenu .contactHeader a:hover .txtContactHeader:before {
        background-image: url('../images/common/icon-mail-hover.svg');
    }
}

/* STYLE MOBILE */
@media(max-width: 860px) {
    #header {
        padding: 14px 0;
    }
    #header .headerBar {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 2;
    }
    #header .headerBar .logo {
        width: 39.5%;
        max-width: 200px;
        transform: translateY(0);
    }
    #header .headerBar .logo img {
        aspect-ratio: 136 / 32;
    }
    #header .mainMenu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        padding: clamp(108px,16.2vh,150px) 0 70px;
        overflow-y: auto;
    }
    #header .mainMenu .menuList {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 50px;
    }
    #header .mainMenu .menuList li:not(:last-child) {
        margin: 0 0 48px;
    }
    #header .mainMenu .menuList li a {
        font-size: clamp(16px, 4.2vw, 22px);
    }

    #header .mainMenu .contactHeader {
        width: clamp(216px, 57.6vw, 250px);
        margin: 0 auto;
    }

    #header .mainMenu .contactHeader a {
        font-size: clamp(16px, 4.2vw, 20px);
        padding: 9px 31px 10px 31px;
    }

    #header .mainMenu .contactHeader a .txtContactHeader {
        padding-left: clamp(24px, 6.5vw, 30px);
    }

    #header .mainMenu .contactHeader a .txtContactHeader:before {
        width: clamp(20px, 5.3vw, 24px);
        height: clamp(15px, 4vw, 18px);
        top: 54%;
        left: -1px;
    }
    /* MENU */
    .hamburger {
        display: block;
        width: 32px;
        height: 22px;
        z-index: 9;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        cursor: pointer;
    }
    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: url(../images/common/photo-line.svg)no-repeat top left/100%;
        -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;
        border-radius: 1px;
    }
    .hamburger span:nth-child(1) {
        margin-bottom: 8px;
    }
    .hamburger span:nth-child(2) {
        opacity: 1
    }
    .hamburger span:nth-child(3) {
        margin-top: 8px;
    }
    .hamburger.open span:nth-child(1) {
        margin-bottom: -2px;
        -webkit-transform: rotate(35deg);
        -moz-transform: rotate(35deg);
        transform: rotate(35deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        margin-top: -2px;
        -webkit-transform: rotate(-35deg);
        -moz-transform: rotate(-35deg);
        transform: rotate(-35deg);
    }
    
}
@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .inner {
        width: 100%;
        padding: 0 4%;
    }
    .innerBig {
        width: 100%;
        padding: 0 4%;
    }
    .areaBtn {
        max-width: 290px;
    }
    .areaBtn a {
        font-size: clamp(16px, 4.2vw, 22px);
        padding: 14px 10px;
        box-shadow: 0 3px 0 #8B0827;
        background-size: 22px;
        background-position: right 16px center;
    }
    .areaTitle {
        font-size: clamp(24px,6.4vw,30px);
    }
    /* footer */
    #footer {
        padding: 30px 0 100px;
    }
    #footer .innerBig {
        justify-content: center;
    }
    #footer .ftLogo {
        max-width: 298px;
        width: 65%;
        margin-bottom: 20px;
    }
    #footer .ftMenu {
        width: 100%;
        text-align: center;
    }
    #footer .ftMenu .menuList {
        display: inline-block;
        margin-bottom: 20px;
    }
    #footer .ftMenu .menuList li:not(:last-child) {
        margin: 0 0 15px;
    }
    #footer .ftMenu .menuList li a {
        font-size: clamp(14px, 3.7vw, 18px);
    }
    #footer .ftMenu #copyright {
        text-align: center;
        font-size: clamp(12px, 3.1vw, 15px);
    }
    /* footer */
}