@charset "UTF-8";

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
img {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #323232;
    text-decoration: none;
}


img {
    vertical-align: bottom;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    background-color: #fff;
    scrollbar-width: none;
    /* Firefox scrollbar none */
}

/* Chrome・Safari・Microsoft Edge scrollbar none */
body::-webkit-scrollbar {
    display: none;
}


/* google font */
/*  Noto Sans Japanese
    Thin 100
    Regular 400
    Bold 700*/

/* 共通 */
.ds_f {
    display: flex;
}

.jc_sb {
    justify-content: space-between;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.inner {
    margin: 0 auto;
}


/* topへ戻る */
#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 5px;
    bottom: 20px;
    background: #ffffff;
    opacity: 0.8;
    border-radius: 50%;
    z-index: 1000;
}

#page_top a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 20px;
    color: rgb(0, 0, 0);
    position: absolute;
    width: 20px;
    height: 20px;
    top: -30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

#page_top a::after {
    content: 'PAGE TOP';
    font-size: 13px;
    color: rgb(0, 0, 0);
    position: absolute;
    top: 35px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}


/* fade in */
.js-fadeUp {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(30px);
    /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0);
    /* 30px上に移動する */
    transition-delay: .2s;
    /* フェード開始を0.5秒遅らせる */
}


   /* toggle_btn */
   .toggle_btn {
    display: none;
   }


/* header */
/* CNP(キャンペーン) */
header aside {
    background-color: #738859;
}

header aside .CNP {
    box-sizing: border-box;
    background-color: #506339;
    width: 1024px;
    padding: 12px 0;
    justify-content: center;
}

header aside .CNP .post {
    display: inline-block;
    background-image: url(../images/common/icon_souryou.png);
    width: 46px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
    padding-right: 10px;
}

header aside .CNP p {
    font-size: 24px;
    color: #fff;
}

header aside .CNP .bold {
    font-weight: 700;
    font-size: 31px;
}

header aside .CNP .si24 {
    font-size: 24px;
}

header aside .CNP .si14 {
    font-size: 14px;
}

header aside .CNP .si27 {
    font-size: 27px;
}

header aside .CNP .si12 {
    font-size: 12px;
}


header .CNP p::before {
    content: "＼";
}

header .CNP p::after {
    content: "／";
}

/* h_menu固定（g_nav） */
.fixed {
    position: fixed;
    z-index: 10000;
    top: 0;
}

/* h_menu */
header .header_menu {
    width: 100%;
    border-bottom: 1px solid #000;
    background-color: #fff;

}

header .h_menu {
    width: 1200px;
    height: 80px;
    display: flex;
    justify-content: space-between;
}

header .h_menu .logo {
    padding-top: 24px;
    padding-right: 81px;
}

header .h_menu .logo a:hover {
    transition: .4s;
    opacity: .5;
}


/* g_nav */
header .g_nav {
    width: 625px;
}

header .g_nav ul {
    width: 100%;
}

header .g_nav ul li {
    font-weight: 700;
    text-align: center;
}

header .g_nav ul li span {
    display: block;
    font-weight: 100;
    font-size: 12px;
    padding-top: 9px;
}

header .g_nav ul li a {
    display: inline-block;
    width: 100px;
    height: 80px;
    padding-top: 21px;
    box-sizing: border-box;
}

header .g_nav ul li a:hover {
    transition: .4s;
    background-color: #aab86d;
    color: #fff;
}


/* customer_nav */
header .customer_nav {
    width: 304px;
}

header .customer_nav ul {
    display: flex;
    justify-content: space-between;
}

header .customer_nav ul li a {
    display: inline-block;
    font-size: 12px;
    text-align: center;
    width: 76px;
    height: 80px;
    padding-top: 55px;
    box-sizing: border-box;
}

header .customer_nav ul .login a {
    background-image: url(../images/common/icon_my.png);
    background-position-x: 19px;
    background-position-y: 12px;
    background-repeat: no-repeat;
}

header .customer_nav ul .login a:hover {
    background-image: url(../images/common/icon_my_w.png);
    transition: .4s;
    background-color: #aab86d;
    color: #fff;
}

header .customer_nav ul .favorit a {
    background-image: url(../images/common/icon_heart.png);
    background-position-x: 19px;
    background-position-y: 12px;
    background-repeat: no-repeat;
}

header .customer_nav ul .favorit a:hover {
    background-image: url(../images/common/icon_heart_w.png);
    transition: .4s;
    background-color: #aab86d;
    color: #fff;
}

header .customer_nav ul .search a {
    background-image: url(../images/common/icon_seach.png);
    background-position-x: 19px;
    background-position-y: 12px;
    background-repeat: no-repeat;
}

header .customer_nav ul .search a:hover {
    background-image: url(../images/common/icon_seach_w.png);
    transition: .4s;
    background-color: #aab86d;
    color: #fff;
}

header .customer_nav ul .cart a {
    background-image: url(../images/common/icon_cart.png);
    background-position-x: 19px;
    background-position-y: 12px;
    background-repeat: no-repeat;
}

header .customer_nav ul .cart a:hover {
    background-image: url(../images/common/icon_cart_w.png);
    transition: .4s;
    background-color: #aab86d;
    color: #fff;
}

.current {
    background-color: #aab86d;
    color: #fff;
}

.current a {
    background-color: #aab86d;
    color: #fff;
}

/* footer */

footer {
    position: sticky;
    /* フッター下部固定 */
    top: 100vh;
    border-top: 1px solid #e5e1d5;
}

/* sns_content */
footer .sns_content ul {
    width: 410px;
    padding: 18px 0;
}

footer .sns_content ul li {
    font-size: 0;
    background-color: transparent;
}

footer .sns_content ul .instagram {
    margin-right: 32px;
}

