@import url('https://gigaplus.makeshop.jp/kofujewe/css/reset.min.css');
@import url('https://fonts.googleapis.com/css2?family=Material+Icons&family=Crimson+Text:wght@400;600;700&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

::selection {
    background: rgba(0,0,0,0.8);
    color: #eee;
}
*{
    min-width: 0;
    min-height: 0;
}
html{
    font-size: 62.5%;
}
body{
    background: #111;
    color: #ddd;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 500;
}
body.active_cart{
    width: calc(100% - 240px);
}
body.noscroll{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}
img[src$=".svg"].fluid {
    width: 100%;
}
h1,h2,h3,h4,h5{
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
}
.container{
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 0 auto;
}
.container_s{
    width: calc(100% - 20px);
    max-width: 800px;
    margin: 0 auto;
}
.container_l{
    width: calc(100% - 20px);
    max-width: 1600px;
    margin: 0 auto;
}
.row{
    display: flex;
    flex-direction: row;
}
.ta_center{ text-align: center;}
.pswp__share-tooltip .pswp__share--download{ display: none;}
.slider{
    opacity: 0;
    transition: opacity .3s linear;
}
.slider.slick-initialized{
    opacity: 1;
}
.scrollbar::-webkit-scrollbar{
    height: 4px;
}
.scrollbar::-webkit-scrollbar-track{
    background: #111;
}
.scrollbar::-webkit-scrollbar-thumb{
    background: #1a1a1a;
    border-radius: 2px;
}
.scrollbar:hover::-webkit-scrollbar-thumb{
    background: #444;
}
.fullHeight{
    height: calc(var(--vh, 1vh) * 100);
}

header{
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 10;
}
header .wrap{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
header .wrap .logo{
    width: 200px;
    height: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .wrap .logo h1{
    height: 100%;
    text-align: center;
}
header .wrap .logo h1 a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #eee;
    text-decoration: none;
    transition: all 0.2s ease;
}
header .wrap .logo h1 a:hover{
    opacity: 0.6;
}
header .wrap .logo h1 a img{
    width: 160px;
    height: auto;
    display: block;
}
header .wrap .nav{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*
    overflow-y: auto;
    */
}
header .wrap .nav::-webkit-scrollbar{
    height: 4px;
}
header .wrap .nav::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 2px;
}
header .wrap .nav::-webkit-scrollbar-track{
    background: #222;
}

header .wrap .nav nav{
    height: 100%;
    margin-left: auto;
}
header .wrap .nav nav ul{
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
header .wrap .nav nav ul > li{
    height: 100%;
}
header .wrap .nav nav ul > li a{
    width: 100%;
    height: 100%;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #eee;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    transition: all 0.2s ease;
}
header .wrap .nav nav ul > li a:hover,
header .wrap .nav nav ul > li.sub{
    position: relative;
}
header .wrap .nav nav ul > li.sub.active > a{
    background: rgba(255,255,255,0.1);
    color: #fff;
}
header .wrap .nav nav ul > li.sub > a{
    cursor: pointer;
}
header .wrap .nav nav ul > li.sub .sub_nav{
    width: 100vw;
    position: absolute;
    left: 0;
    top: 80px;
    background: #222;
    display: none;
    z-index: 1;
}
/*
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap{
    display: flex;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand{
    width: 20%;
    min-width: 240px;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand .ttl{
    width: calc(100% - 40px);
    max-width: 800px;
    margin: 0 auto 10px;
    position: relative;
    text-align: center;
    display: none;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand .ttl span{
    padding: 0 30px;
    display: inline-block;
    background: #222;
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand ul.brand_list{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand ul.brand_list > li{
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #333;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand ul.brand_list > li > a{
    width: 100%;
    padding: 16px 10px;
    position: relative;
    cursor: pointer;
    display: block;
    text-align: center;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand ul.brand_list > li > a > img{
    width: auto;
    height: 36px;
    display: block;
    margin: 0 auto;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand ul.brand_list > li > a:hover,
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .brand ul.brand_list > li.active > a{
    background: #333;
}

header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail{
    flex: 1;
    background: #333;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li{
    display: none;
    width: 100%;
    min-height: 100%;
    height: 200px;
    overflow-x: scroll;
    white-space: nowrap;
    position: relative;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li::-webkit-scrollbar{
    width: 16px;
    height: 16px;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li:hover::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,1);
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li:first-child{
    display: block;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li ul{
    position: absolute;
    left: 0;
    top: 0;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li ul li{
    width: 160px;
    height: 180px;
    float: left;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li ul li a{
    padding: 10px 10px 10px;
    text-align: center;
    font-size: 1.6rem;
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li ul li a img{
    width: 100%;
    height: auto;
    display: block;
}
@media all and (-ms-high-contrast:none){
    header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li ul li a img{
        width: 140px;
    }
}
header .wrap .nav nav ul > li.sub .sub_nav.product .sub_wrap .detail ul.detail_list > li ul li a span{
    margin: 10px 0 0;
}
*/
header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list li{}
header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list li a{
    padding: 20px 16px;
    display: inline-block;
}
header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list li a:hover{}
header .wrap .nav nav ul > li.sub .sub_nav,
header .wrap .nav nav ul > li.sub .sub_nav.brand{
    width: 300px;
    max-width: 300px;
    position: absolute;
    top: 80px;
    right: 0;
    left: auto;
}
header .wrap .nav nav ul > li.sub .sub_nav ul.sub_list,
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list{
    display: flex;
    flex-direction: column;
    background: #222;
}
header .wrap .nav nav ul > li.sub .sub_nav ul.sub_list li,
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li{
    border-bottom: 1px solid #111;
}
header .wrap .nav nav ul > li.sub .sub_nav ul.sub_list li a,
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li a{
    display: block;
    padding: 20px;
    position: relative;
    text-align: center;
}
header .wrap .nav nav ul > li.sub .sub_nav ul.sub_list li a:hover,
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li a:hover{
    background: rgba(255,255,255,0.05);
}
header .wrap .nav nav ul > li.sub .sub_nav ul.sub_list li a::after,
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li a::after{
    content: "\e5cc";
    font-family: "material icons";
    text-align: center;
    line-height: 20px;
    width: 40px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
}
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li a span{
    width: 100%;
    height: 30px;
    display: block;
}
header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li a span img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

header .wrap .nav nav ul > li.icon ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
header .wrap .nav nav ul > li.icon ul li{
    flex: 1;
}
header .wrap .nav nav ul > li.user{
    position: relative;
}
header .wrap .nav nav ul > li.user > a{
    width: 40px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-indent: -9999px;
}
header .wrap .nav nav ul > li.user > a::before{
    content: "\e7fd";
    font-family: "material icons";
    font-size: 1.6rem;
    text-align: center;
    line-height: 30px;
    width: 40px;
    height: 30px;
    margin-left: -20px;
    margin-top: -15px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    text-indent: 0px;
}
header .wrap .nav nav ul > li.user.active > a{
    background: #333;
    color: #fff;
}
header .wrap .nav nav ul > li.user .user_wrap{
    width: 240px;
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    box-shadow: 0 3px 3px 2px rgba(255,255,255,0.1);
    z-index: 1;
    display: none;
}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li{
    border-top: 1px solid #222;
}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li a{
    min-height: 52px;
    padding: 16px 20px 16px 40px;
    position: relative;
}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li a::before{
    font-family: "material icons";
    text-align: center;
    line-height: 30px;
    width: 40px;
    height: 30px;
    margin-top: -15px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.cart a::before{ content: "\e8cc";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.login a::before{ content: "\ea77";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.logout a::before{ content: "\e9ba";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.entry a::before{ content: "\e254";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.history a::before{ content: "\e02f";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.mypage a::before{ content: "\e7fd";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.change a::before{ content: "\f02e";}
header .wrap .nav nav ul > li.user .user_wrap .user_set ul li.point a::before{ content: "\e2eb";}
header .wrap .nav nav ul > li.cart{
    position: relative;
}
header .wrap .nav nav ul > li.cart > a{
    width: 40px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    text-indent: -9999px;
}
header .wrap .nav nav ul > li.cart > a::before{
    content: "\e8cc";
    font-family: "material icons";
    font-size: 1.6rem;
    text-align: center;
    line-height: 30px;
    width: 40px;
    height: 30px;
    margin-left: -20px;
    margin-top: -15px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    text-indent: 0px;
}

header .btn_hNav{
    display: none;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    position: absolute;
    top: 50%;
    right: 15px;
    cursor: pointer;
}
header .btn_hNav::before,
header .btn_hNav::after{
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all 0.5s;
}
header .btn_hNav::before{
    top: 5px;
}
header .btn_hNav::after{
    bottom: 5px;
}
header .btn_hNav span{
    width: 100%;
    height: 1px;
    margin-top: -0.5px;
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.5s;
}
header .btn_hNav.active::before{
    margin-top: 9px;
    transform: rotate(45deg);
}
header .btn_hNav.active::after{
    margin-bottom: 9px;
    transform: rotate(-45deg);
}
header .btn_hNav.active span{
    opacity: 0;
}

footer #f_content{
    padding: 20px 0 40px;
}
footer #f_content .wrap .inner{
    width: calc(100% - 100px);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
footer #f_content .wrap .inner .nav{
    flex: 1;
    display: flex;
    flex-direction: row;
}
footer #f_content .wrap .inner .nav .set{
    width: 100%;
    max-width: 240px;
}
footer #f_content .wrap .inner .nav .set + .set{
    margin-left: 20px;
}
footer #f_content .wrap .inner .nav .set ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
footer #f_content .wrap .inner .nav .set ul li a{
    padding: 10px 10px;
    display: block;
    color: #eee;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    transition: all 0.2s ease;
    position: relative;
}
footer #f_content .wrap .inner .nav .set ul li a::before{
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background: #fff;
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all .8s ease;
}
footer #f_content .wrap .inner .nav .set ul li a:hover{
    color: #fff;
}
footer #f_content .wrap .inner .nav .set ul li a:hover::before{
    width: 100%;
    opacity: 1;
    left: 0;
    right: auto;
}
footer #f_content .wrap .inner .nav .set ul.social{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
footer #f_content .wrap .inner .nav .set ul.social li a{}
footer #f_content .wrap .inner .nav .set ul.social li a span{
    width: 20px;
    height: 20px;
    margin-right: 10px;
    padding: 0;
    text-indent: -9999px;
    display: inline-block;
    position: relative;
}
footer #f_content .wrap .inner .nav .set ul.social li a span::before{
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transition: all 0.2s ease;
}
footer #f_content .wrap .inner .nav .set ul.social li a:hover{
    opacity: 0.6;
}
footer #f_content .wrap .inner .nav .set ul.social li.facebook a span::before{ background-image: url('https://gigaplus.makeshop.jp/kofujewe/img/common/social/facebook.svg');}
footer #f_content .wrap .inner .nav .set ul.social li.instagram a span::before{ background-image: url('https://gigaplus.makeshop.jp/kofujewe/img/common/social/instagram.svg');}
footer #f_content .wrap .inner .nav .set ul.social li.twitter a span::before{ background-image: url('https://gigaplus.makeshop.jp/kofujewe/img/common/social/twitter.svg');}
footer #f_content .wrap .inner .nav .set ul.social li.youtube a span::before{ background-image: url('https://gigaplus.makeshop.jp/kofujewe/img/common/social/youtube.svg');}
footer #f_content .wrap .inner .others{
    width: 100%;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
footer #f_content .wrap .inner .others .copy .img{
    width: 100%;
    text-align: right;
}
footer #f_content .wrap .inner .others .copy .img a{
    padding: 10px 0;
    display: inline-block;
}
footer #f_content .wrap .inner .others .copy .img a:hover{
    opacity: 0.6;
}
footer #f_content .wrap .inner .others .copy .img a img{
    width: 100%;
}
footer #f_content .wrap .inner .others .copy .txt{
    margin: 10px 0 0;
}
footer #f_content .wrap .inner .others .copy .txt p{
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    text-align: right;
}
h2.ttl{
    text-align: center;
}
h2.ttl span{
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-indent: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
}

