@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
.noto {
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    font-family: 'Noto Sans JP', sans-serif;
}

body.fixed {
    overflow: hidden;
}

.inner {
    width: 1084px;
    padding: 0 30px;
    margin: 0 auto;
}

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

/* HEADER */
#header {
    position: relative;
    width: 100%;
    background: url(../images/common/header-bg.png)no-repeat top left/cover;
    z-index: 3;
}
#header .headerBar {
    background-color: #fff;
    text-align: center;
    padding: 21px 0 22px;
    box-shadow: 0 0 10px 6px rgba(0,0,0,0.1);
}
#header .headerBar .logo a {
    display: inline-block;
    width: 200px;
}
#header .headerBar .logo img {
    width: 100%;
}
#header .mainMenu {
    box-shadow: 0 13px 17px 3px rgba(0,0,0,0.25);
}
#header .mainMenu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 0 20px;
}
#header .mainMenu .menu li:not(:last-child) {
    margin-right: 30px;
}
#header .mainMenu .menu a {
    position: relative;
    font-size: 15px;
    letter-spacing: 2.1px;
}
#header .mainMenu .menu a:before {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: all .3s;
}
body.beauty #header .mainMenu {
    background: #000;
}
body.beauty #header .mainMenu .menu a{
    color: #fff;
}
body.beauty #header .mainMenu .menu a:before {
    background-color: #fff;
}

/* CONTENT */
#content {
    width: 100%;
    padding-top: 56px;
}


.pageTitle{
    position: relative;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.7px;
    margin: 32px 0 77px;
    z-index: 2;
}
.pageTitle:before {
    content: "";
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 88px;
    height: 88px;
    background: url(../images/index/title-new-bg.png)no-repeat;
    background-size: 100%;
    z-index: -1;
}
.pageTitle span {
    display: block;
    font-size: 18px;
}
.areaTitle .titleSmall {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.7px;
    margin-bottom: 19px;
}
.areaBtn a {
    display: block;
    text-align: center;
    width: 158px;
    padding: 12px 10px;
    border-radius: 30px;
    color: #fff;
    margin: 0 auto;
    background-color: #000;
    border: 1px solid #000;
    letter-spacing: 1px;
}
.pagingNav .pagi_nav_list {
    display: flex;
    justify-content: center;
    align-content: center;
}
.pagingNav .pagi_nav_list li {
    margin: 0 8px;
}
.pagingNav .pagi_nav_list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.pagingNav .pagi_nav_list li.active a{
    pointer-events: none;
    color: #bcbcbc;
}
.pagingNav .pagi_nav_list .p-control {
    width: 10px;
}
.pagingNav .pagi_nav_list .p-control a {
    position: relative;
}
.pagingNav .pagi_nav_list .p-control a:before {
    content: "";
    position: absolute;
    top: 37%;
    left: 0;
    width: 10px;
    height: 10px;
    opacity: 0;
    z-index: 2;
}
.pagingNav .pagi_nav_list .p-control.prev {
    margin: 0 20px 0 10px;
}
.pagingNav .pagi_nav_list .p-control.prev a:before {
    background: url(../images/common/icon-arrow-prev-grey.png) no-repeat;
    background-size: 100%;
}
.pagingNav .pagi_nav_list .p-control.next {
    margin: 0 10px 0 20px;
}
.pagingNav .pagi_nav_list .p-control.next a:before {
    background: url(../images/common/icon-arrow-next-grey.png) no-repeat;
    background-size: 100%;
}
.pagingNav .pagi_nav_list .p-control a img {
    width: 100%;
    margin-top: 3px;
}
.pagingNav .pagi_nav_list .p-control.active a img{
     opacity: 0;
}
.pagingNav .pagi_nav_list .p-control.active.prev a:before,
.pagingNav .pagi_nav_list .p-control.active.next a:before  {
    opacity: 1;
}

/* FOOTER */
#footer {
    width: 100%;
    background-color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #000;
    padding: 26px 0;
    letter-spacing: 0.6px;
    box-shadow: 0 0 100px 1px rgba(0,0,0,0.35);
    letter-spacing: 1.9px;
}
#footer .ft-btn a{
    display: block;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}
#footer .ft-btn {
    margin-bottom: 24px;
}

.sp {
    display: none;
}
.TopBtn{
    position: fixed;
    right: 0;
    bottom: 45px;
    width: 64px;
    height: 64px;
    padding: 3px;
}
@media(max-width: 1100px) and (min-width:769px) {
    .inner {
        width: 100%;
    }
} 

@media(min-width:769px) {
    #header .mainMenu .menu a:hover:before {
        width: 100%;
    }
    .areaBtn a:hover {
        background-color: #fff;
        color: #000;
    }
    .pagingNav .pagi_nav_list a:hover {
        text-decoration: underline;
        text-underline-offset: 2px;
    }
    .pagingNav .pagi_nav_list .p-control.prev a:hover,
    .pagingNav .pagi_nav_list .p-control.next a:hover {
        text-decoration: none;
        opacity: 0.7;
    }
}

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

    .sp {
        display: block;
    }

    .inner {
        width: 100%;
        padding: 0 4%;
    }
    #header {
        position: fixed;
        top: 0;
        left: 0;
    }
    #header .headerBar {
        position: relative;
        padding: 20px 0 20px;
        z-index: 9;
    }
    #header .headerBar .inner{
        display: flex;
        justify-content: space-between;
    }
    #header .headerBar .logo {
        width: 34%;
        max-width: 140px;
    }

    /* MENU */
    .hamburger {
        width: 38px;
        height: 24px;
        padding: 0 5px;
        z-index: 9991;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        margin-top: -1px;
    }

    .hamburger span {
        display: block;
        height: 1px;
        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: 8px;
    }

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

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

    .hamburger.open span:nth-child(1) {
        margin-bottom: 0;
        -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: 46px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: url(../images/common/header-bg-sp.png)no-repeat top left/ 100%;
        z-index: 8;
        overflow-x: scroll;
    }
    #header .mainMenu .menu {
        display: inline-block;
        width: 100%;
        height:calc(100% - 50px);
        margin-top: 50px;
    }
    #header .mainMenu .menu li{
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    #header .mainMenu .menu li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 30px;
    }
    #header .mainMenu .menu a {
        color: #000;
        font-size: 16px;
    }

    body.beauty #header .mainMenu  {
        border-top: 1px solid #fff;
    }

    #content {
        padding-top: 30px;
    }
    .pageTitle{
        text-align: center;
        font-size: 16px;
        margin: 20px 0 60px;
    }
    .pageTitle:before {
        top: 50%;
        width: 70px;
        height: 70px;
    }
    .areaTitle .titleSmall {
        font-size: 16px;
    }
    .areaBtn a {
        width: 118px;
        padding: 7px 10px 9px;
    }
    #footer {
        padding: 25px 0;
    }
    #footer .ft-btn {
        margin-bottom: 15px;
    }
}
