@charset "UTF-8";
/* CSS Document */
/*----------------------------------------
all
---------------------------------------- */
/* フォント周り */
/*Light*/
@font-face {
    font-family: ZenKakuGothicNew;
    src:url('../fonts/ZenKakuGothicNew-Light.woff')format('woff');
    src:url('../fonts/ZenKakuGothicNew-Light.ttf')format('truetype');
    font-weight: 300;
    font-style: normal;
}
/*Regular*/
@font-face {
    font-family: ZenKakuGothicNew;
    src:url('../fonts/ZenKakuGothicNew-Regular.woff')format('woff');
    src:url('../fonts/ZenKakuGothicNew-Regular.ttf')format('truetype');
    font-weight: 400;
    font-style: normal;
}
/*Medium*/
@font-face {
    font-family: ZenKakuGothicNew;
    src:url('../fonts/ZenKakuGothicNew-Medium.woff')format('woff');
    src:url('../fonts/ZenKakuGothicNew-Medium.ttf')format('truetype');
    font-weight: 500;
    font-style: normal;
}
/*Bold*/
@font-face {
    font-family: ZenKakuGothicNew;
    src:url('../fonts/ZenKakuGothicNew-Bold.woff')format('woff');
    src:url('../fonts/ZenKakuGothicNew-Bold.ttf')format('truetype');
    font-weight: 700;
    font-style: normal;
}
/*Black*/
@font-face {
    font-family: ZenKakuGothicNew;
    src:url('../fonts/ZenKakuGothicNew-Black.woff')format('woff');
    src:url('../fonts/ZenKakuGothicNew-Black.ttf')format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: ZenKakuGothicNew;
    font-display: swap;
}
/*---------------  html---------------*/
html {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-family: ZenKakuGothicNew,sans-serif;
    font-weight: 400;/* Regular*/
    font-size: 62.5%;
    color: #313131;
    -webkit-tap-highlight-color: transparent;
}
img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
li{
    list-style: none;
}
a{
    color: #313131;
    display: inline-block;
    word-break: break-all;
}
h1{
    font-size: 1.4rem;
    font-weight: 700;
    padding: 10px 20px;
    line-height: 100%;
}
h2{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 100%;
}
h3{
    font-size: 2rem;
    font-weight: 700;
    line-height: 100%;
}
p{
    font-size: 1.5rem;
    line-height: 130%;
}
@media screen and (min-width: 950px) {
    h1{
        font-size: 1.6rem;
        padding: 20px 0px;
    }
    h2{
        font-size: 3rem;
    }
    h3{
        font-size: 2.4rem;
    }
}
/* bread_crumb パンくずリスト */
#main .bread_crumb {
    margin: 0;
    padding: 0 20px 15px;
    list-style: none;
    font-size: 1.4rem;
    color: #313131;
    white-space: nowrap;
    overflow: auto;
}
#main .bread_crumb li {
    display: inline;
    list-style: none;
}
#main .bread_crumb li::after{
    content: '>';
}
#main .bread_crumb li:last-child::after {
    content: '';
}
#main .bread_crumb li a {
    text-decoration: underline #ccc;
    color: #313131;
}
#main .bread_crumb li a:active{
    text-decoration: underline;
}
/*bread_crumb PC用*/
@media screen and (min-width: 950px) {
    #main .bread_crumb {
        padding: 0 0 60px 0;
    }
    #main .bread_crumb li a:hover{
        text-decoration: underline;
    }
}
/* アイコンのサイズを変更するためのルール */
.web_icons.fs_18 { font-size: 18px; }
.web_icons.fs_24 { font-size: 24px; }
.web_icons.fs_30 { font-size: 30px; }
.web_icons.fs_36 { font-size: 36px; }
.web_icons.fs_42 { font-size: 42px; }
.web_icons.fs_48 { font-size: 48px; }