#commonCart{
    width: 240px;
    height: 100%;
    max-height: 100vh;
    position: fixed;
    top: 0;
    right: -240px;
    background: #fff;
}
#commonCart .cart_wrap .cart_set{
    display: flex;
    flex-direction: column;
}
#commonCart .cart_wrap .cart_set .top{
    padding: 20px;
    height: 120px;
}
#commonCart .cart_wrap .cart_set .top .total{
    font-size: 1.2rem;
    color: #333;
}
#commonCart .cart_wrap .cart_set .top .total strong{
    color: #B12704;
}
#commonCart .cart_wrap .cart_set .top .gotocart{
    margin: 20px 0 0;
}
#commonCart .cart_wrap .cart_set .top .gotocart a{
    padding: 12px 0;
    display: block;
    background: #ffd813;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 4px;
    border: 1px solid #ddd;
}
#commonCart .cart_wrap .cart_set .top .gotocart a::before{
    content: "\e8cc";
    font-family: "material icons";
    margin-right: 10px;
    position: relative;
    top: 1px;
}
#commonCart .cart_wrap .cart_set .top .gotocart a:hover{
    background: #f7ca00;
    border-color: #ccc;
}
#commonCart .cart_wrap .cart_set .body{
    height: calc(100vh - 120px);
    border-top: 1px solid #ddd;
    overflow-y: auto;
}
#commonCart .cart_wrap .cart_set .body::-webkit-scrollbar{
    width: 0;
}
#commonCart:hover .cart_wrap .cart_set .body::-webkit-scrollbar{
    width: 8px;
}
#commonCart:hover .cart_wrap .cart_set .body::-webkit-scrollbar-thumb{
    background: #ccc;
    border-radius: 4px;
    border: 2px solid #fff;
}
#commonCart:hover .cart_wrap .cart_set .body::-webkit-scrollbar-track{
    margin: 2px 0;
    background: #fff;
}
#commonCart .cart_wrap .cart_set .body ul.items_list{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li{
    border-bottom: 1px solid #eee;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner{
    display: flex;
    flex-direction: row;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .img{
    width: 80px;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .img a{
    width: 100%;
    height: 0;
    padding: 100% 0 0;
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .img a img{
    width: 100%;
    max-width: none;
    transition: all 0.2s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .img a img:hover{
    width: 120%;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .detail{
    flex: 1;
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .detail .name{
    font-size: 1.2rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #333;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .detail .name a{
    text-decoration: none;
    color: #333;
    word-break: break-all;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .detail .name a:hover{
    text-decoration: underline;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .detail .price{
    margin: 5px 0 0;
    font-size: 1.2rem;
    color: #B12704;
}
#commonCart .cart_wrap .cart_set .body ul.items_list li .inner .detail .num{
    margin: 5px 0 0;
    color: #666;
    font-size: 1.2rem;
}

#common_ttl{
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
}
#common_ttl .wrap .set{
    padding: 20px 0;
}
#common_ttl .wrap .set h1{
    text-align: center;
    line-height: 1.5;
}
#common_ttl .wrap .set h1 span{
    display: inline-block;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
}

#ordercontract{
    padding: 100px 0;
    background: #eee;
}
#ordercontract .wrap .set dl{
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}
#ordercontract .wrap .set dl dt,
#ordercontract .wrap .set dl dd{
    padding: 20px 0;
    font-size: 1.4rem;
    border-top: 1px solid #ddd;
    float: left;
}
#ordercontract .wrap .set dl dt{
    width: 200px;
    clear: both;
    color: #333;
}
#ordercontract .wrap .set dl dd{
    width: calc(100% - 200px);
    color: #666;
}

#policy{
    padding: 100px 0;
    background: #eee;
}
#policy .wrap .set{
    color: #333;
}
#policy .wrap .set p,
#policy .wrap .set li{
    font-size: 1.4rem;
    color: #666;
    text-align: justify;
}
#policy .wrap .set p{
    margin: 2rem 0;
}
#policy .wrap .set h2{
    margin: 3rem 0;
}
#policy .wrap .set ul,
#policy .wrap .set ol{
    margin: 2rem 0;
    padding-left: 2rem;
}
#guide{
    padding: 100px 0;
    background: #eee;
}
#guide .wrap .set{
    color: #333;
}
#guide .wrap .set p,
#guide .wrap .set li{
    font-size: 1.4rem;
    color: #666;
    text-align: justify;
}
#guide .wrap .set p{
    margin: 2rem 0;
}

#guide .wrap .set h2{
    margin: 3rem 0;
}
#guide .wrap .set ul,
#guide .wrap .set ol{
    margin: 2rem 0;
    padding-left: 2rem;
}



#product_ttl{
    padding: 60px 0;
}
#product_ttl .wrap .set h1{
    text-align: center;
}
#product_ttl .wrap .set h1 span{
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
}
#product_ttl .wrap .set p.caption{
    margin: 20px 0 0;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    text-indent: 0.1rem;
}

#productList{
    padding: 100px 0;
    background: #fff;
    position: relative;
}
#productList .wrap .set{
    width: calc(100% - 40px);
    margin: 0 auto;
}
#productList p.empty{
    text-align: center;
    color: #666;
    font-size: 1.4rem;
}
#productList ul.product_list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#productList ul.product_list li{
    width: calc(25% - 40px);
    margin: 20px 20px 0;
    position: relative;
}
#productList ul.product_list li > a{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
#productList ul.product_list li .inner .img{
    border: 1px solid #fff;
    transition: all 0.2s;
}
#productList ul.product_list li:hover .inner .img{
    opacity: 0.9;
}
#productList ul.product_list li .inner .txt{
    margin: 10px 0 0;
    text-align: center;
}
#productList ul.product_list li .inner .txt .name{
    font-size: 1.4rem;
    color: #666;
}
#productList ul.product_list li:hover .inner .txt .name{
    text-decoration: underline;
    color: #333;
}
#productList ul.product_list li .inner .txt .price{
    margin: 5px 0 0;
    font-size: 1.2rem;
    color: #999;
}
#productList ul.product_list li .inner .txt .price span.nostock{
    color: #ae1f33;
}
#productList .pagination{
    width: calc(100% - 40px);
    margin: 60px auto 0;
    border-top: 1px solid #eee;
}
#productList .pagination ul{
    width: 100%;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#productList .pagination ul li{
    font-size: 1.6rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
}
#productList .pagination ul li.active{
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    background: #222;
}
#productList .pagination ul li a{
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}
#productList .pagination ul li a:hover{
    background: #f5f5f5;
}
#productList .productnav_wrap{
    margin: -100px auto 60px;
    padding: 0 40px;
    border-bottom: 1px solid #eee;
}
#productList .productnav_set ul.productnav_list{
    width: 100%;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
#productList .productnav_set ul.productnav_list li{
    margin-left: 20px;
}
#productList .productnav_set ul.productnav_list li:first-child{
    margin-left: 0;
}
#productList .productnav_set ul.productnav_list li.search span{
    padding: 0 20px 0 35px;
    height: 30px;
    display: block;
    font-size: 1.4rem;
    color: #666;
    line-height: 30px;
    position: relative;
    background: #eee;
    border-radius: 15px;
    cursor: pointer;
}
#productList .productnav_set ul.productnav_list li.search span::before{
    content: "\e429";
    font-family: "material icons";
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin: -10px 0 0;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
}
#productList .productnav_set ul.productnav_list li.search span:hover{
    background: #ddd;
    color: #333;
}
#productList .productnav_set ul.productnav_list li.sort select{
    height: 30px;
    padding: 0 10px;
    font-size: 1.4rem;
    border: 1px solid #eee;
    border-radius: 3px;
}
#productList .productnav_set ul.productnav_list li.sort select:hover,
#productList .productnav_set ul.productnav_list li.sort select:focus{
    border-color: #ddd;
}
#productList .searchresult_wrap{
    margin: -20px 0 40px;
}
#productList .searchresult_set{
    padding: 10px 0;
    background: #fafafa;
}
#productList .searchresult_set ul.searchresult_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#productList .searchresult_set ul.searchresult_list li{
    margin: 5px 0 0;
    color: #666;
    font-size: 1.4rem;
    display: flex;
    flex-direction: row;
}
#productList .searchresult_set ul.searchresult_list li:first-child{
    margin-top: 0;
}
#productList .searchresult_set ul.searchresult_list li .ttl{
    width: 120px;
    padding: 0 10px 0 0;
    text-align: right;
}
#productList .searchresult_set ul.searchresult_list li .ttl::after{
    content: "：";
}
#product .wrap{
    width: 100%;
    max-width: 100vw;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: row;
}
#product .wrap .img{
    flex: 1;
    background-color: #fff;
    position: relative;
}
#product .wrap .img .img_set{
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
}
#product .wrap .img .img_set .slider_wrap{
    padding: 0 40px;
    position: relative;
}
#product .wrap .img .img_set .slider_wrap .slider_list{
    max-width: 600px;
    margin: 0 auto;
}
#product .wrap .img .img_set .slider_wrap .slider_list figure{
    margin: 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
    outline: none;
    position: relative;
}
#product .wrap .img .img_set .slider_wrap .slider_list figure a{
    display: block;
    outline: none;
}
#product .wrap .img .img_set .slider_wrap .slider_list figure img{
    width: 100%;
    height: auto;
    transition: all 0.2s;
}
#product .wrap .img .img_set .slider_wrap .slider_list figure img:hover{
    opacity: 0.6;
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb{
    width: 100%;
    height: 80px;
    margin: 0;
    padding: 0 40px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: -100px;
    transform: translate(-50%,0);
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li{
    width: 80px;
    margin: 0 4px;
    position: relative;
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li::before{
    content: "";
    width: 100%;
    height: 0;
    background: #333;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s;
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li:hover::before{
    height: 2px;
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li.thumbnail-current:hover::before{
    display: none;
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li img{
    opacity: 0.6;
    cursor: pointer;
}
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li.thumbnail-current img,
#product .wrap .img .img_set .slider_wrap ul.slider_thumb li img:hover{
    opacity: 1;
}
#product .wrap .product{
    width: 40vw;
    max-width: 500px;
    padding: 0 4vw;
    background-color: #fafafa;
    color: #666;
    position: relative;
    overflow: hidden;
}
#product .wrap .product .product_set{
    padding: 60px 0 0;
    position: sticky;
    top: 0;
}
#product .wrap .product h2 span{
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}
#product .wrap .product .name h1{
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    color: #333;
}
#product .wrap .product .code p{
    font-size: 1.2rem;
}
#product .wrap .product .price{
    margin: 10px 0 0;
}
#product .wrap .product .price p{
    font-size: 1.6rem;
}
#product .wrap .product .price p s{
    color: #999;
}
#product .wrap .product .price p span.tag_sale{
    margin-right: 10px;
    padding: 0 4px;
    color: #fff;
    background: red;
}
#product .wrap .product .description{
    margin: 60px 0;
}
#product .wrap .product .description p{
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
}
#product .wrap .product .description p + p{
    margin: 10px 0 0;
}
#product .wrap .product .buy .status ul{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
#product .wrap .product .buy .status ul li .inner.num{
    margin: 10px 0 0;
}
#product .wrap .product .buy .status ul li .inner p.makeshop-option-label,
#product .wrap .product .buy .status ul li .inner label{
    padding: 8px 0 4px;
    font-size: 1.2rem;
    display: block;
}
#product .wrap .product .buy .status ul li .inner label.makeshop-option-select-wrap{
    padding-top: 0;
}
#product .wrap .product .buy .status ul li .inner input[type="text"],
#product .wrap .product .buy .status ul li .inner input[type="number"],
#product .wrap .product .buy .status ul li .inner select,
#product .wrap .product .buy .status ul li .inner textarea{
    width: 100%;
    padding: 8px 8px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 1.6rem;
    color: #666;
}
#product .wrap .product .buy .status ul li .inner select.num,
#product .wrap .product .buy .status ul li .inner input[type="text"].num,
#product .wrap .product .buy .status ul li .inner input[type="number"]{
    max-width: 100px;
}

#product .wrap .product .buy .status ul li .inner.num > *{
    float: left;
}
#product .wrap .product .buy .status ul li .inner.num label{
    margin-right: 10px;
}
#product .wrap .product .buy .enter{
    margin: 40px 0 0;
}
#product .wrap .product .buy .enter a{
    width: 100%;
    padding: 16px 0;
    display: block;
    background: #333;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    transition: all 0.2s;
}
#product .wrap .product .buy .enter a:hover{
    background: #000;
}
#product .wrap .product .buy .enter a.soldout{
    background: #ddd;
    color: #444;
}
#product .wrap .product .buy .enter .ringgage{
    margin: 10px 0 0;
}
#product .wrap .product .buy .enter .ringgage a{
    background: #0da3b5;
}
#product .wrap .product .buy .enter .ringgage a:hover{
    background: #058e9e;
}