footer .sns_content ul .instagram a {
    background-image: url(../images/common/instagram.png);
    background-size: contain;
    width: 39px;
    height: 39px;
    display: inline-block;
}

footer .sns_content ul .twitter {
    margin-right: 36px;
}

footer .sns_content ul .twitter a {
    background-image: url(../images/common/twitter.png);
    background-size: contain;
    width: 39px;
    height: 39px;
    display: inline-block;
}

footer .sns_content ul .google-play {
    margin-right: 10px;
}

footer .sns_content ul .google-play a {
    background-image: url(../images/common/google-play.png);
    background-size: contain;
    width: 134px;
    height: 40px;
    display: inline-block;
}

footer .sns_content ul .App_Store a {
    background-image: url(../images/common/App_Store.png);
    background-size: contain;
    width: 120px;
    height: 40px;
    display: inline-block;
}

footer .sns_content ul li a:hover {
    transition: .4s;
    opacity: .5;
}


/* footer_content */
footer .footer_content {
    background-image: url(../images/common/bg.png);
    background-size: cover;
    width: 100%;
    height: 550px;
}

/* footer_menu */
footer .footer_menu {
    width: 1200px;
    padding: 40px 0 0 46px;
}

footer .footer_menu h6 {
    padding-top: 190px;
}

footer .footer_menu h6 a:hover {
    transition: .4s;
    opacity: .5;
}

footer .f_nav_box {
    width: 792px;
    padding: 50px 48px 0 48px;
    margin-right: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

footer .f_nav_box .f_nav>li {
    font-weight: 500;
    font-size: 14px;
    color: #FFF;
    margin-bottom: 47px;
}

footer .f_nav_box .f_nav>li>ul {
    padding-top: 30px;
}

footer .f_nav_box .f_nav>li>ul>li {
    font-weight: 200;
    font-size: 14px;
    color: #FFF;
    padding-top: 18px;
}

footer .f_nav_box .f_nav>li>ul>li a {
    color: #FFF;
}

footer .f_nav_box .f_nav>li>ul>li a:hover {
    color: #FFF;
    transition: .4s;
    opacity: .5;
}


/* copy */
footer .copy {
    border-bottom: 1px solid #fff;
    height: 51px;
    background-color: #60594f;
    border-top: 1px solid #FFF;
    box-sizing: border-box;
}

footer .copy p {
    text-align: center;
    color: #FFF;
    line-height: 51px;
    font-size: 11px;
    line-height: 48px;
    letter-spacing: 0.2em;
}


/* --- スマホ0~640pxまで --- */
@media screen and (max-width:640px) {

    /* toggle_btn */
    .toggle_btn {
        display: block;
        margin: 10px 10px 0 0 ;
        z-index: 1000;
        position: fixed;
        /*ボタン内側の基点となるためrelativeを指定*/
        border: 1px solid#323232;
        background-color: #fff;
        cursor: pointer;
        width: 50px;
        height: 50px;
        right: 0;
        border-radius: 5px;
    }

    .toggle_btn .line {
        z-index: 1000;
        display: inline-block;
        position: absolute;
        left: 10px;
        height: 1px;
        background: #323232;
        width: 60%;
    }

    .toggle_btn .line_top {
        top: 10px
    }

    .toggle_btn .line_middle {
        top: 25px;
    }

    .toggle_btn .line_bottom {
        top: 40px
    }



    /* テンプレートを書く */
    .inner {
        width: auto;
    }

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


    /* いらないものを消す */
    /*  .none {
        display: none;
    }*/

    /* キャンペーン帯 */
    aside {
        display: none;
    }

    footer .footer_menu {
        display: none;
    }


    /* 段組みの解除 */
    .ds_f {
        flex-direction: column;
    }

    .jc_sb {
        justify-content: flex-start;
    }


    /* 余白を調整、細かいところの調整 */

    /* h_menu固定（g_nav） */
    .fixed {
        position: static;
        z-index: 10000;
        top: 0;
    }

    header .h_menu {
        width: 100%;
        height: auto;
        justify-content: start;
        flex-direction: column;
    }

    header .h_menu .logo {
        padding-right: 0px;
        position: absolute;
        top: 0;
        left: 123px;
    }


    header #g_nav{
        display: none;
        z-index: 999;
        width: 100%;
        position: fixed;
        top: 0;
        background-color: rgba(239, 255, 245);
    } 

    header .g_nav ul li a {
        display: inline-block;
        width: 100%;
        height: 80px;
        padding-top: 21px;
        box-sizing: border-box;
        border-bottom: 1px dotted #506339;
        }
    
    header .g_nav ul li a:hover {
        transition: .4s;
        background-color: #aab86d;
        color: #fff;
    }


    header .customer_nav {
        width: 304px;
        margin: 0 auto;
        padding-top: 63px;
    }

    /* sns_content */
    footer .sns_content {
        width: 100%;
    }

    footer .sns_content ul {
        width: 134px;
        margin: 0 auto;
    }

    footer .sns_content li {
        margin-bottom: 20px;
    }

    footer .sns_content li:last-child {
        margin-bottom: 0;
    }

    footer .sns_content ul .instagram {
        margin-right: 0;
        padding-left: 44px;
    }

    footer .sns_content ul .instagram a {
        background-image: url(../images/common/instagram.png);
        background-size: contain;
        width: 39px;
        height: 39px;
        display: inline-block;
    }

    footer .sns_content ul .twitter {
        margin-right: 0;
        margin-right: 0;
        padding-left: 44px;
    }

    footer .sns_content ul .google-play {
        margin-right: 10px;
    }

    footer .sns_content ul .App_Store {
        padding-left: 5px;
    }

    /* footer_content */
    footer .footer_content {
        height: 100%;
    }


}