@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
 .open-sans {
    font-family: "Open Sans", sans-serif;
 }

body {
    background-color: #FFFFFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.5;
    color: #4C3211;
}

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;
    width: 100%;
    background: rgba(255,255,255,0.7);
    padding: 29px 32px 28px;
    z-index: 9;
}
.mainMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 175px;
}
.mainMenu .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: -3px auto 0;
}
.mainMenu .menu li {
    margin: 0 28px;
}
.mainMenu .menu li a {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #4C3211;
}
.mainMenu .menu li a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fb8900;;
    transition: all .3s;
}
.mainMenu .menuBtn a {
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background: #f3961a;
    box-shadow: 0 6px 0 #ce7000;
    border-radius: 50px;
    padding: 13px 30px 13px 23px;
    transition: all .3s;
}
.mainMenu .menuBtn a .sub {
    position: relative;
}
.mainMenu .menuBtn a .sub:after {
    content: "";
    position: absolute;
    top: 4px;
    right: -15px;
    width: 12px;
    height: 11px;
    background: url(../images/common/icon-share.svg) no-repeat top left/ 100%;
}

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

.areaTitle {
    text-align: center;
    margin-bottom: 55px;
}
.areaTitle .box {
    display: inline-block;
    font-size: 41px;
    font-weight: 900;
    background: #fff;
    border-radius: 50px;
    padding: 9px 59px 10px;
}

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #f9dfc6;
}
::-webkit-scrollbar-thumb {
    background: #fb8900; 
    border-radius: 10px;
}
.areaBtn a {
    display: block;
    width: calc(100% - 60px);
    max-width: 517px;
    text-align: center;
    color: #fff;
    font-size: 31px;
    background: #f3961a;
    box-shadow: 0 15px 0 #ce7000;
    border-radius: 50px;
    padding: 28px 10px 33px;
    transition: all .3s;
    margin: 0 auto;
}

/* FOOTER */
#footer {
    width: 100%;
}
#footer .ftMenu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 61px;
}
#footer .ftMenu li {
    margin: 0 28px;
}
#footer .ftMenu li a {
    position: relative;
    font-size: 18px;
    font-weight: 900;
    color: #4C3211;
}
#footer .ftMenu li a:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fb8900;
    transition: all .3s;
}
#footer .ftLogo {
    text-align: center;
    margin-bottom: 14px;
}
#footer .ftLogo a {
    display: inline-block;
    width: 105px;
}
#footer .ftLogo a img {
    width: 100%;
}
#copyright {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background: #F3961A;
    text-align: center;
    letter-spacing: -0.3px;
    padding: 11px 0 10px;
} 

@media (max-width: 1100px) and (min-width: 769px) {
    .mainMenu {
        padding-left: 135px;
    }
    .mainMenu .menu li {
        margin: 0 15px;
    }
}

@media (max-width: 960px) and (min-width: 769px) {
    #header {
        padding: 20px 15px;
    }
    .mainMenu {
        padding-left: 120px;
    }
    .mainMenu .menu li a {
        font-size: 16px;
    }
    .mainMenu .menu li {
        margin: 0 10px;
    }
}

@media (max-width: 820px) and (min-width: 769px) {
    .mainMenu {
        padding-left: 60px;
    }
    .mainMenu .menu li a {
        font-size: 14px;
    }
}

/* SHOW HIDE PC SP */
@media (min-width: 769px) {
    .sp {
        display: none;
    }
    .mainMenu .menuBtn a:hover {
        transform: translateY(6px);
        box-shadow: none;
    }
    .mainMenu .menu li a:hover,
    #footer .ftMenu li a:hover {
        color: #fb8900;
    }
    .mainMenu .menu li a:hover:after,
    #footer .ftMenu li a:hover:after {
        width: 100%;
    }
    .areaBtn a:hover {
        transform: translateY(6px);
        box-shadow: none;
    }
}

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

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

    body.fixed #header {
        background: transparent;
    }
    #header {
        padding: 0;
        transition: all .3s;
    }
    .headerBar {
        position: relative;
        padding: 15px 0;
        z-index: 9;
    }
    body.fixed .headerBar {
        background: #fff;
    } 
    .headerBar .inner {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .headerBar .inner .logo {
        width: 30%;
        max-width: 200px;
    }
    .headerBar .inner .logo a{
        display: block;
        width: 100%;
    }
    .mainMenu {
        display: none;
        position: fixed;
        top: 0px;
        left: 0px;
        height: 100vh;
        width: 100%;
        overflow-y: auto;
        background: #fff;
        padding: 15vw 0;
        z-index: 5;
    }
    .mainMenu .menu {
        display: block;
        padding: 0px 6%;
        width: 100%;
        text-align: left;
        margin: 0 0 50px;
    }
    .mainMenu .menu li {
        border-top: 1px solid #4C3211;
        margin: 0;
    }
    .mainMenu .menu li:last-child {
        border-bottom: 1px solid #4C3211;
    }
    .mainMenu .menu li a {
        display: block;
        font-size: clamp(16px, 4.2vw, 24px);
        padding: 20px 8px;
    }
    .mainMenu .menuBtn {
        text-align: center;
    }
    .mainMenu .menuBtn a {
        font-size: clamp(14px, 4.5vw, 20px);
        margin: 0 auto;
        padding: 3vw 7vw 3vw 5vw;
    }
    .mainMenu .menuBtn a .sub:after {
        top: 54%;
        right: clamp(-24px, -5vw, -10px);
        width: clamp(14px, 4vw, 20px);
        height: clamp(14px, 3.8vw, 20px);
        transform: translateY(-50%);
    }

    /* MENU */
    .hamburger {
        width: 30px;
        height: 40px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #000;
        -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: 10px;
    }

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

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

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

    .areaTitle .box {
        font-size: clamp(22px, 5.8vw, 35px);
    }


    ::-webkit-scrollbar {
        width: clamp(5px, 2vw, 7px);
        height: clamp(5px, 2vw, 7px);
    }

    .areaBtn a {
        width: 100%;
        font-size: clamp(18px, 4.5vw, 32px);
        padding: 20px 8px;
        box-shadow: 0 2vw 0 #ce7000;
    }
    #footer .ftMenu {
        display: none;
    }
}

@media (max-width: 430px) {
    .headerBar {
        padding: 10px 0;
    }
    .headerBar .inner .logo {
        width: 120px;
    }

    .mainMenu {
        padding: 20vw 0;
    }
}