#product .wrap .product .buy .enter .share{
    margin: 10px 0 0;
}
#product .wrap .product .buy .enter .share span{
    width: 20px;
    height: 20px;
    margin-left: auto;
    display: block;
    position: relative;
    cursor: pointer;
}
#product .wrap .product .buy .enter .share span::before{
    content: "\e80d";
    font-family: "material icons";
    font-size: 1.4rem;
    line-height: 20px;
    text-align: center;
    color: #999;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
#product .wrap .product .buy .enter .share span:hover::before{
    color: #333;
}
#product .wrap .product .buy .enter a.restock::before{
    content: "\e0be";
    font-family: "material icons";
    margin-right: 10px;
    position: relative;
    top: 2px;
}

#product .wrap .product .banner{
    margin: 40px 0;
}
#product .wrap .product .banner ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
#product .wrap .product .banner ul li{
    margin-top: 4px;
}
#product .wrap .product .banner ul li:first-child{
    margin-top: 0;
}
#product .wrap .product .banner ul li a{
    padding: 10px 30px 10px 10px;
    font-size: 1.4rem;
    cursor: pointer;
    border: 1px solid #ddd;
    color: #1a73e8;
    display: block;
    position: relative;
    border-radius: 4px;
}
#product .wrap .product .banner ul li a:hover{
    background: #f8fbff;
    border-color: #cce0fc;
}
#product .wrap .product .banner ul li a:hover::after{
    content: "\e89e";
    font-family: "material icons";
    text-align: center;
    line-height: 20px;
    width: 30px;
    height: 20px;
    margin-top: -10px;
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
}
#product .wrap .product .banner ul li a:hover::after{
    display: block;
}
#product .wrap .product .detail{
    margin-top: 60px;
    padding: 60px 0 20px;
    border-top: 1px solid #999;
}
#product .wrap .product .detail table.status{
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    border-top: 1px solid #ccc;
}
#product .wrap .product .detail table.status th,
#product .wrap .product .detail table.status td{
    padding: 10px 10px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}
#product .wrap .product .detail table.status th{
    width: 130px;
}
#product .wrap .product .detail p{
    margin: 20px 0;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}
#product .wrap .product .review{
    width: calc(100% + 8vw);
    margin-left: -4vw;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
}
#product .wrap .product .review a{
    width: calc(100% - 8vw);
    height: 50px;
    margin: 0 auto;
    display: block;
    font-size: 1.4rem;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    background: #f1f3f4;
    border: 1px solid #e5e5e5;
}
#product .wrap .product .review a:hover{
    color: #333;
    border-color: #ddd;
}
#product .wrap .product .review a span{
    display: inline-block;
    position: relative;
}
#product .wrap .product .review a span::before{
    content: "\f054";
    font-family: "material icons";
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    display: block;
    position: absolute;
    top: 50%;
    left: -30px;
}

#company_ttl{
    margin: 60px 0;
    transition: all 0.2s;
}
#company_ttl *{
    transition: all 0.2s;
}
#company_ttl .wrap .set h1{
    margin: 100px 0 0;
    text-align: center;
}
#company_ttl .wrap .set h1 span{
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
}
#company{
    padding: 100px 0 0;
    background: #222;
}
#company dl.company_list{
    width: 100%;
    margin: 0 0 100px;
    border-bottom: 1px solid #333;
    overflow: hidden;
}
#company dl.company_list dt,
#company dl.company_list dd{
    padding: 20px 0;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    float: left;
    border-top: 1px solid #333;
}
#company dl.company_list dt{
    width: 200px;
    clear: both;
}
#company dl.company_list dd{
    width: calc(100% - 200px);
}
#company ul.point_list{
    margin: 60px 0;
    padding-left: 2rem;
}
#company ul.point_list li{
    margin: 16px 0 0;
    font-size: 1.4rem;
}
#company ul.point_list li p.memo{
    margin: 5px 0 0;
    padding: 10px;
    background: rgba(255,255,255,0.05);
}
#company .map_wrap{
    margin-top: 100px;
    height: 40vh;
}
#company .map_wrap iframe{
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.2s;
}
#company .map_wrap iframe:hover{
    transition: all 1s;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}

#factory_ttl .wrap .set{
    position: relative;
}
#factory_ttl .wrap .set .img{
    overflow: hidden;
}
#factory_ttl .wrap .set .img picture{
    outline: none;
}
#factory_ttl .wrap .set .ttl{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
}
#factory_ttl .wrap .set .ttl h1 span{
    padding: 0 20px;
    display: inline-block;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.4rem;
    text-indent: 0.4rem;
    background: rgba(0,0,0,0.6);
    position: relative;
}
#factory_ttl .wrap .set .ttl h1 span::after{
    content: "";
    width: 100px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -100px;
    background: linear-gradient(to left, rgba(0,0,0,0),rgba(0,0,0,0.6));
}
#factory .wrap .set{
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#factory .wrap .set .img{
    margin: 40px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#factory .wrap .set .img img{
    width: calc(50% - 5px);
}
#factory .wrap .set .ttl h2{
    margin: 0 0 100px;
    text-align: center;
    line-height: 2;
}
#factory .wrap .set .ttl h2 span{
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.2rem;
}
#factory .wrap .set .txt{
    width: 100%;
    position: relative;
}
#factory .wrap .set .txt .inner{
    width: 100%;
}
#factory .wrap .set .txt h3{
    margin: 0 0 40px;
    padding: 1rem 0;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    color: #fff;
}
#factory .wrap .set .txt p{
    margin: 2rem 0;
    font-size: 1.4rem;
    line-height: 1.8;
}
#factory .wrap .set .txt .link{
    margin: 40px 0 0;
}
#factory .wrap .set .txt .link a{
    padding: 8px 40px;
    color: #666;
    text-decoration: none;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    display: inline-block;
    border: 1px solid #666;
    position: relative;
    transition: all 0.2s ease;
}
#factory .wrap .set .txt .link a::before{
    content: "\e5cc";
    font-family: "Material Icons";
    font-weight: normal;
    font-size: 1.6rem;
    color: #666;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.2s ease;
}
#factory .wrap .set .txt .link a:hover{
    border-color: #fff;
    color: #fff;
    background: rgba(0,0,0,0.4);
}
#factory .wrap .set .txt .link a:hover::before{
    color: #fff;
}
#factory .wrap .set.single{
    max-width: none;
    margin: 0 auto;
    padding: 100px 0;
    justify-content: center;
    background: #24252d;
}
#factory .wrap .set.single .txt{
    width: 100%;
    max-width: 640px;
}
#factory .wrap .set.single .txt .inner{
    width: 100%;
    max-width: none;
}
#factory .wrap .set.single .txt h2{
    text-align: center;
}
#factory .wrap .set.single .txt .link{
    text-align: center;
}

#factory .wrap .partition{
    height: 40vh;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

#staff .staff_wrap{
    min-height: 600px;
    position: relative;
    border-bottom: 1px solid #333;
    background: #222;
}
#staff .staff_wrap .img{
    width: 60vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}
#staff .staff_wrap .img .inner{
    width: 100%;
    height: 100%;
}
#staff .staff_wrap .img .inner img{
    height: 100%;
    width: auto;
    max-width: none;
}
#staff .staff_wrap .staff_set{
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#staff .staff_wrap .staff_set .txt{
    width: 50vw;
    max-width: 800px;
    height: 100%;
    margin-left: 200px;
    padding: 0 40px 60px;
    float: right;
    background: #222;
    position: relative;
}
#staff .staff_wrap .staff_set .txt::before{
    content: "";
    width: 200px;
    height: 100%;
    display: block;
    background: linear-gradient(to right,rgba(34,34,34,0),rgba(34,34,34,1));
    position: absolute;
    top: 0;
    left: -200px;
}
#staff .staff_wrap .staff_set .txt .name{
    padding: 60px 0 40px;
    border-bottom: 1px solid #999;
}
#staff .staff_wrap .staff_set .txt .name span{
    font-size: 2.4rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.8rem;
}
#staff .staff_wrap .staff_set .txt .name small{
    margin-left: 60px;
    font-size: 1.4rem;
}
#staff .staff_wrap .staff_set .txt .comment{
    margin: 60px 0;
}
#staff .staff_wrap .staff_set .txt .comment p{
    margin: 20px 0;
    font-size: 1.4rem;
    line-height: 1.8;
}
#staff .staff_wrap .staff_set .txt .status dl{
    overflow: hidden;
}
#staff .staff_wrap .staff_set .txt .status dl dt{
    width: 80px;
    float: left;
    clear: both;
    font-size: 1.4rem;
    color: #aaa;
}
#staff .staff_wrap .staff_set .txt .status dl dd{
    width: calc(100% - 80px);
    float: left;
    font-size: 1.4rem;
    color: #aaa;
}
#staff .staff_wrap .staff_set .txt .brand{
    margin: 20px 0 0;
}
#staff .staff_wrap .staff_set .txt .brand strong{
    font-size: 1.4rem;
    font-weight: 500;
}
#staff .staff_wrap .staff_set .txt .brand a{
    width: 100%;
    max-width: 240px;
    margin: 10px 0 0;
    padding: 10px 20px;
    display: block;
    border: 1px solid #eee;
    color: #eee;
    text-decoration: none;
    font-size: 1.4rem;
    position: relative;
    transition: background 0.2s ease;
}
#staff .staff_wrap .staff_set .txt .brand a::after{
    content: ">";
    width: 20px;
    height: 20px;
    display: block;
    line-height: 20px;
    text-align: center;
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
}
#staff .staff_wrap .staff_set .txt .brand a:hover{
    background: rgba(255,255,255,0.1);
}

#staff .ceo_wrap{
    margin: 100px 0;
}
#staff .ceo_wrap .ceo_set .txt{
    height: 100%;
    padding: 0 40px 60px;
    background: #222;
    position: relative;
}
#staff .ceo_wrap .ceo_set .txt::before{
    content: "";
    width: 200px;
    height: 100%;
    display: block;
}
#staff .ceo_wrap .ceo_set .txt .name{
    padding: 60px 0 40px;
    border-bottom: 1px solid #999;
}
#staff .ceo_wrap .ceo_set .txt .name span{
    font-size: 2.4rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.8rem;
}
#staff .ceo_wrap .ceo_set .txt .name small{
    margin-left: 60px;
    font-size: 1.4rem;
}
#staff .ceo_wrap .ceo_set .txt .comment{
    margin: 60px 0;
}
#staff .ceo_wrap .ceo_set .txt .comment p{
    margin: 20px 0;
    font-size: 1.4rem;
    line-height: 1.8;
}
#staff .ceo_wrap .ceo_set .txt .status dl{
    overflow: hidden;
}
#staff .ceo_wrap .ceo_set .txt .status dl dt{
    width: 80px;
    float: left;
    clear: both;
    font-size: 1.4rem;
    color: #aaa;
}
#staff .ceo_wrap .ceo_set .txt .status dl dd{
    width: calc(100% - 80px);
    float: left;
    font-size: 1.4rem;
    color: #aaa;
}

#story .topimg_wrap{
    width: 100%;
    background: #e0dde0 url(https://gigaplus.makeshop.jp/kofujewe/img/story/topimg.jpg) no-repeat right center;
    background-size: auto 100%;
}
#story .topimg_wrap .topimg_set{
    height: 560px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
#story .topimg_wrap .topimg_set h1 span{
    color: #333;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 1rem;
    text-shadow: 0 0 5px rgba(255,255,255,1);
}
#story .greeting_wrap{
    margin: 160px 0;
}
#story .greeting_wrap .greeting_set p{
    margin: 30px 0;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
}
#story .ailecroire_wrap{
    padding: 160px 0;
    background: #222;
}
#story .ailecroire_wrap .ailecroire_slider{ display: none;}
#story .ailecroire_wrap .ailecroire_slider.slick-initialized{ display: block;}
#story .ailecroire_wrap .ailecroire_slider figure{
    outline: none;
}
#story .ailecroire_wrap .ailecroire_set{
    margin: 100px 0 0;
}
#story .ailecroire_wrap .ailecroire_set h2{
    margin: 0 0 60px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
}
#story .ailecroire_wrap .ailecroire_set h2 img{
    max-width: 300px;
    margin: 0 auto;
}
#story .ailecroire_wrap .ailecroire_set h2 + p.caption{
    text-align: center;
    margin: -40px 0 60px;
}
#story .ailecroire_wrap .ailecroire_set h2 + p.caption::before,
#story .ailecroire_wrap .ailecroire_set h2 + p.caption::after{
    content: "-";
    margin: 0 10px;
}

