@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #000;
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: #FFF;
    overflow: hidden;
}

@media (min-width: 768px) {
    body {
        min-width: 1220px;
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */


@media (max-width: 767px) {
    .contents_wrap {
        padding-top: 50px;
    }
}

/* ---------------------------------------------------- */
/* header */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    header {
        position: relative;
        background-color: #FFF;
        z-index: 100;
        background-image: url(../img/bg/header_1.png), url(../img/bg/header_2.png);
        background-repeat: no-repeat;
        background-position: left -100px top, right -100px top;
        background-size: 600px 110px;
        background-color: #f5f5f3;
    }

    header::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 100px;
        background-color: #99BBA7;
    }

    header .header_inner {
        position: relative;
        margin: 0 auto;
        width: 1180px;
        height: 210px;
    }

    header .site_logo {
        position: absolute;
        left: 50%;
        top: 18px;
        transform: translateX(-50%);
        display: block;
        width: 125px;
        height: 75px;
        background-image: url(../img/logo/kss_1.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    header .btn_toggle_menu {
        display: none;
    }

    header .toggle_wrap {
        display: block !important;
        opacity: 1 !important;
    }

    header .nav_h_wrap {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 2;
    }

    header .nav_h_wrap>ul {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
    }


    header .nav_h_wrap>ul>li {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 25px;
        height: 100%;
    }

    header .nav_h_wrap>ul>li>a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        color: #4E3432;
        font-size: 2.0rem;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
    }

    header .nav_h_wrap>ul>li+li>a::before {
        content: "";
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 1px;
        height: 20px;
        background-color: #4E3432;
    }

    header .nav_h_wrap>ul>li>a:hover {
        opacity: 0.6;
    }

    header .nav_h_wrap>ul>li.is_comingsoon>a {
        pointer-events: none;
    }

    header .nav_h_wrap>ul>li.is_comingsoon>a span::before {
        content: "";
        position: absolute;
        right: -15px;
        top: -10px;
        display: block;
        width: 70px;
        height: 40px;
        background-image: url(../img/ico/comingsoon_1.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    header .nav_h_wrap>ul>li.menu-item-has-children>a {
        opacity: 1 !important;
    }

    header .nav_h_wrap>ul>li>a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 20px;
        background-size: auto 20px;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-image: url(../img/ico/arrow_1.svg);
        opacity: 0;
        transition: 0.1s ease-in-out;
    }

    header .nav_h_wrap>ul>li.is_children_show>a::after {
        opacity: 1;
    }

    header .nav_h_wrap .sub-menu {
        display: none;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 100%);
        width: 100vw;
    }

    header .nav_h_wrap .sub-menu>ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-right: -50px;
        padding: 20px;
        background-color: #AED8E5;
    }

    header .nav_h_wrap .sub-menu>ul>li {
        padding: 0 25px;
    }

    header .nav_h_wrap .sub-menu>ul>li+li {
        border-left: 1px solid #4E3432;
    }

    header .nav_h_wrap .sub-menu>ul>li>a {
        display: block;
        color: #4E3432;
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1;
    }

    header .nav_h_wrap .sub-menu>ul>li>a:hover {
        opacity: 0.6;
    }

    header .nav_h_wrap .sub-menu>ul>li.is_comingsoon>a {
        opacity: 0.4;
        pointer-events: none;
    }

    header .nav_s_wrap {
        position: absolute;
        right: 25px;
        top: 40px;
        z-index: 2;
    }

    header .nav_s_wrap>ul {
        display: flex;
    }

    header .nav_s_wrap>ul>li+li {
        margin-left: 15px;
    }

    header .nav_s_wrap>ul>li>a {
        display: block;
        width: 30px;
        height: 30px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    header .nav_s_wrap>ul>li.tw>a {
        background-image: url(../img/ico/sns_tw_1.svg);
    }

    header .nav_s_wrap>ul>li.ig>a {
        background-image: url(../img/ico/sns_ig_1.svg);
    }
}

@media (max-width: 767px) {
    header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #99BBA7;
        z-index: 100;
    }

    header .header_inner {
        position: relative;
        height: 50px;
    }

    header .site_logo {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        display: block;
        width: 110px;
        height: 100%;
        background-image: url(../img/logo/kss_1.png);
        background-repeat: no-repeat;
        background-size: auto 70%;
        background-position: center;
    }

    header .btn_toggle_menu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 100%;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    header .btn_toggle_menu div {
        position: relative;
        width: 28px;
        height: 20px;
    }

    header .btn_toggle_menu div>span span,
    header .btn_toggle_menu div>span:before,
    header .btn_toggle_menu div>span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #4E3432;
        transform-origin: center center;
        transition: 0.3s ease-in-out;
    }

    header .btn_toggle_menu div>span span {
        transform: translateY(-1px);
    }

    header .btn_toggle_menu div>span:before {
        transform: translateY(-9px);
    }

    header .btn_toggle_menu div>span:after {
        transform: translateY(7px);
    }

    header .btn_toggle_menu.is_show div>span span,
    header .btn_toggle_menu.is_show div>span:before,
    header .btn_toggle_menu.is_show div>span:after {
        width: 100% !important;
    }

    header .btn_toggle_menu.is_show div>span span {
        opacity: 0;
    }

    header .btn_toggle_menu.is_show div>span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    header .btn_toggle_menu.is_show div>span:after {
        bottom: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    header .toggle_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 50px;
        width: 100%;
        height: calc(100% - 50px);
        background-color: #99BBA7;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    header .toggle_wrap .toggle_inner {
        padding: 40px 0;
    }

    header .nav_h_wrap>ul>li+li {
        margin-top: 25px;
    }

    header .nav_h_wrap>ul>li>a {
        position: relative;
        display: block;
        color: #4E3432;
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        text-decoration: none;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    header .nav_h_wrap>ul>li.is_comingsoon>a {
        pointer-events: none;
    }

    header .nav_h_wrap>ul>li.is_comingsoon>a span::before {
        content: "";
        position: absolute;
        right: 15px;
        top: -10px;
        display: block;
        width: 60px;
        height: 30px;
        background-image: url(../img/ico/comingsoon_1.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    header .nav_h_wrap .sub-menu {
        display: none;
    }

    header .nav_h_wrap .sub-menu::before {
        content: "";
        display: block;
        margin-top: 5px;
        width: 100%;
        height: 15px;
        background-size: auto 15px;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-image: url(../img/ico/arrow_1.svg);
        transition: 0.1s ease-in-out;
    }

    header .nav_h_wrap .sub-menu>ul {
        padding: 15px 0;
        background-color: #AED8E5;
    }

    header .nav_h_wrap .sub-menu>ul>li+li {
        margin-top: 15px;
    }

    header .nav_h_wrap .sub-menu>ul>li>a {
        display: block;
        color: #4E3432;
        font-size: 1.6rem;
        font-weight: 700;
        text-align: center;
    }

    header .nav_h_wrap .sub-menu>ul>li.is_comingsoon>a {
        opacity: 0.4;
        pointer-events: none;
    }

    header .nav_s_wrap {
        position: absolute;
        left: 10px;
        top: 14px;
        z-index: 2;
    }

    header .nav_s_wrap>ul {
        display: flex;
    }

    header .nav_s_wrap>ul>li+li {
        margin-left: 10px;
    }

    header .nav_s_wrap>ul>li>a {
        display: block;
        width: 25px;
        height: 25px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    header .nav_s_wrap>ul>li.tw>a {
        background-image: url(../img/ico/sns_tw_1.svg);
    }

    header .nav_s_wrap>ul>li.ig>a {
        background-image: url(../img/ico/sns_ig_1.svg);
    }
}

/* ---------------------------------------------------- */
/* footer */
/* ---------------------------------------------------- */
footer {
    position: relative;
    margin-top: 220px;
    padding: 40px 0;
    background-color: #99BBA7;
}

footer::before,
footer::after {
    content: "";
    position: absolute;
    top: -190px;
    display: block;
    width: 340px;
    height: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

footer::before {
    left: 0;
    background-image: url(../img/bg/deco_1.png);
}

footer::after {
    right: 0;
    background-image: url(../img/bg/deco_2.png);
}

footer .copyright {
    text-align: center;
}

@media (max-width: 767px) {
    footer {
        margin-top: 90px;
        padding: 20px 0;
    }

    footer::before,
    footer::after {
        top: -70px;
        width: 100px;
        height: 45px;
    }

    footer .copyright {
        font-size: 1.2rem;
    }
}