/* 明るい背景の場合に黒色でアイコンを表示するためのルール */
.web_icons.dark { color: #313131; }
.web_icons.dark.inactive { color: #AAAAAA; }

/* 暗い背景の場合に白色でアイコンを表示するためのルール */
.web_icons.light { color: #fff; }
.web_icons.light.inactive { color: #F3F3F3; }

label, input[type='checkbox'] {
    cursor: pointer;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*ボタン共通*/
.btn_link,
.btn_page_link,
.btn,
.btn_strong,
.btn_link_simple{
    margin: 0px auto;
    width: 100%;
    max-width: 500px;
}
.btn_link a,
.btn_page_link a,
.btn p,
.btn button,
.btn_strong button,
.btn_link_simple a,
.btn_link_simple button{
    color: #313131;
    background-color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    padding: 1rem;
    display: block;
    font-weight: 700;
    border-radius: 30px;
    border: solid 1px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    width: 100%;
}
/*リンクボタン*/
.btn_link a,
.btn_page_link a,
.btn_link_simple a,
.btn_link_simple button{
    color: #E31B72;
}
.btn_link a,
.btn_page_link a,
.btn p.close,
.btn_strong button{
    padding-right: 3.5rem;
}
.btn_link a::after,
.btn_page_link a::after{
    content: '\25BC';
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-left: 5px;
    position: absolute;
    transform:rotate(-90deg);
    top: calc(50% - 7px);
    right: 20px;
}
.btn_page_link a::after{
    transform:rotate(0deg);
}
.btn_link.scene10{
    margin-bottom: 50px;
}
.btn_link.scene10 a::after{
    right: 40px;
    top: 23px;
}
/*ボタン*/
.btn p.more::after{
    content: '\25BC';
    font-size: 1.5rem;
    line-height: 1.5rem;
    position: absolute;
    top: calc(50% - 7px);
    right: 20px;
}
.btn p.close::after{
    content: '\025b2';
}
/*btn_strong*/
.btn_strong button{
    color: #fff;
    background-color: #e31b72;
    border: 1px solid #E31B72;
    width: 100%;
}
.btn_strong button::after{
    content: '\25BC';
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-left: 5px;
    position: absolute;
    transform:rotate(-90deg);
    top: 1.5rem
}
/*button.return_btn*/
.btn button.return_btn::before{
    content: '\25BC';
    font-size: 1.5rem;
    line-height: 1.5rem;
    position: absolute;
    transform: rotate(90deg);
    top: 1.5rem;
    margin-left: -2rem;
}
/*btn_set*/
.btn_set{
    margin-top: 40px;
    margin-bottom: 30px;
}
.btn_set div:first-of-type{
    margin-bottom: 20px;
}
/*receipts*/
.receipts_area .btn_strong{
    margin-left: 0;
}
/*optional_products*/
body#order_wrapping .btn_strong{
    margin-bottom: 20px;
}
/*------------ active hover の基本エフェクト  ------------*/
@media screen and (max-width: 949px) {
    a:active img,
    a:active div img{
        opacity: 0.7;
    }
    button.hamburger_btn:active span{
        background-color:#e31b72;
    }
    a:active,
    a:active p,
    a:active div,
    a:active div p,
    a:active .web_icons.dark,
    a:active .web_icons.light,
    .search_active_btn:active .web_icons.dark{
        color:#E31B72;
    }
    /*  ボタン関連  */
    .btn_link a:active,
    .btn_page_link a:active,
    .btn_link_simple a:active,
    .btn_link_simple button:active{
        background-color:#e31b72;
        color: #fff;
    }
    .btn p:active,
    .btn button:active{
        color: #fff;
        background-color: #313131;
    }
    .btn_strong button:active{
        background-color:#fff;
        color: #e31b72;
    }
}
@media screen and (min-width: 950px) {
    a:hover img,
    a:hover div img{
        opacity: 0.7;
    }
    button.hamburger_btn:hover span{
        background-color:#e31b72;
    }
    a:hover,
    a:hover p,
    a:hover div,
    a:hover div p,
    a:hover .web_icons.dark,
    a:hover .web_icons.light{
        color:#E31B72;
    }
    /*  ボタン関連  */
    .btn_link a:hover,
    .btn_page_link a:hover,
    .btn_link_simple a:hover,
    .btn_link_simple button:hover{
        color: #fff;
        background-color: #E31B72;
    }
    .btn p:hover,
    .btn button:hover{
        color: #fff;
        background-color: #313131;
    }
    .btn_strong button:hover{
        background-color:#fff;
        color: #e31b72;
    }
}
/*------------ --------- --------------- ---------------*/
span.strong{
    color: #AD06BD;
    font-weight: 700;
}
span.bold{
    font-weight: 700;
}
span.fsz12{
    font-size: 1.2rem;
}
span.fsz20{
    font-size: 2rem;
}
span.fsz30{
    font-size: 3rem;
}
/*linkアイコン矢印ベース*/
#main .mail_magazines ul.mail_magazines_list li span.mail_magazines_icon,
footer #filter_footer .filter_panel_wrapper a span.filter_item_icon,
footer #filter_footer #feature_link a span.feature_item_icon,
footer #menu_footer .menu_content_wrapper span.menu_item_icon,
footer #info_link_footer .info_link_item span.info_link_item_icon,
.category_area span.category_item_icon,
.scenes_area span.scenes_item_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    border-top: 2px solid #E31B72;
    border-right: 2px solid #E31B72;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
}
/*メディア幅で非表示*/
@media screen and (min-width: 950px) {
   .pc_none {
    display: none!important;
  }
}
@media screen and (max-width: 949px) {
  .sp_none {
    display: none!important;
  }
}
/*----------------------------------------
global_nav
---------------------------------------- */
.global_nav{
    position:fixed;
    width: 100%;
    z-index: 9999;
}
.global_nav .global_nav_container{
    position: relative;
}
.global_nav a,.global_nav button,
s.global_nav span#js_nav_space{
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
/*global_nav_default*/
.global_nav .global_nav_default{
    background-color: #E9B1AB;
    display: flex;
    height: 40px;
    position: relative;
    z-index: 9999;
}
.global_nav .global_nav_default .nav_left{
    display: flex;
    margin-right: auto;
}
.global_nav .global_nav_default .nav_right{
    display: flex;
    margin-left: 50px;
    background-color: #E9B1AB;
}
.global_nav .global_nav_default .nav_right div{
    margin: auto 5px;
}
.global_nav .hamburger_btn{
    width: 50px;
    height: 100%;
    padding: 10px;
    background-color: transparent;
    border-color: transparent;
}
.global_nav .hamburger_btn span {
    width: 100%;
    height: 2px;
    background-color: #313131;
    position: relative;
    display: block;
    transition: ease 0.2s;
}
.global_nav .hamburger_btn span:nth-child(1) {
    top: 0;
}
.global_nav .hamburger_btn span:nth-child(2) {
    margin: 5px 0;
}
.global_nav .hamburger_btn span:nth-child(3) {
    top: 0;
}
.global_nav .global_nav_default .logo_img{
    width: 150px;
    padding: 8px 20px;
    margin: auto;
}
.global_nav .global_nav_default .search_active_btn,
.global_nav .global_nav_default .cart_btn,
.global_nav .global_nav_default .favorite_btn{
    width: 40px;
    padding: 5px 0 0;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}
/* ハンバーガーメニュークリック後のスタイル */
.global_nav .hamburger_btn.active {
    transform: translateX(0);
}
.global_nav .hamburger_btn.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}
.global_nav .hamburger_btn.active span:nth-child(2) {
    opacity: 0;
}
.global_nav .hamburger_btn.active span:nth-child(3) {
    top: -8px;
    transform: rotate(-45deg);
}
/*nav_items_wrapper*/
.global_nav .overlay {
    background-color: #000;
    opacity: 0.3;
    cursor: pointer;
    height: 100vh;
    visibility: visible;
    transition: all 0.3s;
    width: 100vw;
    position: fixed;
}
.global_nav .nav_items_wrapper{
    position:fixed;
    width: 100%;
    height: 100%;
    top:-200%;
    right: 0;
    left: 0;
    transition: all 0.3s;
    overflow: auto;
    z-index: 9998;
}
.global_nav .nav_items_wrapper.active{
    top: 40px;
}
.global_nav .nav_items_wrapper.active ul.nav_items_list{
    position: relative;
}
.global_nav .nav_items_wrapper li.nav_content span{
    display: block;
    background-color: #EEEEEE;
    padding: 3px 3px 6px;
    font-size: 1.3rem;
    font-weight: 500;
}
.global_nav .nav_items_wrapper li.nav_items a{
    color: #313131;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
    background-color: #fff;
    border-bottom: 1px solid #E5E5E5;
}
.global_nav .nav_items_wrapper li.nav_items a::after{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    top: calc((100% - 10px) / 2);
    right: 2rem;
    border-top: 2px solid #E31B72;
    border-right: 2px solid #E31B72;
}
.global_nav .nav_items_wrapper span#js_nav_space{
    display: block;
    height: 120px;
    opacity: 0.3;
    cursor: pointer;
}
/*search_box*/
.global_nav div.search_box_sp{
    margin: 0px auto;
    position:fixed;
    width: 100%;
    top:-100%;
    right: 0;
    left: 0;
    transition: all 0.3s;
    overflow: auto;
    background-color: #fff;
    z-index: 9998;
}
div.search_box_sp.active{
    top: 40px;
}
div.search_box form{
    display: flex;
    justify-content: center;
    margin: 10px auto;
}
div.search_box input[type="text"] {
    position: relative;
    margin-left: 0;
    text-indent: 10px;
    line-height: 30px;
    border: 1px solid #E5E5E5;
    background-color: #fff;
    height: 40px;
    width: 75vw;
    max-width: 350px;
    font-size: 14px;
    -moz-border-radius: 10px 0px 0px 10px;
    -webkit-border-radius: 10px 0px 0px 10px;
    border-radius: 10px 0px 0px 10px;
}
div.search_box form .search_btn{
    background-color: #707070;
    width: 50px;
    border-radius: 0 10px 10px 0;
    text-align: center;
    cursor: pointer;
}
div.search_box form .search_btn span{
    margin-top: 8px;
}
/*------------ search_box PC用  ------------*/
@media screen and (min-width: 950px) {
    /*  default  */
    .global_nav .global_nav_default{
        height: 50px;
    }
    .global_nav .global_nav_default .nav_right div{
        margin: auto 10px;
    }
    div.search_box form{
        margin: 5px auto;
    }
    .global_nav .global_nav_default .nav_right .login_btn{
        font-size: 1.5rem;
        font-weight: 500;
        margin: auto;
        margin-right: 5px;
        padding-top: 7px;
        height: 35px;
    }
    .global_nav .global_nav_default .nav_right .members_menu{
        position: relative;
    }
    .global_nav .global_nav_default .nav_right .members_menu_list{
        display: none;
        cursor: pointer;
        position: absolute;
        top: 35px;
        right: -70px;
        width: 210px;
        background-color: #fff;
        box-shadow: 0px 3px 6px 0px rgba(191, 191, 191, 1);
        padding: 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }
    .global_nav .global_nav_default .nav_right .members_menu ul{
        display: flex;
        flex-wrap: wrap;
    }
    .global_nav .global_nav_default .nav_right .members_menu ul li{
        margin: 5px 1%;
        width: 48%;
        text-align: center;
    }
    .global_nav .nav_items_wrapper.active{
        top: 50px;
    }
    /*  nav_items_wrapper  */
    .global_nav .nav_items_wrapper.active ul.nav_items_list{
        display: flex;
        flex-wrap: wrap;
        flex-direction:column;
        background-color: #fff;
        height: 560px;
    }
    .global_nav .nav_items_wrapper ul li.nav_content{
        width: 30%;
        margin: 20px 15px;
    }
    .global_nav .nav_items_wrapper li.nav_content span{
        font-size: 2rem;
        font-weight: 700;
        background-color: #fff;
    }
    .global_nav .nav_items_wrapper ul li li.nav_items:first-of-type{
        border-top: 1px solid #E5E5E5;
    }
    .global_nav .nav_items_wrapper li.nav_items a{
        font-size: 1.5rem;
        font-weight: 500;
    }
    .global_nav .nav_items_wrapper li.nav_items a:hover{
        color:#E31B72;
    }

}
/*----------------------------------------
#main
---------------------------------------- */
#main{
    padding-top: 50px;
    position: relative;
    z-index: 0;
}
@media screen and (min-width: 950px) {
    #main{
        max-width:  980px;
        margin: 0 auto;
    }
}
/*----------------------------------------
#center_area
---------------------------------------- */
#main #center_area{
    padding: 0 20px;
}
#main h2.main_title{
    margin-bottom: 15px;
}
#main h2.main_title::before{
    background: url(../images/decoto_icon.svg) no-repeat;
    content: "";
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 5px;
    background-size: contain;
    margin-bottom: -0.5rem;
}
#main #center_area p#product_header_description{
    margin-bottom: 30px;
}
/*------------ center_area PC用  ------------*/
@media screen and (min-width: 950px) {
    #main #center_area{
        padding: 0;
    }
    #main h2.main_title{
        margin-bottom: 30px;
    }
    #main h2.main_title::before{
        width: 3rem;
        height: 3rem;
    }
    #main #center_area p#product_header_description{
        margin-bottom: 50px;
    }
}
/*----------------------------------------
footer
---------------------------------------- */
footer{
    padding-top: 20px;
    background-color: #FCFCFC;
}
footer h2,
footer #filter_footer #feature_link h3{
    padding-left: 20px;
    font-size: 1.6rem;
}
body.order footer,
body.form footer{
    background-color:#fff;
}
/*------------ filter_footer PC用  ------------*/
@media screen and (min-width: 950px) {
    footer h2{
        padding-left: 0;
    }
    footer #footer_inner{
        max-width: 980px;
        padding: 10px;
        margin: 0 auto;
    }
}
/*filter_footer*/
footer #filter_footer {
    margin-bottom: 20px;
}
footer #filter_footer .filter_tab_wrapper{
    margin-top: 1rem;
    font-weight: 700;
}
footer #filter_footer #feature_link{
    margin-top: 2rem;
    font-weight: 700;
}
footer #filter_footer .filter_tab_wrapper .filter_btn_area{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
footer #filter_footer .filter_tab_wrapper .filter_btn_area p{
    border: 1px solid #E5E5E5;
    background-color: #fff;
    width: 30%;
    text-align: center;
    padding: 5px;
    margin-right: 10px;
    font-size: 13px;
    border-radius: 3px;
}
footer #filter_footer .filter_tab_wrapper .filter_btn_area p.active{
    background-color: #E31B72;
    border: 1px solid #E31B72;
    color: #fff;
}
footer #filter_footer .filter_tab_wrapper .filter_btn_area p:first-of-type{
    margin-left: 10px;
}
footer #filter_footer .filter_panel_wrapper .filter_panel{
    display: none;
}
footer #filter_footer .filter_panel_wrapper .filter_panel.active{
    display: block;
}
footer #filter_footer .filter_panel_wrapper ul.filter_list,
footer #filter_footer #feature_link ul.feature_list{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    border-top: 1px solid #E5E5E5;
    margin-top: 5px;
}
footer #filter_footer .filter_panel_wrapper ul.filter_list li,
footer #filter_footer #feature_link ul.feature_list li{
    width: 50%;
    border-bottom: 1px solid #E5E5E5;
}
footer #filter_footer .filter_panel_wrapper .filter_list li:nth-of-type(odd),
footer #filter_footer #feature_link ul.feature_list li:nth-of-type(odd){
    border-right: 1px solid #E5E5E5;
}
footer #filter_footer .filter_panel_wrapper a,
footer #filter_footer #feature_link a{
    display: flex;
    align-items: center;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding-right:40px;
    padding-left: 10px;
    height: 70px;
}
/*------------ filter_footer PC用  ------------*/
@media screen and (min-width: 950px) {
   #filter_footer div.search_box form{
        margin: 20px 0px;
        justify-content: flex-start;
    }
     #filter_footer div.search_box input[type="text"] {
        max-width: 350px;
    }
    footer #filter_footer .filter_tab_wrapper .filter_btn_area{
        justify-content: space-between;
    }
    footer #filter_footer .filter_tab_wrapper .filter_btn_area p,
    footer #filter_footer .filter_tab_wrapper .filter_btn_area p.active{
        background-color:rgba(0,0,0,0);
        color: #313131;
        border: none;
        font-size: 18px;
        text-align: left;
        margin: 0;
        padding: 0;
    }
    footer #filter_footer .filter_panel_wrapper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer #filter_footer .filter_panel{
        width: 31%;
    }
    footer #filter_footer .filter_panel_wrapper .filter_panel{
        display: block;
    }
    footer #filter_footer .filter_panel_wrapper a{
        height: 60px;
        font-size: 13px;
    }
    footer #filter_footer #feature_link h3{
        padding-left:0;
        margin-bottom: 10px;
    }
    footer #filter_footer #feature_link ul.feature_list li{
        width: 25%;
        border-right: 1px solid #E5E5E5;
    }
    footer #filter_footer #feature_link ul.feature_list li:nth-of-type(4n){
        border-right:none;
    }
}
/*filter_popular_kw*/
footer #popular_kw_footer .popular_kw_btn_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}
footer #popular_kw_footer .popular_kw_btn_wrapper .popular_kw_btn{
    width: 31%;
    margin-bottom: 10px;
}
footer #popular_kw_footer .popular_kw_btn_wrapper .popular_kw_btn a{
    border: 1px solid #E31B72;
    text-align: center;
    padding: 8px 5px;
    margin-right: 15px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    color: #E31B72;
    display: block;
    font-weight: 700;
    background-color: #fff;
}
footer #popular_kw_footer .popular_kw_btn_wrapper .popular_kw_btn a:active{
    background-color: #E31B72;
    color: #fff;
}
/*------------ popular_kw_footer PC用  ------------*/
@media screen and (min-width: 950px) {
    footer #popular_kw_footer .popular_kw_btn_wrapper{
        flex-wrap: nowrap;
        justify-content: start;
    }
    footer #popular_kw_footer .popular_kw_btn_wrapper .popular_kw_btn {
        width: 15%;
        margin-bottom: 25px;
    }
    footer #popular_kw_footer .popular_kw_btn_wrapper .popular_kw_btn a{
        padding: 12px 5px;
        margin-right: 20px;
    }
    footer #popular_kw_footer .popular_kw_btn_wrapper .popular_kw_btn a:hover{
        background-color: #E31B72;
        color: #fff;
    }
}
/*menu_footer*/
footer #menu_footer {
    margin-bottom: 30px;
}
footer #menu_footer .menu_content_wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 700;
}
footer #menu_footer .menu_content_wrapper .menu_item{
    width: 29%;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    margin: 2%;
}
footer #menu_footer .menu_content_wrapper .menu_item:nth-of-type(1),
footer #menu_footer .menu_content_wrapper .menu_item:nth-of-type(2){
    border-bottom: 0;
    margin-bottom: 0;
}
footer #menu_footer .menu_content_wrapper .menu_item:nth-of-type(3){
    margin-bottom: 0;
}
footer #menu_footer .menu_content_wrapper .menu_item a{
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-decoration: none;
    padding: 8px 5px;
}
footer #menu_footer .menu_content_wrapper .menu_item a p{
    margin-left: 2px;
    margin-right: 2px;
    font-size: 14px;
}
footer #menu_footer .menu_content_wrapper span.menu_item_icon{
    width: 10px;
    height: 10px;
    right: 0;
}
/*------------ menu_footer PC用  ------------*/
@media screen and (min-width: 950px) {
    footer #menu_footer .menu_content_wrapper{
        flex-wrap:nowrap;
        justify-content: start;
    }
    footer #menu_footer .menu_content_wrapper .menu_item{
        border: none;
        padding: 0 15px;
        border-right: 1px solid #E5E5E5;
        border-left: 1px solid #E5E5E5;
        margin: 0;
    }
    footer #menu_footer .menu_content_wrapper .menu_item a p{
        font-size: 16px;
    }
}
/*info_link_footer*/
footer #info_link_footer .info_link_wrapper .info_link_item{
    position: relative;
    border-top: 1px solid #E5E5E5;
}
footer #info_link_footer .info_link_wrapper .info_link_item a{
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px;
    padding-left: 15px;
}
footer #info_link_footer .info_link_item p{
    font-weight: 700;
    font-size: 16px;
    margin-left: 10px;
}
footer #info_link_footer .info_link_item span.info_link_item_icon{
    right: 30px;
}
/*------------ info_link_footer PC用  ------------*/
@media screen and (min-width: 950px) {
    footer #info_link_footer .info_link_wrapper{
        display: flex;
        flex-wrap: nowrap;
        margin-bottom: 30px;
    }
    footer #info_link_footer .info_link_wrapper .info_link_item{
        width: 30%;
        border: none;
        border-left: 1px solid #E5E5E5;
    }
    footer #info_link_footer .info_link_wrapper .info_link_item:last-of-type{
        border-right: 1px solid #E5E5E5;
    }
    footer #info_link_footer .info_link_wrapper .info_link_item a{
        padding: 15px;
    }
    footer #info_link_footer .info_link_wrapper .info_link_item p{
        font-size: 18px;
    }
    footer #info_link_footer .info_link_item span.info_link_item_icon{
        right: 15px;
    }
}
/*info_footer*/
footer #info_footer .info_item{
    border-top: 1px solid #E5E5E5;
}
footer #info_footer .info_item p{
    font-weight: 700;
    font-size: 16px;
    padding: 10px;
    padding-left: 15px;
    position: relative;
}
footer #info_footer .info_item p::after {
    content: '\25BC';
    font-size: 13px;
    line-height: 1.3rem;
    position: absolute;
    right: 25px;
    top: calc( 50% - 0.6rem );
}
footer #info_footer .info_item p.open{
    color: #59AA00;
}
footer #info_footer .info_item p.open::after {
    content: '\025b2';
}
footer #info_footer .info_item .info_content{
    display: none;
}
footer #info_footer .info_item .info_content.open{
    display: block;
}
footer #info_footer .info_item .info_content{
    font-size: 14px;
    padding: 10px;
    padding-top: 0;
    line-height: 150%;
}
footer #info_footer .info_content .credit_card_logos{
    display: flex;
    flex-wrap: nowrap;
}
footer #info_footer .info_content .credit_card_logos img{
    margin: 5px;
    max-width: 70px;
}
/*------------ info_link_footer PC用  ------------*/
@media screen and (min-width: 950px) {
    footer #info_footer .info_item_wrapper{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    footer #info_footer .info_item_wrapper #info_item_left,
    footer #info_footer .info_item_wrapper #info_item_right{
        width: 48%;
        margin-bottom: 10px;
    }
    footer #info_footer .info_item p{
        color: #59AA00;
        padding: 15px 0;
        padding-left: 0;
    }
    footer #info_footer .info_item .info_content{
        display: block;
        padding: 0 0 20px 0;
    }
    footer #info_footer .info_item p::after{
        content:'';
    }
}
/*contact_btn_area*/
footer #contact_btn_area{
    background-color: #F6E5E4;
    padding:5px 0;
}
footer #contact_btn_area .contact_btn{
    text-align: center;
}
footer #contact_btn_area .contact_btn a{
    background-color: #E9B1AB;
    border: 1px solid #E9B1AB;
    color: #fff;
    border-radius: 5px;
    margin: 15px 10px;
    padding: 10px;
    display: block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