#story .ailecroire_wrap .ailecroire_set p{
    margin: 30px 0;
    font-size: 1.4rem;
    line-height: 1.8;
}
#cart .cart_wrap{
    display: flex;
    flex-direction: row-reverse;
}
#cart .cart_wrap .buy_set{
    width: 360px;
    position: relative;
    background: #fafafa;
}
#cart .cart_wrap .buy_set .buy_inner{
    position: sticky;
    top: 0;
}
#cart .cart_wrap .buy_set .buy_inner .buy{
    padding: 40px;
    background: #eee;
}
#cart .cart_wrap .buy_set .buy_inner .guide{
    padding: 40px;
}
#cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li{
    margin: 10px 0 0;
}
#cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li:first-child{
    margin: 0;
}
#cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li a{
    color: #007185;
    font-size: 1.4rem;
    text-decoration: none;
}
#cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li a:hover{
    text-decoration: underline;
    color: #0066C0;
}
#cart .cart_wrap .buy_set .total{
    font-size: 1.4rem;
    color: #333;
}
#cart .cart_wrap .buy_set .total strong{
    font-size: 1.8rem;
    font-weight: 600;
}
#cart .cart_wrap .buy_set .gotobuy{
    margin: 40px 0 0;
}
#cart .cart_wrap .buy_set .gotobuy a{
    padding: 16px 0;
    display: block;
    background: #ffd813;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 4px;
}
#cart .cart_wrap .buy_set .gotobuy a:hover{
    background: #f7ca00;
}
#cart .cart_wrap .cart_set{
    flex: 1;
    min-height: 60vh;
    background: #fff;
}
#cart .cart_wrap .cart_set ul.item_list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#cart .cart_wrap .cart_set ul.item_list li{
    border-bottom: 1px solid #eee;
}
#cart .cart_wrap .cart_set ul.item_list li .inner{
    padding: 10px 10px;
    display: flex;
    flex-direction: row;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .img{
    width: 30%;
    max-width: 200px;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail{
    flex: 1;
    padding: 10px 10px 10px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .name{
    margin: 0 0 10px;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .name a{
    color: #444;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .name a:hover{
    color: #C7511F;
    text-decoration: underline;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .option{
    margin: -5px 0 10px;
    color: #666;
    font-size: 1.4rem;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .option span{
    display: block;
    clear: both;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .price{
    font-size: 1.4rem;
    color: #666;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .price strong{
    color: #B12704;
    font-weight: 500;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num{
    margin: 10px 0 0;
    font-size: 1.4rem;
    color: #666;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num input[type="text"],
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num input[type="number"]{
    width: 60px;
    padding: 0 5px;
    text-align: right;
    font-size: 1.6rem;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num input[type="text"]:hover,
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num input[type="number"]:hover{
    border-color: #666;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num a{
    margin-left: 10px;
    padding: 0 10px 0 20px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    position: relative;
    border: 1px solid #eee;
    border-radius: 3px;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num a::before{
    content: "\e863";
    font-family: "material icons";
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .num a:hover{
    color: #333;
    background: #fafafa;
    border-color: #ddd;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .delete{
    position: absolute;
    bottom: 0;
    right: 0;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .delete a{
    height: 30px;
    padding: 0 10px 0 25px;
    display: block;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
    text-indent: 0.4rem;
    letter-spacing: 0.4rem;
    line-height: 30px;
    border-radius: 15px;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .delete a::before{
    content: "\e872";
    font-family: "material icons";
    font-size: 1.6rem;
    text-align: center;
    line-height: 20px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
}
#cart .cart_wrap .cart_set ul.item_list li .inner .detail .delete a:hover{
    background: #eee;
    color: #000;
}
#cart .cart_wrap .cart_set .warning{
    margin: 20px;
}
#cart .cart_wrap .cart_set .warning p{
    margin: 10px 0;
    font-size: 1.2rem;
    color: #666;
}
#cart .cart_wrap .cart_set .shopping{
    margin: 20px 20px 40px;
}
#cart .cart_wrap .cart_set .shopping .link a{
    padding: 8px 20px;
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    color: #1a73e8;
    border-radius: 4px;
    border: 1px solid #eee;
}
#cart .cart_wrap .cart_set .shopping .link a:hover{
    border-color: #ccc;
}
#cart .cart_wrap .cart_set .empty{
    padding: 100px 0;
    border-bottom: 1px solid #eee;
}
#cart .cart_wrap .cart_set .empty p{
    text-align: center;
    font-size: 1.4rem;
    color: #666;
}

#oem .greeting_wrap{
    margin: 100px 0;
}
#oem .greeting_wrap .greeting_set h2{
    margin: 40px 0;
    font-size: 2.4rem;
    line-height: 1.8;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    text-align: center;
}
#oem .greeting_wrap .greeting_set p{
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.8;
}
#oem .oem_wrap{
    margin: 0 0 100px;
}
#oem .oem_wrap .oem_set ul.policy_list{
    margin: 0 0 100px;
    padding: 0;
    list-style: none;
}
#oem .oem_wrap .oem_set ul.policy_list li{
    padding: 30px 0;
    border-bottom: 1px solid #333;
}
#oem .oem_wrap .oem_set ul.policy_list li:first-child{
    border-top: 1px solid #333;
}
#oem .oem_wrap .oem_set ul.policy_list li .inner .ttl span{
    font-size: 2rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.2rem;
}
#oem .oem_wrap .oem_set ul.policy_list li .inner .detail{
    margin-top: 20px;
}
#oem .oem_wrap .oem_set ul.policy_list li .inner .detail p{
    font-size: 1.4rem;
    color: #bbb;
}
#oem .oem_wrap .oem_set ol.flow_list{
    margin: 100px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: flowCount;
}
#oem .oem_wrap .oem_set ol.flow_list li{
    margin-left: 30px;
    padding-left: 60px;
    padding-bottom: 40px;
    position: relative;
    border-left: 1px solid #ccc;
}
#oem .oem_wrap .oem_set ol.flow_list li::before{
    content: counter(flowCount);
    counter-increment: flowCount;
    text-align: center;
    line-height: 28px;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: #111;
    border: 1px solid #ddd;
    display: block;
    position: absolute;
    left: -15px;
}
#oem .oem_wrap .oem_set ol.flow_list li:last-child{
    border-left: none;
}
#oem .oem_wrap .oem_set ol.flow_list li .inner .ttl span{
    font-size: 2rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.2rem;
}
#oem .oem_wrap .oem_set ol.flow_list li .inner .detail{
    margin-top: 10px;
}
#oem .oem_wrap .oem_set ol.flow_list li .inner .detail p{
    font-size: 1.4rem;
    color: #bbb;
}
#oem .oem_wrap .oem_set table.price{
    width: 100%;
    margin: 60px 0 0;
    border-collapse: collapse;
}
#oem .oem_wrap .oem_set table.price tbody tr th,
#oem .oem_wrap .oem_set table.price tbody tr td{
    padding: 10px;
    border: 1px solid #333;
    font-size: 1.4rem;
    font-weight: 500;
}
#oem .oem_wrap .oem_set table.price tbody tr td.price{
    border-right: none;
}
#oem .oem_wrap .oem_set table.price tbody tr td.price + td{
    border-left: none;
}
#oem .faq_wrap{
    padding: 60px 0;
    background: #222;
}
#oem .faq_wrap .faq_set dl.faq_list{
    margin-top: 60px;
}
#oem .faq_wrap .faq_set dl.faq_list dt{
    padding: 20px 20px 20px 40px;
    position: relative;
    cursor: pointer;
    transition: background 0.5s;
    border-radius: 4px;
}
#oem .faq_wrap .faq_set dl.faq_list dt::before{
    content: "\e5df";
    font-family: "material icons";
    font-size: 1.4rem;
    text-align: center;
    line-height: 20px;
    width: 40px;
    height: 20px;
    margin-top: -10px;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
}
#oem .faq_wrap .faq_set dl.faq_list dt.active::before{
    content: "\e5c5";
}
#oem .faq_wrap .faq_set dl.faq_list dt span{
    font-size: 1.4rem;
    font-family: 'Crimson Text', 'Shippori Mincho B1', serif;
    letter-spacing: 0.2rem;
}
#oem .faq_wrap .faq_set dl.faq_list dt:hover{
    background: rgba(255,255,255,0.05);
    transition: background 0.2s;
}
#oem .faq_wrap .faq_set dl.faq_list dt.active{
    background: rgba(255,255,255,0.03);
}
#oem .faq_wrap .faq_set dl.faq_list dt:hover,
#oem .faq_wrap .faq_set dl.faq_list dt.active:hover{
    background: rgba(255,255,255,0.05);
    transition: background 0.2s;
}
#oem .faq_wrap .faq_set dl.faq_list dd{
    padding: 40px;
    display: none;
}
#oem .faq_wrap .faq_set dl.faq_list dd p{
    font-size: 1.4rem;
    color: #aaa;
}
#oem .faq_wrap .faq_set dl.faq_list dd p a{
    text-decoration: underline;
    cursor: pointer;
}
#oem .faq_wrap .faq_set dl.faq_list dd p a:hover{
    color: #fff;
}

#index_sample .wrap .set .item ul{
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}
#index_sample .wrap .set .item ul li{
    max-width: 360px;
    position: relative;
}
#index_sample .wrap .set .item ul li:hover{
    opacity: 0.8;
}
#index_sample .wrap .set .item ul li > a{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
#index_sample .wrap .set .item ul li .inner .detail{
    margin: 10px 0 0;
    font-size: 1.4rem;
    text-align: center;
}
#index_sample .wrap .set .low{
    margin: 40px 0 0;
    text-align: center;
}
#index_sample .wrap .set .low a{
    padding: 10px 20px;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #ddd;
}
#index_sample .wrap .set .low a:hover{
    background: #fff;
    color: #333;
}

