@charset "utf-8";

@import url("base.css");

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

.poppin {
    font-family: 'Poppins', sans-serif;
}
.notoSerif {
    font-family: 'Noto Serif JP', serif;
}
.notoJp {
    font-family: 'Noto Sans JP', sans-serif;
}
body {
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
}

body.fixed {
    overflow: hidden;
}

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




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

/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
}
#header.bgHeader {
    box-shadow: 0px -2px 11px rgba(0,0,0,0.2);
}
#header .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#header .logo {
    width: 190px;
}
#header .logo img {
    width: 100%;
}
#header .menu {
    display: flex;
    flex-wrap: wrap;
}
#header .menu li:not(:last-child) {
    margin-right: 60px;
}
#header .menu a {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}
#header .menu a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #333333;
    transition: all .3s
}
.bgSp {
    display: none;
}
#fixH {
    height: 110px;
}

/* CONTENT */
#content {
    width: 100%;
}
.areaTitle {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    line-height: 1.56;
}
.areaBtn a,
.areaBtn button{
    position: relative;
    display: block;
    width: 220px;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    border: 1px solid #333333;
    text-align: center;
    padding: 20.5px 10px;
    letter-spacing: 1.5px;
    background-color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}
.areaBtn a:before,.areaBtn button:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background-color: #333;
    transition: all .3s;
}

/* FOOTER */
#footer {
    width: 100%;
    background-color: #333333;
    padding: 32px 0 33px;
}


.footer-nav_ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-nav-link{
    color: #FFF;
    font-size: 10px;
    padding: 0 5px;
}

#copyright {
    text-align: center;
    color: #fff;
    letter-spacing: 1.4px;
}

.sp {
    display: none;
}

@media(max-width:1150px) and (min-width:769px) {
    .areaTitle {
        font-size: 28px;
    }
}
@media(min-width:769px) {
    #header .menu a:hover:before {
        width: 100%;
    }

    .areaBtn a:hover:before,.areaBtn button:hover:before {
        right: -40px;
    }
}

.hamburger{
    display: none;
}

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

    .sp {
        display: block;
    }

    .inner {
        width: 100%;
        padding: 0 3%;
    }

    #header {
        padding: 0;
    }
    #header .inner {
        padding: 0;
    }
    #header .headerBar {
        display: flex;
        justify-content: space-between;
        width: 100%;
        z-index: 10;
    }
    #header .logo {
        display: flex;
        align-items: center;
        width: 100px;
        margin-left: 3%;
    }

    /* MENU */

 

    .hamburger {
        width: 50px;
        height: 50px;
        padding: 0 5px;
        z-index: 9999;
        background: #FFF;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }


    .hamburger span {
        display: block;
        height: 1px;
        width: 100%;
        background: #fff;
        -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;
        margin: 0 auto;
    }

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

    .hamburger span:nth-child(2) {
        opacity: 1
    }

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

    .hamburger.open span:nth-child(1) {
        margin-bottom: -1px;
        -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: -2px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #header .mainMenu {
        display: none;
        position: fixed;
        top: 50px;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color:transparent;
        overflow: hidden;
        z-index: 10;
    }
    #header .mainMenu .menu {
        display: inline-block;
        float: right;
        height: 100%;
        width: 80%;
        background-color: #333;
        padding: 50px 20px;
    }
    #header .menu li{
        width: 100%;
    }
    #header .menu li:not(:last-child) {
        margin: 0 0 50px;
    }
    #header .mainMenu .menu a {
        color: #fff;
        text-align: center;
    }
    .bgSp {
        position: fixed;
        display: none;
        top: 50px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0 0 0/32%);
        opacity: 0;
        z-index: 2;
    }
    body.fixed .bgSp {
        opacity: 1;
        display: block;
    }

    .areaTitle {
        font-size: 20px;
    }
    .areaBtn a,.areaBtn button {
        width: 170px;
        font-size: 16px;
        padding: 15px 5px;
    }
    #fixH {
        height: 50px;
    }
    #footer {
        padding: 12px;
        font-size: 12px;
    }
}