footer #contact_btn_area .contact_btn a:active{
    background-color: #fff;
    border: 1px solid #E31B72;
}
footer #contact_btn_area .contact_btn a span{
    margin-right: 3px;
    margin-bottom: 5px;
    vertical-align: middle;
}
footer #contact_btn_area .contact_btn a p.phone_number{
    font-size: 24px;
    font-weight: 700;
}
footer #contact_btn_area .contact_btn a p.form{
    font-size: 18px;
    font-weight: 700;
}
/*------------ contact_btn_area PC用  ------------*/
@media screen and (min-width: 950px) {
    footer #contact_btn_area #contact_btn_wrapper{
        max-width: 980px;
        margin: 0 auto;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    footer #contact_btn_area .contact_btn{
        width: 50%;
        max-width: 480px;
    }
    footer #contact_btn_area .contact_btn a{
        height: 100px;
    }
    footer #contact_btn_area .contact_btn a p.form{
        margin-top: 29px;
    }
    footer #contact_btn_area .contact_btn a:hover{
        background-color: #fff;
        border: 1px solid #E31B72;
    }
}
/*links_sns_icon_wrapper(links_area/sns_icon_area)*/
footer #links_sns_icon_wrapper{
    background-color: #fff;
    padding-bottom: 20px;
}
/*links_area*/
footer #links_area{
    padding-top: 20px;
    padding-bottom: 15px;
}
footer #links_area ul{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
footer #links_area ul li{
    display: inline-block;
    border: 0;
    border-left: 1px solid #313131;
    text-indent: 5px;
    padding: 0 8px;
    margin-bottom: 5px;
}
footer #links_area ul li a{
    font-size: 12px;
    text-decoration: none;
}
/*sns_icon_area*/
footer #sns_icon_area ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
footer #sns_icon_area ul li{
    width: 45px;
    margin: 0 15px;
}
footer #sns_icon_area ul li:nth-of-type(2n){
    padding: 6px;
}
/*copyright_area*/
#copyright_area{
    text-align: center;
    padding: 8px;
    background-color: #f3f3f3;
}
/*------------ sns_icon_area /copyright_areaPC用  ------------*/
@media screen and (min-width: 950px) {
    footer #sns_icon_area ul li{
        margin: 0 30px;
    }
    footer #copyright_area{
        background-color:#fff;
        padding-bottom: 80px;
    }
}
/*----------------------------------------
product_slide 共通
---------------------------------------- */
#main .product_slide{
    margin-bottom: 60px;
}
#main .product_slide_area{
    position: relative;
}
#main .product_slide .product_slide_list_wrapper{
    position: relative;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: 15px;
    height: 351px;
}
#main .product_slide ul.product_slide_list{
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(1, auto);
    grid-auto-columns: 160px;
    gap: 5px;
}
#main .product_slide ul.product_slide_list li{
    position: relative;
}
#main .product_slide ul.product_slide_list li a{
    text-decoration: none;
    color: #313131;
    padding: 10px;
    display: inline-block;
}
#main .product_slide li .thumb_img{
    width: 130px;
    height: 130px;
    margin: 0 auto;
    margin-bottom: 5px;
}
#main .product_slide li p.discount,
#main .product_slide li p.name,
#main .product_slide li p.price{
    margin-bottom: 8px;
}
#main .product_slide li,
#main .product_slide li{
    font-size: 15px;
    font-weight: 700;
    line-height: 110%;
}
#main .product_slide li p.price{
    font-size: 18px;
    font-weight: 700;
}
#main .product_slide li span.tax_included{
    font-size: 13px;
}
#main .product_slide li p.memo{
    text-align-last: left;
    font-size: 13px;
}
/*------------ スライド SP用  ------------*/
@media screen and (max-width: 949px) {
    #main .product_slide ul.product_slide_list{
        margin: 0 20px;
    }
}
/*------------ スライド PC用  ------------*/
@media screen and (min-width: 950px) {
    #main .product_slide .product_slide_list_wrapper{
        overflow: hidden;
        margin-right: 40px;
        margin-left: 40px;
    }
    #main .product_slide .product_slide_list_wrapper .product_slide_list_outer {
        position: absolute;
        left: 0;
        top: 0;
    }
    #main .product_slide ul.product_slide_list{
        grid-auto-columns: 180px;
    }
    /*  戻る・次へボタン  */
    .slide_btn,
    .slide_btn_set .swiper_prev_btn,
    .slide_btn_set .swiper_next_btn{
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 45%;
        width: 40px;
        height: 40px;
        border: 3px solid #E31B72;
        background-color: #fff;
        border-radius: 50%;
        padding: 5px;
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.4);
        z-index: 10;
        cursor: pointer;
    }
    .slide_btn.prev{
        left: 0px;
    }
    .slide_btn_set .swiper_prev_btn{
        left: 20px;
    }
    .slide_btn.next{
        right: 0px;
    }
    .slide_btn_set .swiper_next_btn{
        right: 20px;
    }
    .slide_btn:hover,
    .slide_btn_set .swiper_prev_btn:hover,
    .slide_btn_set .swiper_next_btn:hover{
        opacity: 0.5;
    }
    .slide_btn span.arrow_btn,
    .slide_btn_set .swiper_prev_btn span.arrow_btn,
    .slide_btn_set .swiper_next_btn span.arrow_btn{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 13px;
        height: 13px;
        border-top: 3px solid #E31B72;
        border-right: 3px solid #E31B72;
        -webkit-transform: rotate(220deg);
        transform: rotate(220deg);
        margin-left: 3px;
    }
    .slide_btn.next span.arrow_btn,
    .slide_btn_set .swiper_next_btn span.arrow_btn{
        margin-right: 5px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-left: 0;
    }
}
/*---------------  ranking_slide---------------*/
#main .ranking_slide ul.product_slide_list{
    counter-reset: number 0;
}
#main .ranking_slide ul.product_slide_list li::before {
    counter-increment: number 1;
    content: counter(number) " ";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    color: #313131;
    background-color: #fff;
    border: 1px solid;
    width: 30px;
    height: 30px;
    line-height: 25px;
    z-index: 2;
}
#main .ranking_slide ul.product_slide_list li:first-of-type::before{
     background-color: #E6B422;
     border: 1px solid #E6B422;
}
#main .ranking_slide ul.product_slide_list li:nth-of-type(2)::before{
     background-color: #C0C0C0;
     border: 1px solid #C0C0C0;
}
#main .ranking_slide ul.product_slide_list li:nth-of-type(3)::before{
     background-color: #BA918D;
     border: 1px solid #BA918D;
}
/*----------------------------------------
btn_page_link(body.product固有)
---------------------------------------- */
body.product #main #staff_recomend .btn_page_link{
    margin-top: 20px;
}
/*----------------------------------------
original_gift
---------------------------------------- */
#main .original_gift {
    margin-bottom: 60px;
    position: relative;
}
#main .original_gift ul.original_gift_list{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
#main .original_gift ul li.original_gift_wrapper{
    width: 33%;
    max-width: 120px;
    margin-bottom: 5px;
}
#main .original_gift ul li .original_gift_inner{
    margin: 8px;
}
#main .original_gift ul li .original_gift_img{
    background-color: #F3F3F3;
    border-radius: 50%;
}
#main .original_gift ul li .original_gift_img img{
    padding: 10px;
}
/*original_gift PC用*/
@media screen and (min-width: 950px) {
    #main .original_gift ul li.original_gift_wrapper{
        max-width: 122px;
    }
}
/*----------------------------------------
error404
---------------------------------------- */
body#error404 #center_area{
    margin-bottom: 80px;
}
body#error404 .main_txt{
    font-size: 2rem;
    line-height: 160%;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}
/*----------------------------------------
loading
---------------------------------------- */
#loading{
    display: none;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    position:fixed;
    left:0;
    top:0;
}
#loading #loading_inner{
    padding-top: calc( 50vh - 31px);
}
#loading #loading_area{
    position: relative;
}
#loading .loading_area_inner{
    margin: 0 auto;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    background-color: #fff;
}
#loading_area .load_animation,
#loading_area .load_animation:after {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
#loading_area .load_animation {
    margin: 0 auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 8px solid rgba(233, 177, 171, 0.2);
    border-right: 8px solid rgba(233, 177, 171, 0.2);
    border-bottom: 8px solid rgba(233, 177, 171, 0.2);
    border-left: 8px solid #E9B1AB;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load_animation 1.1s infinite linear;
    animation: load_animation 1.1s infinite linear;
}
#loading_area .load_icon{
    animation: load_icon 1.3s linear infinite;
    position: absolute;
    top: calc(50% - 15px);
    left:  calc(50% - 15px);
}
#loading_area .load_icon span{
    color: #E9B1AB;;
}
@keyframes load_animation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load_icon {
    0%{
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/*----------------------------------------
date_updated 更新日
---------------------------------------- */
#center_area .date_updated{
    padding-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
}