#popup_ringsize{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
}
#popup_ringsize .wrap{
    width: 100%;
    height: 100%;
    position: relative;
}
#popup_ringsize .wrap .background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.85);
}
#popup_ringsize .wrap .close{
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}
#popup_ringsize .wrap .close span{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
#popup_ringsize .wrap .close span::before{
    content: "\e5cd";
    font-family: "material icons";
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    color: #aaa;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#popup_ringsize .wrap .close span:hover:before{
    color: #fff;
}
#popup_ringsize .wrap .set{
    width: calc(100% - 40px);
    height: 100%;
    max-width: 600px;
    max-height: 70vh;
    position: absolute;
    background: #fff;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow-y: auto;
}
#popup_ringsize .wrap .set::-webkit-scrollbar{
    width: 10px;
}
#popup_ringsize .wrap .set::-webkit-scrollbar-track{
    background: #fff;
}
#popup_ringsize .wrap .set::-webkit-scrollbar-thumb{
    background: #eee;
    border-radius: 5px;
    border: 2px solid #fff;
}
#popup_ringsize .wrap .set:hover::-webkit-scrollbar-thumb{
    background: #ccc;
}
#popup_ringsize .wrap .set .inner{
    padding: 0 20px 20px;
}
#popup_ringsize .wrap .set .inner .topimg{
    margin: 20px 0;
}
#popup_ringsize .wrap .set .inner h1{
    width: calc(100% + 40px);
    margin: 0 0 0 -20px;
    padding: 20px 20px 10px;
    background: #fff;
    position: sticky;
    top: -1px;
    border-bottom: 1px solid #ddd;
    line-height: 1;
}
#popup_ringsize .wrap .set .inner h1 span{
    padding: 0 0 4px;
    display: inline-block;
    color: #333;
}
#popup_ringsize .wrap .set .inner h2{
    margin: 40px 0 20px;
    color: #333;
    font-size: 2rem;
}
#popup_ringsize .wrap .set .inner p{
    margin: 20px 0;
    font-size: 1.4rem;
    color: #666;
}
#popup_ringsize .wrap .set .inner .link a{
    padding: 10px 16px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    background: #1a73e8;
}
#popup_ringsize .wrap .set .inner .link a:hover{
    background: #3181ea;
}
#popup_ringsize .wrap .set .inner figure{
    width: calc(100% - 100px);
    margin: 0 auto;
}
#popup_ringsize .wrap .set .inner .table_wrap table.ringsize_table{
    width: 100%;
    border-collapse: collapse;
}
#popup_ringsize .wrap .set .inner .table_wrap table.ringsize_table th,
#popup_ringsize .wrap .set .inner .table_wrap table.ringsize_table td{
    padding: 4px 10px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    border: 1px solid #ddd;
    text-align: center;
}
#popup_ringsize .wrap .set .inner .table_wrap table.ringsize_table thead tr th{
    background: #fafafa;
}
#popup_review{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
#popup_review .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
#popup_review .wrap .close{
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}
#popup_review .wrap .close span{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
#popup_review .wrap .close span::before{
    content: "\e5cd";
    font-family: "material icons";
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    color: #aaa;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#popup_review .wrap .background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.85);
}
#popup_review .wrap .reviewRate{
    display: flex;
    flex-direction: row;
}
#popup_review .wrap .reviewRate .reviewRateStar{
    width: 24px;
    height: 24px;
    display: block;
    font-size: 0;
}
#popup_review .wrap .reviewRate .reviewRateStar::before{
    content: "\e838";
    font-family: "material icons";
    font-size: 2.4rem;
    color: #fabb05;
    text-align: center;
    line-height: 24px;
    width: 24px;
    height: 24px;
    display: block;
}
#popup_review .wrap .reviewRate .reviewRateStar.starOff::before{
    content: "\f06f";
    color: #ccc;
}
#popup_review .wrap .set{
    max-width: 800px;
    background: #fff;
    position: relative;
    z-index: 1;
}
#popup_review .wrap .set .link{
    position: absolute;
    right: 40px;
    top: 20px;
}
#popup_review .wrap .set .link a{
    width: 80px;
    height: 30px;
    display: block;
    background: #4285f4;
    border: 1px solid #1a73e8;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    line-height: 28px;
    color: #fff;
    font-size: 1.2rem;
}
#popup_review .wrap .set .link a:hover{
    border-color: #1558d6;
}
#popup_review .wrap .set .review_set{
    padding: 0 40px 40px;
}
#popup_review .wrap .set .review_set .ttl{
    width: calc(100% + 80px);
    margin-left: -40px;
    padding: 20px 40px;
}
#popup_review .wrap .set .review_set .ttl .name{
    padding-right: 100px;
    font-size: 2rem;
    color: #333;
    word-break: break-all;
}
#popup_review .wrap .set .review_set .ttl .status{
    height: 24px;
    margin: 10px 0 0;
    display: flex;
    flex-direction: row;
    line-height: 24px;
}
#popup_review .wrap .set .review_set .ttl .status .score span{
    color: #333;
    font-size: 1.6rem;
}
#popup_review .wrap .set .review_set .ttl .status .num{
    margin-left: 10px;
    font-size: 1.2rem;
    color: #999;
}
#popup_review .wrap .set .review_set .noreviews{
    margin: 40px;
    padding: 40px 0;
    background: #f5f5f5;
    border: 1px solid #eee;
}
#popup_review .wrap .set .review_set .noreviews p{
    color: #333;
    font-size: 1.4rem;
    text-align: center;
}
#popup_review .wrap .set .review_set .list_set{
    width: 100%;
    max-height: 600px;
    padding-right: 10px;
    overflow-x: auto;
}
#popup_review .wrap .set .review_set .list_set::-webkit-scrollbar{
    width: 4px;
}
#popup_review .wrap .set .review_set .list_set::-webkit-scrollbar-track{
    background: none;
}
#popup_review .wrap .set .review_set .list_set::-webkit-scrollbar-thumb{
    background: #eee;
    border-radius: 2px;
}
#popup_review .wrap .set .review_set .list_set:hover::-webkit-scrollbar-thumb{
    background: #ccc;
}

#popup_review .wrap .set .review_set .list_set ul.review_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li{
    padding: 30px 0;
    border-top: 1px solid #eee;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li:first-child{
    border-top: none;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .name{
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .status{
    margin: 10px 0 0;
    display: flex;
    flex-direction: row;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .status .stars .reviewRate .reviewRateStar{
    width: 16px;
    height: 16px;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .status .stars .reviewRate .reviewRateStar::before{
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 1.6rem;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .status .date{
    margin-left: 10px;
    font-size: 1.2rem;
    color: #666;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .comment{
    margin: 5px 0 0;
}
#popup_review .wrap .set .review_set .list_set ul.review_list li .inner .comment p{
    font-size: 1.4rem;
    color: #333;
    word-break: break-all;
}
#popup_contact{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
#popup_contact .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
#popup_contact .wrap .close{
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}
#popup_contact .wrap .close span{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
#popup_contact .wrap .close span::before{
    content: "\e5cd";
    font-family: "material icons";
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    color: #aaa;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#popup_contact .wrap .background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.85);
}
#popup_contact .wrap .set{
    background: #fff;
    z-index: 1;
}
#popup_contact .wrap .set{
    display: flex;
    flex-direction: column;
}
#popup_contact .wrap .set .head{
    padding: 40px 20px 40px 200px;
}
#popup_contact .wrap .set .head .ttl{
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}
#popup_contact .wrap .set .body{
    flex: 1;
    display: flex;
    flex-direction: row;
}
#popup_contact .wrap .set .body .nav{
    width: 200px;
    padding-right: 40px;
}
#popup_contact .wrap .set .body .nav ul.nav_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
#popup_contact .wrap .set .body .nav ul.nav_list li{
    margin: 5px 0 0;
}
#popup_contact .wrap .set .body .nav ul.nav_list li:first-child{
    margin-top: 0;
}
#popup_contact .wrap .set .body .nav ul.nav_list li span{
    padding: 10px 20px;
    display: block;
    font-size: 1.4rem;
    cursor: pointer;
    color: #666;
    position: relative;
}
#popup_contact .wrap .set .body .nav ul.nav_list li span:hover{
    background: #f5f5f5;
    color: #333;
}
#popup_contact .wrap .set .body .nav ul.nav_list li.active span{
    color: #1967d2;
    background: #dae7f8;
    cursor: inherit;
}
#popup_contact .wrap .set .body .nav ul.nav_list li.active span::before{
    content: "";
    width: 100%;
    height: 2px;
    background: #1967d2;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
#popup_contact .wrap .set .body .nav ul.nav_list li.active span{
    background: none;
}
#popup_contact .wrap .set .body .detail{
    width: 400px;
    min-height: 240px;
    padding: 0 40px 20px 0;
}
#popup_contact .wrap .set .body .detail ul.detail_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#popup_contact .wrap .set .body .detail ul.detail_list li{
    display: none;
}
#popup_contact .wrap .set .body .detail ul.detail_list li.active{
    display: block;
}
#popup_contact .wrap .set .body .detail ul.detail_list li p{
    font-size: 1.4rem;
    color: #666;
}
#popup_contact .wrap .set .body .detail ul.detail_list li .link{
    margin: 40px 0;
}
#popup_contact .wrap .set .body .detail ul.detail_list li .link a{
    max-width: 240px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: block;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1rem;
    color: #1a89ee;
}
#popup_contact .wrap .set .body .detail ul.detail_list li .link a:hover{
    background: #f8faff;
    border-color: #d2e3fc;
}
#popup_productList_search{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
#popup_productList_search .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
#popup_productList_search .wrap .close{
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}
#popup_productList_search .wrap .close span{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
#popup_productList_search .wrap .close span::before{
    content: "\e5cd";
    font-family: "material icons";
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    color: #aaa;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#popup_productList_search .wrap .background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.85);
}
#popup_productList_search .wrap .set{
    width: calc(100% - 20px);
    max-width: 400px;
    background: #fff;
    border-radius: 4px;
    z-index: 1;
}
#popup_productList_search .wrap .set .head{
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}
#popup_productList_search .wrap .set .head span{
    font-size: 1.4rem;
    color: #333;
}
#popup_productList_search .wrap .set .body .inner dl.search_list{
    padding: 20px;
}
#popup_productList_search .wrap .set .body .inner dl.search_list > *:first-child{
    margin-top: 0;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dt{
    margin: 20px 0 4px;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dt label{
    color: #666;
    font-size: 1.3rem;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dd input[type="text"],
#popup_productList_search .wrap .set .body .inner dl.search_list dd select{
    width: 100%;
    height: 40px;
    padding: 0 4px;
    font-size: 1.6rem;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline: none;
    background: #fafafa;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dd input[type="text"]:hover,
#popup_productList_search .wrap .set .body .inner dl.search_list dd input[type="text"]:focus,
#popup_productList_search .wrap .set .body .inner dl.search_list dd select:hover,
#popup_productList_search .wrap .set .body .inner dl.search_list dd select:focus{
    border-color: #999;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dd ul.price_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dd ul.price_list li{
    width: 40px;
    text-align: center;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dd ul.price_list li span{
    display: inline-block;
    line-height: 40px;
    color: #666;
    font-size: 1.4rem;
}
#popup_productList_search .wrap .set .body .inner dl.search_list dd ul.price_list li.input{
    width: calc(50% - 20px);
}
#popup_productList_search .wrap .set .body .inner .submit{
    margin: 20px 20px 40px;
}
#popup_productList_search .wrap .set .body .inner .submit a,
#popup_productList_search .wrap .set .body .inner .submit button{
    width: 100%;
    padding: 10px 0;
    display: block;
    background: #1a73e8;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
    text-indent: 0.5rem;
    letter-spacing: 0.5rem;
}
#popup_productList_search .wrap .set .body .inner .submit a:hover,
#popup_productList_search .wrap .set .body .inner .submit button:hover{
    background: #3081ea;
}
#popup_productList_search .wrap .set .body .inner .submit a:active,
#popup_productList_search .wrap .set .body .inner .submit button:active{
    background: #73aaf1;
}
#popup_share{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
#popup_share .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
#popup_share .wrap .close{
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}
#popup_share .wrap .close span{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
#popup_share .wrap .close span::before{
    content: "\e5cd";
    font-family: "material icons";
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    color: #aaa;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#popup_share .wrap .background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.85);
}
#popup_share .wrap .set{
    width: calc(100% - 20px);
    max-width: 560px;
    background: #fff;
    z-index: 1;
}
#popup_share .wrap .set .head{
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}
#popup_share .wrap .set .head .ttl span{
    color: #333;
    font-size: 1.8rem;
    font-weight: 300;
}
#popup_share .wrap .set .body{
    padding: 20px 0;
}
#popup_share .wrap .set .body .name{
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 20px 0;
    font-size: 1.6rem;
    color: #333;
    border-bottom: 1px solid #ddd;
}
#popup_share .wrap .set .body ul.sns_list{
    margin: 0;
    padding: 40px 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#popup_share .wrap .set .body ul.sns_list li{
    margin-left: 20px;
}
#popup_share .wrap .set .body ul.sns_list li:first-child{
    margin-left: 0;
}
#popup_share .wrap .set .body ul.sns_list li a img{
    width: 60px;
    -webkit-filter: grayscale(80%);
    -moz-filter: grayscale(80%);
    -ms-filter: grayscale(80%);
    -o-filter: grayscale(80%);
    filter: grayscale(80%);
    transition: all 0.2s;
}
#popup_share .wrap .set .body ul.sns_list li a img:hover{
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
    transition: all 0.5s;
}
#popup_share .wrap .set .body .url{
    padding: 0 20px 20px;
    display: flex;
    flex-direction: row;
    position: relative;
}
#popup_share .wrap .set .body .url input{
    flex: 1;
    height: 40px;
    padding: 0 10px;
    text-overflow: ellipsis;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    outline: none;
}
#popup_share .wrap .set .body .url input:hover,
#popup_share .wrap .set .body .url input:focus{
    border-color: #999;
}
#popup_share .wrap .set .body .url span#share_urlCopy{
    width: 40px;
    height: 40px;
    margin-left: 5px;
    display: block;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    color: #999;
}
#popup_share .wrap .set .body .url span#share_urlCopy::before{
    content: "\e14d";
    font-family: "material icons";
    font-size: 2rem;
    line-height: 40px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
#popup_share .wrap .set .body .url span#share_urlCopy:hover{
    background: #eee;
    color: #666;
}
#popup_share .wrap .set .body .url span.copied{
    position: absolute;
    bottom: 0;
    left: 20px;
    color: red;
    display: none;
}

#reviewWrite{
    padding: 100px 0;
    background: #fafafa;
}
#reviewWrite ul.write_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
#reviewWrite ul.write_list li{
    margin: 20px 0 0;
}
#reviewWrite ul.write_list li:first-child{
    margin-top: 0;
}
#reviewWrite ul.write_list li .inner .ttl label{
    font-size: 1.4rem;
    color: #666;
}
#reviewWrite ul.write_list li .inner .input input[type="text"]{
    width: 100%;
    padding: 10px 10px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 1.6rem;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
#reviewWrite ul.write_list li .inner .input input[type="text"]::placeholder{
    color: #bbb;
}
#reviewWrite ul.write_list li .inner .input input[type="text"]:hover{
    border-color: #aaa;
}
#reviewWrite ul.write_list li .inner .input input[type="text"]:focus{
    border-color: #666;
}
#reviewWrite ul.write_list li .inner .input textarea{
    width: 100%;
    height: 300px;
    padding: 10px 10px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 1.6rem;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
#reviewWrite ul.write_list li .inner .input textarea::placeholder{
    color: #bbb;
}
#reviewWrite ul.write_list li .inner .input textarea:hover{
    border-color: #aaa;
}
#reviewWrite ul.write_list li .inner .input textarea:focus{
    border-color: #666;
}
#reviewWrite ul.write_list li .inner .input .reviewRate{
    display: flex;
    flex-direction: row;
}
#reviewWrite ul.write_list li .inner .input .reviewRate .reviewRateStar{
    width: 34px;
    height: 34px;
    display: block;
    font-size: 0;
    cursor: pointer;
}
#reviewWrite ul.write_list li .inner .input .reviewRate .reviewRateStar::before{
    content: "\e838";
    font-family: "material icons";
    font-size: 3rem;
    color: #fabb05;
    text-align: center;
    line-height: 34px;
    width: 34px;
    height: 34px;
    display: block;
}
#reviewWrite ul.write_list li .inner .input .reviewRate .reviewRateStar.starOff::before{
    content: "\f06f";
    color: #ccc;
}
#reviewWrite ul.write_list li .inner .input .reviewRate .reviewRateStar:hover{
    opacity: 0.8;
}
#reviewWrite ul.write_list li .inner .input .reviewRate .reviewRateStar.starOff:hover::before{
    color: #fabb05;
    opacity: 1;
}
#reviewWrite ul.write_list li.product{
    margin: 0 0 40px;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #eee;
}
#reviewWrite ul.write_list li.product .inner{
    display: flex;
    flex-direction: row;
}
#reviewWrite ul.write_list li.product .inner .img a img{
    max-width: 80px;
}
#reviewWrite ul.write_list li.product .inner .img a:hover img{
    opacity: 0.8;
}
#reviewWrite ul.write_list li.product .inner .detail{
    flex: 1;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#reviewWrite ul.write_list li.product .inner .detail .name a{
    display: inline-block;
    font-size: 1.4rem;
    text-decoration: none;
    color: #333;
}
#reviewWrite ul.write_list li.product .inner .detail .name a:hover{
    text-decoration: underline;
}
#reviewWrite ul.write_list li.submit a{
    height: 46px;
    padding: 0 24px;
    line-height: 46px;
    text-decoration: none;
    font-size: 1.4rem;
    color: #fff;
    display: inline-block;
    background: #1a73e8;
    border-radius: 3px;
}
#reviewWrite ul.write_list li.submit a:hover{
    background: #1b66ca;
}

body.calendar{
    background: none;
}
body.calendar #wrap{
    max-width: 320px;
    margin: 0 auto;
    padding: 0;
}
body.calendar .table table{
    width: 100%;
    border-collapse: collapse;
}
body.calendar .table table th{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #666;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
}
body.calendar .table table td{
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    vertical-align: middle;
}
body.calendar .table table td.today span{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    justify-content: center;
    color: #fff;
}
body.calendar .table table td.today span::before{
    content: "";
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    background: #57886C;
}
body.calendar .table table td.saturday,
body.calendar .table table td.sunday{
    color: red;
}
body.calendar .calendar_set{
    position: relative;
}
body.calendar .calendar_set ul.calendar_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
body.calendar .calendar_set ul.calendar_list > li{
    display: none;
}
body.calendar .calendar_set ul.calendar_list li.active{
    display: block;
}
body.calendar .calendar_set ul.calendar_list li .detail{
    margin: 10px 0 0;
    padding: 4px 10px;
    border: 1px solid #eee;
}
body.calendar .calendar_set ul.calendar_list li .detail ul.detail_list{
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}
body.calendar .calendar_set ul.calendar_list li .detail ul.detail_list li{
    margin-left: 20px;
    font-size: 1.2rem;
    color: #333;
    float: left;
}
body.calendar .calendar_set ul.calendar_list li .detail ul.detail_list li:first-child{
    margin-left: 0;
}
body.calendar .calendar_set ul.calendar_list li .detail ul.detail_list li span{
    margin-right: 4px;
    font-size: 1.4rem;
}
body.calendar .calendar_set .pager{
    padding: 10px 0;
    text-align: center;
}
body.calendar .calendar_set .pager .select{
    width: 100px;
    margin: 0 auto;
    position: relative;
}
body.calendar .calendar_set .pager .select::after{
    content: "\e5c5";
    font-family: "material icons";
    font-size: 1.4rem;
    text-align: center;
    line-height: 20px;
    color: #999;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
}
body.calendar .calendar_set .pager .select:hover::after{
    color: #333;
}
body.calendar .calendar_set .pager .select select{
    width: 100%;
    padding: 4px 20px;
    font-size: 1.6rem;
    border: 1px solid #fff;
    outline: none;
    appearance: none;
    text-align: center;
    background: none;
}
body.calendar .calendar_set .pager .select select:hover{
    border: 1px solid #eee;
}

#popup_calendar{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
#popup_calendar .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
#popup_calendar .wrap .close{
    width: 40px;
    height: 40px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}
#popup_calendar .wrap .close span{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    cursor: pointer;
}
#popup_calendar .wrap .close span::before{
    content: "\e5cd";
    font-family: "material icons";
    font-size: 3rem;
    line-height: 40px;
    text-align: center;
    color: #aaa;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#popup_calendar .wrap .background{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.85);
}
#popup_calendar .wrap .set{
    width: 100%;
    max-width: 360px;
    background: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
#popup_calendar .wrap .set iframe{
    width: 100%;
    height: 400px;
}
#popup_calendar .wrap .set .ttl{
    padding: 10px;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}
#popup_calendar .wrap .set .ttl span{
    font-size: 1.4rem;
    color: #333;
}

#brand .topimg_wrap{
    position: relative;
}
#brand .topimg_wrap .set{
    width: 50%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
#brand .topimg_wrap .set h1 span{
    display: inline-block;
    transform: scale(0.95,1.1);
    font-size: 4rem;
    text-indent: 1rem;
    letter-spacing: 1rem;
}
#brand .topimg_wrap ul.slider_topimg{
    margin: 0;
    padding: 0;
    list-style: none;
}
#brand .brand_wrap .brand_list{
    padding: 100px 0;
    background: #1a1a1a;
}
#brand .brand_wrap .brand_list ul{
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#brand .brand_wrap .brand_list ul li{
    flex: 1;
}
#brand .brand_wrap .brand_list ul li .inner a{
    display: block;
    text-decoration: none;
    text-align: center;
    color: #fff;
    transition: opacity 0.2s;
}
#brand .brand_wrap .brand_list ul li .inner a:hover{
    opacity: 0.6;
    animation: 0.5s linear brandSelect;
}
#brand .brand_wrap .brand_list ul li .inner a img{
    max-width: 140px;
    margin: 0 auto;
}
#brand .brand_wrap .brand_list ul li .inner a p.caption{
    margin: 20px 0 0;
    text-align: center;
    font-family: serif;
    font-size: 1.2rem;
}

#brand .brand_wrap .name{
    padding: 120px 0;
}
#brand .brand_wrap .name h2 img{
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
}
#brand .brand_wrap .name p.caption{
    margin: 20px 0 0;
    text-align: center;
    font-size: 1.4rem;
    font-family: serif;
}
#brand .brand_wrap .set{
    display: flex;
    flex-direction: row;
}
#brand .brand_wrap .main{
    width: 30%;
}
#brand .brand_wrap .detail{
    flex: 1;
    padding: 0 120px;
    box-sizing: border-box;
}
#brand .brand_wrap .detail .inner{
    max-width: 640px;
    margin: 0 auto;
}
#brand .brand_wrap .detail h2{
    margin: 0 0 100px;
    padding: 100px 0 0;
}
#brand .brand_wrap .detail h2 img{
    max-width: 240px;
    margin: 0 auto;
}
#brand .brand_wrap .detail h2 + p.caption{
    margin: -80px 0 100px;
    text-align: center;
}
#brand .brand_wrap .detail h3{
    margin: 4em 0 2em;
    font-size: 2.4rem;
    text-align: center;
}
#brand .brand_wrap .detail h3 span{
    display: inline-block;
    letter-spacing: 0.5rem;
    text-indent: 0.5rem;
    transform: scale(0.95,1.1);
}
#brand .brand_wrap .detail p{
    margin: 1.5em 0;
    font-size: 1.4rem;
    line-height: 1.8;
}


/*      approval
------------------------------------------- */
#approval ul.approval_list{
    margin: 0;
    padding: 0;
    list-style: none;
}
#approval ul.approval_list li{
    padding: 40px 0;
    display: block;
    border-top: 1px solid #333;
}
#approval ul.approval_list li:first-child{
    border-top: none;
}
#approval ul.approval_list li .inner{
    display: flex;
    flex-direction: row;
    gap: 40px;
}
#approval ul.approval_list li .inner .img{
    width: 300px;
    max-width: 30%;
}
#approval ul.approval_list li .inner .txt{
    flex: 1;
}
#approval ul.approval_list li .inner .txt .data .cat{
    margin: 0 0 10px;
}
#approval ul.approval_list li .inner .txt .data .cat span{
    padding: 4px 10px;
    display: inline-block;
    background: #333;
    font-size: 1.4rem;
}
#approval ul.approval_list li .inner .txt .data .name{
    font-size: 1.6rem;
}
#approval ul.approval_list li .inner .txt .data .url{
    margin: 10px 0 0;
}
#approval ul.approval_list li .inner .txt .data .url a{
    color: #666;
    font-size: 1.4rem;
}
#approval ul.approval_list li .inner .txt .data .url a:hover{
    color: #0066C0;
}
#approval ul.approval_list li .inner .txt .message p{
    margin: 1.5em 0;
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: justify;
}

/*      keyframes
------------------------------------------- */

@keyframes link_arrow{
    0%{
        right: 10px;
    }
    100%{
        right: 0;
    }
}
@keyframes brandSelect{
    0%{ margin: 0; padding: 0;}
    50%{ margin: -4px 0 -8px; padding: 8px 0 0;}
    100%{ margin: 0; padding: 0;}
}
@media screen and (max-width:1025px) {
        #factory .wrap .partition{
        height: 40vh;
        background-position: center;
        background-size: cover;
        background-attachment: inherit;
    }
}

@media screen and (max-width:1199.98px) {
    #staff .staff_wrap .img{
        width: 60vw;
    }
    #staff .staff_wrap .img .inner{
        position: absolute;
        left: -25%;
    }
    #staff .staff_wrap .img .inner img{
        height: 100%;
        width: auto;
        max-width: none;
        min-height: 800px;
    }
    #staff .staff_wrap .container_l{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    #staff .staff_wrap .staff_set{
        height: 100%;
        max-height: 100vh;
        min-height: 600px;
        overflow-y: auto;
    }
    #staff .staff_wrap .staff_set .txt{
        min-height: 600px;
        height: 100%;
    }
    #staff .staff_wrap .staff_set .txt .name small{
        margin-left: 40px;
    }
    #staff .staff_wrap .staff_set .txt .comment{
        margin: 40px 0;
    }
    #cart .cart_wrap .buy_set{
        width: 240px;
    }
    #cart .cart_wrap .buy_set .buy_inner .buy{
        padding: 30px 20px;
    }
    #cart .cart_wrap .buy_set .buy_inner .guide{
        padding: 30px 20px;
    }
    #cart .cart_wrap .buy_set .total{
        font-size: 1.2rem;
    }
    #cart .cart_wrap .buy_set .total strong{
        display: inline-block;
    }
    #cart .cart_wrap .buy_set .gotobuy{
        margin: 20px 0 0;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner{
        padding: 10px 10px;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .img{
        max-width: 160px;
    }

}
@media screen and (min-width:768px) {
    .onlySP{ display: none;}
}
@media screen and (max-width:767.98px) {
    .onlyPC{ display: none;}
    #wrap{
        padding-top: 60px;
    }
    header{
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        background: #111;
        z-index: 100;
    }
    header .wrap{
        width: 100%;
        height: 100%;
        padding: 0;
    }
    header .wrap .logo{
        width: 160px;
        height: 100%;
        margin: 0;
        position: relative;
    }
    header .wrap .nav{
        width: 100%;
        display: none;
        height: calc(100vh - 60px);
        background: #222;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1;
    }
    header .wrap .nav nav{
        height: 100%;
        overflow-y: auto;
    }
    header .wrap .nav nav ul{
        width: 100%;
        height: auto;
        margin: 0 auto;
        padding: 0;
        flex-direction: column;
        justify-content: flex-start;
    }
    header .wrap .nav nav ul > li{
        height: auto;
        border-bottom: 1px solid #444;
    }
    header .wrap .nav nav ul > li:first-child{
        border-top: 1px solid #444;
    }
    header .wrap .nav nav ul > li a{
        width: 100%;
        height: 100%;
        padding: 16px 20px 16px 10px;
        position: relative;
    }
    header .wrap .nav nav ul > li a::after{
        content: "\e5cc";
        font-family: "Material Icons";
        font-weight: normal;
        font-size: 1.6rem;
        color: #666;
        text-align: center;
        line-height: 20px;
        width: 20px;
        height: 20px;
        position: absolute;
        top: calc(50% - 10px);
        right: 0;
    }
    header .wrap .nav nav ul > li a:hover{
        background: none;
        color: #eee;
    }
    header .wrap .nav nav ul > li a:hover::after{
        animation: link_arrow 0.2s ease;
    }
    header .wrap .nav nav ul > li.sub > a::after{
        content: "\e145";
        font-family: "Material Icons";
        font-weight: normal;
        font-size: 1.6rem;
        color: #666;
        text-align: center;
        line-height: 20px;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        position: absolute;
        top: 50%;
        right: 0;
        left: auto;
        background: none;
    }
    header .wrap .nav nav ul > li.sub.active > a::after{
        content: "\e15b";
    }
    header .wrap .nav nav ul > li.sub.active > a,
    header .wrap .nav nav ul > li.sub > a:hover{
        background: none;
    }
    header .wrap .nav nav ul > li.sub .sub_nav,
    header .wrap .nav nav ul > li.sub .sub_nav.brand{
        width: 100%;
        max-width: none;
        position: relative;
        left: auto;
        top: auto;
        background: none;
        display: none;
    }

    header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list{
        width: 100%;
        padding-left: 20px;
    }
    header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list li{}
    header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li:last-child,
    header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list li:last-child{
        border-bottom: none ;
    }
    header .wrap .nav nav ul > li.sub .sub_nav .sub_wrap ul.sub_list li a{
        padding: 16px 20px 16px 10px;
        display: block;
        text-align: left;
        position: relative;
    }
    header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list{
        padding-left: 20px;
    }

    header .wrap .nav nav ul > li.sub .sub_nav ul.sub_list li,
    header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li {
        border-bottom: 1px solid #444;
    }
    header .wrap .nav nav ul > li.sub .sub_nav.brand ul.sub_list li a{
        padding: 16px;
    }
    header .wrap .nav nav ul > li.icon ul{
        width: 100%;
    }
    header .wrap .nav nav ul > li.icon ul li{
        flex: 1;
        border: none;
        border-bottom: 1px solid #444;
    }
    header .wrap .nav nav ul > li.icon ul li:last-child{
        border-bottom: none;
    }
    header .wrap .nav nav ul > li.user > a,
    header .wrap .nav nav ul > li.cart > a{
        width: 100%;
        text-indent: 0px;
        padding-left: 40px;
    }
    header .wrap .nav nav ul > li.user > a::before,
    header .wrap .nav nav ul > li.cart > a::before{
        margin-left: 0;
        left: 0;
    }
    header .wrap .nav nav ul > li.user .user_wrap{
        width: 100%;
        padding-left: 20px;
        background: none;
        box-shadow: none;
        position: relative;
        top: 0;
    }
    header .wrap .nav nav ul > li.user .user_wrap .user_set ul li{
        border-top: 1px solid #333;
    }
    header .wrap .nav nav ul > li.user > a::after{
        content: "\e145";
        font-family: "Material Icons";
        font-weight: normal;
        font-size: 1.6rem;
        color: #666;
        text-align: center;
        line-height: 20px;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        position: absolute;
        top: 50%;
        right: 0;
        left: auto;
        background: none;
    }
    header .wrap .nav nav ul > li.user.active > a::after{
        content: "\e15b";
    }
    header .wrap .nav nav ul > li.user.active > a {
        background: none;
        color: #eee;
    }

    header .btn_hNav{
        display: block;
    }
    footer #f_content{
        padding: 40px 0 40px;
    }
    footer #f_content .wrap .inner{
        width: calc(100% - 40px);
        flex-direction: column;
        justify-content: flex-start;
    }
    footer #f_content .wrap .inner .nav{
        flex-direction: column;
    }
    footer #f_content .wrap .inner .nav .set{
        max-width: none;
    }
    footer #f_content .wrap .inner .nav .set + .set{
        margin-left: 0;
    }
    footer #f_content .wrap .inner .nav .set ul{
        margin-top: -1px;
    }
    footer #f_content .wrap .inner .nav .set ul li{
        border-bottom: 1px solid #333;
    }
    footer #f_content .wrap .inner .nav .set ul li:first-child{
        border-top: 1px solid #333;
    }
    footer #f_content .wrap .inner .nav .set ul li a{
        padding: 16px 20px 16px 0;
        color: #eee;
        position: relative;
    }
    footer #f_content .wrap .inner .nav .set ul li a::before{
        display: none;
    }
    footer #f_content .wrap .inner .nav .set ul li a::after{
        content: "\e5cc";
        font-family: "Material Icons";
        font-weight: normal;
        font-size: 1.6rem;
        color: #666;
        text-align: center;
        line-height: 20px;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        position: absolute;
        top: 50%;
        right: 0;
    }
    footer #f_content .wrap .inner .nav .set ul li a:hover::after{
        animation: link_arrow 0.2s ease;
    }
    footer #f_content .wrap .inner .nav .set ul.sub{
        margin: 20px 0 0;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
    }
    footer #f_content .wrap .inner .nav .set ul.sub li{
        width: auto;
        border: none;
    }
    footer #f_content .wrap .inner .nav .set ul.sub li a{
        padding: 5px 5px;
        color: #eee;
        position: relative;
        font-size: 1.2rem;
        text-align: center;
    }
    footer #f_content .wrap .inner .nav .set ul.sub li a::after{
        display: none;
    }
    
    footer #f_content .wrap .inner .nav .set ul.social{
        margin: 20px auto 0;
        justify-content: center;
    }
    footer #f_content .wrap .inner .others{
        max-width: none;
        justify-content: flex-start;
    }
    footer #f_content .wrap .inner .others .copy .img{
        margin: 60px 0;
        text-align: center;
    }
    footer #f_content .wrap .inner .others .copy .txt p{
        text-align: center;
    }
    footer #f_content .wrap .inner .others .copy .img a img{
        width: calc(100% - 80px);
        max-width: 280px;
        margin: 0 auto;
    }
    
    h2.ttl span{
        font-size: 2.4rem;
        letter-spacing: 0.2rem;
        text-indent: 0.2rem;
    }
    
    #common_ttl .wrap .set h1{
        font-weight: 500;
    }
    #common_ttl .wrap .set h1 span{
        font-size: 1.6rem;
        letter-spacing: 0.1rem;
        text-indent: 0.1rem;
    }
    #ordercontract{
        padding: 0;
    }
    #ordercontract .wrap .set dl{
        width: calc(100% + 20px);
        margin-left: -10px;
        display: flex;
        flex-direction: column;
    }
    #ordercontract .wrap .set dl dt,
    #ordercontract .wrap .set dl dd{
        width: 100%;
        font-size: 1.2rem;
    }
    #ordercontract .wrap .set dl dt{
        padding: 10px 10px;
        font-weight: 600;
    }
    #ordercontract .wrap .set dl dd{
        padding: 0 10px 10px;
        border: none;
   }
    #policy{
        padding: 20px 0;
    }
    #policy .wrap .set p,
    #policy .wrap .set li{
        font-size: 1.2rem;
    }
    #guide{
        padding: 20px 0;
    }
    #guide .wrap .set p,
    #guide .wrap .set li{
        font-size: 1.2rem;
    }
    #company_ttl{
        margin: 0 0 40px;
    }
    #company_ttl .wrap .set .img{
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    #company_ttl .wrap .set h1{
        margin: 40px 0 0;
    }
    #company_ttl .wrap .set h1 span{
        font-size: 2.4rem;
        letter-spacing: 0.1rem;
        text-indent: 0.1rem;
    }
    #company{
        padding: 40px 0 0;
    }
    #company dl.company_list dt,
    #company dl.company_list dd{
        padding: 16px 0;
        font-size: 1.2rem;
    }
    #company dl.company_list dt{
        width: 120px;
    }
    #company dl.company_list dd{
        width: calc(100% - 120px);
    }
    #company .map_wrap{
        margin-top: 10px;
    }
    #productList{
        padding: 20px 0;
    }
    #productList .wrap .set{
        width: calc(100% - 10px);
    }
    #productList ul.product_list li{
        width: calc(50% - 10px);
        margin: 10px 5px 0;
    }
    #productList ul.product_list li .inner .txt{
        margin: 5px 0 0;
    }
    #productList .pagination{
        margin: 60px auto;
    }
    #productList .pagination ul{
        margin: 20px 0 0;
    }
    #productList .pagination ul li{
        font-size: 1.6rem;
    }
    #productList .productnav_wrap{
        margin: -20px auto 0;
        padding: 0;
    }
    #productList .productnav_set{
        height: 50px;
        position: relative;
        overflow-x: auto;
    }
    #productList .productnav_set ul.productnav_list{
        width: auto;
        padding: 10px;
        justify-content: flex-start;
        position: absolute;
        top: 0;
        left: 0;
    }
    #productList .productnav_set ul.productnav_list li.search span{
        white-space: nowrap;
    }
    #productList .searchresult_wrap{
        margin: 10px 0 0;
    }
    #productList .searchresult_set{
        padding: 10px;
    }
    #product .wrap{
        min-height: auto;
        flex-direction: column;
    }
    #product .wrap .img .img_set{
        width: 100%;
        height: auto;
        min-height: 90vw;
        padding: 20px 0;
    }
    #product .wrap .img .img_set .slider_wrap{
        padding: 0 20px;
    }
    #product .wrap .img .img_set .slider_wrap ul.slider_thumb{
        width: 100%;
        max-width: calc(100% - 40px);
        height: auto;
        margin: 0 auto;
        padding: 20px 20px 0;
        position: static;
        left: 0;
        bottom: 0;
        transform: translate(0,0);
    }
    #product .wrap .img .img_set .slider_wrap ul.slider_thumb li{
        width: auto;
    }
    #product .wrap .product{
        width: 100%;
        max-width: none;
        padding: 0 20px;
    }
    #product .wrap .product .product_set{
        padding: 30px 0 0;
        position: relative;
    }
    #product .wrap .product .name h1{
        font-size: 2rem;
    }
    #product .wrap .product .price p{
        font-size: 1.4rem;
    }
    #product .wrap .product .description{
        margin: 30px 0;
    }
    #product .wrap .product .buy .enter{
        margin: 30px 0 0;
    }
    #product .wrap .product .buy .enter a{
        font-size: 1.6rem;
    }
    #product .wrap .product .detail{
        margin-top: 30px;
        padding-top: 30px;
    }
    #product .wrap .product .detail table.status th,
    #product .wrap .product .detail table.status td{
        padding: 8px 8px;
    }
    #product .wrap .product .detail p{
        margin: 20px 0 0;
    }
    #factory_ttl .wrap .set .ttl h1 span{
        padding: 0 10px;
        font-size: 2.4rem;
    }
    #factory{
        padding: 0;
    }
    #factory .wrap .set{
        margin: 40px auto;
    }
    #factory .wrap .set .img{
        margin: 20px 0 0;
        display: flex;
        flex-direction: column;
    }
    #factory .wrap .set .img img{
        width: 100%;
        margin: 10px 0 0;
    }
    #factory .wrap .set .ttl h2{
        margin: 0 0 40px;
        line-height: 1.5;
    }
    #factory .wrap .set .ttl h2 span{
        font-size: 2.4rem;
    }
    #factory .wrap .set .txt h3{
        margin: 0 0 20px;
        padding: 0;
        font-size: 1.8rem;
    }
    #factory .wrap .set .txt .link{
        margin: 20px 0 0;
    }
    #factory .wrap .set .txt .link a{
        padding: 12px 40px;
    }
    #factory .wrap .set .txt .link a::before{
        width: 30px;
    }
    #factory .wrap .partition{
        height: 40vh;
        background-position: center;
        background-size: cover;
        background-attachment: inherit;
    }

    #staff .staff_wrap{
        min-height: inherit;
        border-bottom: none;
        display: flex;
        flex-direction: column;
    }
    #staff .staff_wrap .img{
        width: 100%;
        height: 100vw;
        position: relative;
    }
    #staff .staff_wrap .img .inner{
        position: relative;
        left: 0;
    }
    #staff .staff_wrap .img .inner img{
        height: auto;
        width: 120%;
        min-height: inherit;
    }
    #staff .staff_wrap .container_l{
        width: calc(100% - 40px);
    }
    #staff .staff_wrap .staff_set{
        min-height: inherit;
    }
    #staff .staff_wrap .staff_set .txt{
        width: 100%;
        min-height: inherit;
        margin-left: 0;
        padding: 0;
        float: none;
        position: relative;
        display:-webkit-box;
        display: -webkit-flex;
        display:-ms-flexbox;
        display: flex;
        -webkit-flex-wrap:wrap;
        -ms-flex-wrap:wrap;
        flex-wrap:wrap;
    }
    #staff .staff_wrap .staff_set .txt::before{
        display: none;
    }
    #staff .staff_wrap .staff_set .txt .name{
        width: 100%;
        padding: 30px 0 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        -webkit-box-ordinal-group:1;
        -ms-flex-order:1;
        -webkit-order:1;
        order:1;
    }
    #staff .staff_wrap .staff_set .txt .name span{
        font-size: 2rem;
    }
    #staff .staff_wrap .staff_set .txt .name small{
        margin-left: 0;
        font-size: 1.2rem;
    }
    #staff .staff_wrap .staff_set .txt .comment{
        margin: 0;
        -webkit-box-ordinal-group:3;
        -ms-flex-order:3;
        -webkit-order:3;
        order:3;
    }
    #staff .staff_wrap .staff_set .txt .comment p{
        text-align: justify;
    }
    #staff .staff_wrap .staff_set .txt .status{
        width: 100%;
        margin: 20px 0 0;
        -webkit-box-ordinal-group:2;
        -ms-flex-order:2;
        -webkit-order:2;
        order:2;
    }
    #staff .ceo_wrap{
        margin: 10px 0;
    }
    #staff .ceo_wrap .ceo_set .img .inner img{
        width: 100%;
        height: 100vw;
        object-fit: cover;
        max-width: none;
    }
    #staff .ceo_wrap .ceo_set .txt{
        height: 100%;
        padding: 0 20px 20px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
    #staff .ceo_wrap .ceo_set .txt::before{
        display: none;
    }
    #staff .ceo_wrap .ceo_set .txt .name{
        width: 100%;
        padding: 30px 0 10px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        order: 1;
    }
    #staff .ceo_wrap .ceo_set .txt .name span{
        font-size: 2rem;
    }
    #staff .ceo_wrap .ceo_set .txt .name small{
        margin-left: 0;
        font-size: 1.2rem;
    }
    #staff .ceo_wrap .ceo_set .txt .comment{
        margin: 0;
        order: 3;
    }
    #staff .ceo_wrap .ceo_set .txt .comment p{
        text-align: justify;
    }
    #staff .ceo_wrap .ceo_set .txt .status{
        width: 100%;
        margin: 20px 0 0;
        order: 2;
    }
    #story .topimg_wrap{
        background-position: right -10vw center;
        background-size: auto 120%;
    }
    #story .topimg_wrap .topimg_set{
        height: 200px;
    }
    #story .topimg_wrap .topimg_set h1{
        padding: 0 20px;
    }
    #story .topimg_wrap .topimg_set h1 span{
        font-size: 3rem;
        letter-spacing: 0.4rem;
    }
    #story .greeting_wrap{
        margin: 80px 0;
    }
    #story .greeting_wrap .greeting_set p{
        margin: 30px 0;
        text-align: left;
    }
    #story .partition{
        display: none;
    }
    #story .ailecroire_wrap{
        padding: 0 0 40px;
   }
    #story .ailecroire_wrap .ailecroire_slider{
        width: calc(100% + 20px);
        margin-left: -10px;
    }
    #story .ailecroire_wrap .ailecroire_set{
        margin: 80px 0 0;
    }
    #story .ailecroire_wrap .ailecroire_set h2 img{
        max-width: 200px;
    }
    #cart .cart_wrap{
        flex-direction: column-reverse;
        position: relative;
    }
    #cart .cart_wrap .buy_set{
        width: 100%;
    }
    #cart .cart_wrap .buy_set .total{
        text-align: center;
    }
    #cart .cart_wrap .buy_set .total strong{
        color: #B12704;
        font-size: 2rem;
    }
    #cart .cart_wrap .buy_set .gotobuy a{
        max-width: 300px;
        margin: 0 auto;
        font-size: 1.6rem;
        box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }
    #cart .cart_wrap .buy_set .buy_inner .guide{
        padding: 0;
    }
    #cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li{
        margin: 0;
        border-top: 1px solid #eee;
    }
    #cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li:last-child{
        border-bottom: 1px solid #eee;
    }
    #cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li a{
        display: block;
        padding: 10px 30px 10px 16px;
        position: relative;
    }
    #cart .cart_wrap .buy_set .buy_inner .guide ul.guide_list li a::after{
        content: "\e5cc";
        font-family: "material icons";
        font-size: 1.6rem;
        text-align: center;
        line-height: 20px;
        width: 20px;
        height: 20px;
        margin-top: -10px;
        display: block;
        position: absolute;
        right: 5px;
        top: 50%;
    }
    #cart .cart_wrap .cart_set{
        min-height: inherit;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner{
        max-width: 560px;
        margin: 0 auto;
        padding: 10px 10px;
        position: relative;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .img{
        width: 100px;
        max-width: none;
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 1;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail{
        padding: 0 0 0 120px;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .name a{
        font-size: 1.6rem;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .option{
        font-size: 1.2rem;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .num{
        font-size: 1.2rem;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .num input[type="number"]{
        height: 30px;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .num a{
        height: 30px;
        line-height: 30px;
        border-color: #ddd;
        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        letter-spacing: 0.2rem;
        text-indent: 0.2rem;
        color: #333;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .num a::before{
        font-size: 1.4rem;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .delete{
        right: auto;
        left: 10px;
    }
    #cart .cart_wrap .cart_set ul.item_list li .inner .detail .delete a{
        border: 1px solid #ddd;
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    }
    #cart .cart_wrap .cart_set .shopping .link a{
        width: 200px;
        margin: 0 auto;
        padding: 10px 0;
        text-align: center;
        display: block;
        border-color: #ddd;
    }
    #oem .greeting_wrap .greeting_set h2{
        font-size: 2rem;
    }
    #oem .oem_wrap{
        margin: 0 0 10px;
    }
    #oem .oem_wrap .oem_set ul.policy_list{
        margin: 0 0 40px;
    }
    #oem .oem_wrap .oem_set ul.policy_list li{
        padding: 30px 0;
    }
    #oem .oem_wrap .oem_set ul.policy_list li .inner .ttl span{
        font-size: 1.6rem;
    }
    #oem .oem_wrap .oem_set ol.flow_list{
        margin: 60px 0 0;
    }
    #oem .oem_wrap .oem_set ol.flow_list li{
        margin-left: 30px;
        padding-left: 40px;
        padding-bottom: 30px;
    }
    #oem .oem_wrap .oem_set ol.flow_list li .inner .ttl span{
        font-size: 1.6rem;
    }
    #oem .oem_wrap .oem_set .price_wrap{
        overflow-x: auto;
    }
    #oem .oem_wrap .oem_set table.price{
        margin: 20px 0 0;
    }
    #oem .oem_wrap .oem_set table.price tbody tr th,
    #oem .oem_wrap .oem_set table.price tbody tr td{
        font-size: 1.2rem;
        white-space: nowrap;
    }
    #oem .faq_wrap{
        padding: 40px 0;
    }
    #oem .faq_wrap .faq_set dl.faq_list{
        margin-top: 40px;
    }
    #oem .faq_wrap .faq_set dl.faq_list dt{
        padding: 15px 20px 15px 30px;
    }
    #oem .faq_wrap .faq_set dl.faq_list dt::before{
        width: 30px;
    }
    #reviewWrite{
        padding: 20px 0 100px;
    }
    #reviewWrite ul.write_list li.product{
        margin: 0 0;
    }
    #reviewWrite ul.write_list li.submit{
        text-align: center;
    }
    #popup_review{
        z-index: 100;
    }
    #popup_review .wrap{
        justify-content: flex-end;
    }
    #popup_review .wrap .set .link{
        right: 10px;
        top: 10px;
    }
    #popup_review .wrap .set .review_set{
        padding: 0 10px 20px 20px;
    }
    #popup_review .wrap .set .review_set .ttl{
        width: calc(100% + 20px);
        margin-left: -20px;
        padding: 20px 20px;
    }
    #popup_review .wrap .set .review_set .ttl .name{
        padding-right: 80px;
    }
    #popup_review .wrap .set .review_set .noreviews{
        margin: 20px;
    }
    #popup_review .wrap .set .review_set .list_set{
        height: auto;
        max-height: 65vh;
    }
    #popup_contact{
        z-index: 100;
    }
    #popup_contact .wrap .set{
        width: calc(100% - 20px);
    }
    #popup_contact .wrap .set .head{
        padding: 20px 20px;
        border-bottom: 1px solid #eee;
    }
    #popup_contact .wrap .set .body{
        flex-direction: column;
    }
    #popup_contact .wrap .set .body .nav{
        width: 100%;
        height: 50px;
        padding: 20px 0 0;
        overflow: auto;
        position: relative;
    }
    #popup_contact .wrap .set .body .nav ul.nav_list{
        padding: 0 20px;
        flex-direction: row;
        position: absolute;
    }
    #popup_contact .wrap .set .body .nav ul.nav_list li{
        margin: 0 0 0 10px;
    }
    #popup_contact .wrap .set .body .nav ul.nav_list li:first-child{
        margin-left: 0;
    }
    #popup_contact .wrap .set .body .nav ul.nav_list li span{
        height: 30px;
        padding: 0 20px;
        background: #f5f5f5;
        border-radius: 15px;
        line-height: 30px;
        white-space: nowrap;
    }
    #popup_contact .wrap .set .body .nav ul.nav_list li.active span{
        color: #1967d2;
        background: #dae7f8;
        font-weight: 600;
    }
    #popup_contact .wrap .set .body .nav ul.nav_list li.active span::before{
        display: none;
    }
    #popup_contact .wrap .set .body .detail{
        width: 100%;
        min-height: inherit;
        padding: 20px;
    }

    /*      approval
    ------------------------------------------- */
    #approval ul.approval_list{
        max-width: 400px;
        margin: 0 auto;
    }
    #approval ul.approval_list li{
        padding: 30px 0 0;
        border: none;
    }
    #approval ul.approval_list li .inner{
        flex-direction: column;
        gap: 20px;
    }
    #approval ul.approval_list li .inner .img{
        width: 100%;
        max-width: none;
    }
    #approval ul.approval_list li .inner .txt .data .cat{
        margin: 0 0 4px;
    }
    #approval ul.approval_list li .inner .txt .data .cat span{
        padding: 2px 10px;
    }
    #approval ul.approval_list li .inner .txt .data .url{
        margin: 4px 0 0;
    }

}