/* カスタマイズ用CSS */
@charset "utf-8";

html {
    scroll-padding-top: calc((var(--headerHeight, 110px)) + 20px); 
}

@media screen and (max-width:1024px) {
    html {
    scroll-padding-top: calc((var(--headerHeight, 170px)) + 20px); 
}

}

/*************************************************************

フォント設定

*************************************************************/
:root {
    --noto-Sans-JP: "Noto Sans JP", serif;
    --MainFontColor: #333;
    --DenkichiRed: #E40012;
    --DenkichiHeaderColor: #2A3137;
    --ColorWhite: #fff;
}


/*************************************************************

EC-CUBE 競合対策

*************************************************************/
h1,
h2,
h3,
p,
ul,
ol {
    margin: 0;
    padding: 0;
}

#page_homepage .ec-layoutRole__contents {
    max-width: none;
}
.ec-layoutRole{
    margin-top: 0;
}

.ec-layoutRole .ec-layoutRole__contents {
    max-width: 1300px;
}

.ec-layoutRole__contents {}

#page_homepage .ec-layoutRole__contentTop {
    margin-bottom: 30px;
}

/*************************************************************

基本設定

*************************************************************/
body {
    font-family: var(--noto-Sans-JP);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: var(--MainFontColor);
    overflow-x: hidden;
}

@media screen and (max-width:1024px) {
    body {
        font-size: 14px;
    }
}

.pcOnly {
    display: block;
}

@media screen and (max-width:1024px) {
    .pcOnly {
        display: none;
    }
}

.spOnly {
    display: none;
}

@media screen and (max-width:1024px) {
    .spOnly {
        display: block;
    }
}

.hide{
    opacity: 0;
    height: 0;
    pointer-events: none;
    transition: 0.2s;
    padding: 0 !important;
}
.show{
    opacity: 1;
    height: auto;
    pointer-events: auto;
    padding: inherit;
}

/*///////////////
サイト横幅等の設定
///////////////*/
.sec>.inner {
    max-width: calc(100% - 40px);
    margin: auto;
}

@media screen and (max-width:1300px) {
    .sec>.inner {
        padding: 0 15px;
    }
}

@media screen and (max-width:599px) {
    .sec>.inner {
        max-width: 100%;
        padding: 0 10px;
    }
}

.sec {
    margin-bottom: 30px;
}

.sec:last-child {
    margin-bottom: 0;
}

#mainArea {
    margin-bottom: 50px;
}
.ec-layoutRole .ec-layoutRole__main{
    padding: 10px 0;
}
.ec-layoutRole .ec-layoutRole__mainWithColumn {
    overflow-x: hidden;
}


/*///////////////
テキスト関連
///////////////*/
p {
    text-align: left;
}
a {
    color: #333;
    transition: .3s;
    display: inline-block;
}
.ec-role,.ec-inlineBtn,.ec-shelfGrid a,.ec-shelfRole,.ec-contactRole,.ec-registerRole{
    color: var(--MainFontColor);
}

.ec-productRole .ec-productRole__category a{
    color: #3A4173;
}

a:hover {
    opacity: .5;
}

h1 {
    font-size: 14px;
    font-weight: 400;
}
.ec-pageHeader h1, .ec-pageHeader .h1,
.ec-reportHeading{
    border-top: none;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    padding-left: 25px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
    border-bottom: solid 1px #8C8C8C;
}

@media screen and (max-width:599px) {
    h2 {
        font-size: 20px;
    }
}

@media screen and (max-width:400px) {
    h2 {
        font-size: 16px;
    }
}

h2::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(/html/user_data/assets/img/common/ICO_h2.svg) no-repeat left top;
    position: absolute;
    left: 0;
    top: 6px;
}
h2::after{
    top: 6px;
}

@media screen and (max-width:599px){
    h2::before, h2::after {
        top: 3px;
    }
}

@media screen and (max-width:400px) {
h2::before, h2::after {
    top: 0;
}
}

strong {
    font-weight: 700;
}
/*///////////////
商品名
///////////////*/
.reco-name{
    height: 5.5em;
}

.ec-maker,
.name_Categoriy,
.name_modelNumber{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}
.outStock{
    height: 3.2em;
    color: #939393;
}

/*///////////////
フォーム関連
///////////////*/
input{
    appearance: auto;
}
input[type="search"],input[type="text"],input[type="textarea"],input[type="number"] {
    appearance: auto;
    border: solid 1px #ccc;
    border-radius: 3px;
    background: #fff;
    padding: 5px 10px;
    margin-right: 5px;
}
[type="checkbox"], [type="radio"]{
    margin-right: 5px;
}
main input[type="search"],main input[type="text"],main input[type="textarea"],main input[type="number"]{
    margin: 5px 0 10px;
}


label {
    cursor: pointer;
}
option{
    text-align: left;
}

/*///////////////
画像関連
///////////////*/
img {
    vertical-align: bottom;
    width: auto;
    height: auto;
}



/*///////////////
汎用ボタン
///////////////*/
.moreBT a {
    display: block;
    max-width: 240px;
    margin: auto;
    text-align: center;
    background: var(--DenkichiRed);
    color: #fff;
    font-weight: 700;
    padding: 20px 20px 20px 20px;
    border-radius: 5px;
    position: relative;
}
.moreBT.black a{
    background: #2A3137;
}

.moreBT a::before {
    content: "";
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    transform: translate(0, -50%) rotate(45deg);
}
.btn_red{
    text-align: center;
    background: var(--DenkichiRed);
    color: #fff;
    width: 100%;
    padding: 20px 0;
    transition: .3s;
    border-radius: 5px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    display: flex;
    justify-content: center;
}
.btn_redwhite{
    text-align: center;
    background: #fff;
    color: var(--DenkichiRed);
    width: 100%;
    padding: 20px 0;
    transition: .3s;
    border-radius: 5px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    display: flex;
    justify-content: center;
    border: 1px solid var(--DenkichiRed);
}
.btn_bk,
.ec-blockBtn--cancel,
.ec-inlineBtn--cancel{
    text-align: center;
    background: #2A3137;
    color: #fff;
    width: 100%;
    padding: 20px 0;
    transition: .3s;
    border-radius: 5px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    display: flex;
    justify-content: center;
}
.btn_white{
    text-align: center;
    background: #fff;
    color: #333;
    width: 100%;
    padding: 20px 0;
    transition: .3s;
    border-radius: 5px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    display: flex;
    justify-content: center;
    border: 1px solid #333;
}

.ec-cartNavi__badge{
    background: var(--DenkichiRed);
    color: #fff;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: -5px;
}
.cartArea .cartBT .ec-cartNavi__badge{
    display: none;
}

/*///////////////
金額
///////////////*/
.price02-default span{
    color: var(--DenkichiRed);
    font-size: 18px;
    font-weight: 700;
}
.price02-default + .point {
    margin-bottom: 5px;
    color: var(--DenkichiRed);
}
.price02-default .tax{
    font-size: 0.9em !important;
}


/*///////////////
トップへ戻るボタン
///////////////*/
.ec-blockTopBtn {
    width: 100px;
    border-radius: 50px 0 0 50px;
    opacity: 1;
    border: solid 2px #fff;
    height: auto;
    line-height: inherit;
    padding: 15px 10px;
    font-weight: 700;
    right: 0;
    z-index: 99;
    opacity: 0.7;
}

@media screen and (max-width:1024px) {
    .ec-blockTopBtn {
        right: 0;
        bottom: 10px;
    }
}


/*///////////////
カートボタン
///////////////*/
.add-cart,
.ec-blockBtn--action,
.ec-inlineBtn--action{
    text-align: center;
    background: var(--DenkichiRed);
    color: #fff;
    width: 100%;
    padding: 20px 0;
    transition: .3s;
    border-radius: 5px;
    font-weight: 700;
    height: auto;
    line-height: normal;
    display: flex;
    justify-content: center;
}
.add-cart img{
    width: 1.5rem !important;
    margin-right: 5px;
}


/*///////////////
汎用商品レイアウト
///////////////*/
ul.productsListRayout {}

@media screen and (max-width:599px) {
    ul.productsListRayout {
        margin-right: 0;
    }
}

ul.productsListRayout>li {
    flex: 0 1 calc(100%/7 - 20px);
    margin-right: 20px;
}

@media screen and (max-width:1024px) {
    ul.productsListRayout>li {
        flex: 0 1 calc(100%/3 - 20px);
        margin-right: 20px;
    }
}

@media screen and (max-width:599px) {
    ul.productsListRayout>li {
        flex: 0 1 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.productsListRayout .pic img {
    margin: auto;
    max-height: 100%;
}

/* .productsListRayout .productsData .price {
    font-weight: 700;
    color: var(--DenkichiRed);
    font-size: 20px;
} */

@media screen and (max-width:599px) {
    .productsListRayout .productsData .price {
        font-size: 16px;
    }
}

.productsListRayout .productsData .price span {
    font-weight: 400px;
    font-size: 16px;
}

@media screen and (max-width:599px) {
    .productsListRayout .productsData .price span {
        font-size: 12px;
    }
}

.productsListRayout .productsData .point {
    margin-bottom: 5px;
    color: var(--DenkichiRed);
}

.productsListRayout .productsData .productsName {
    margin-bottom: 5px;
    /*-----
    文字数制限の記述
    -----*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.stars.review {
    color: #FF7C2B;
}
.ec-shelfGrid__item-image{
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ec-shelfGrid__item img{
    object-fit: contain;
    max-height: 100%;
}
@media screen and (max-width: 767px){
    .ec-shelfGrid .ec-shelfGrid__item:nth-child(even){
        padding-left: 0;
    }
    .ec-shelfGrid .ec-shelfGrid__item:nth-child(odd){
        padding-right: 0;
    }    
}

/*///////////////
汎用スライド　矢印設定
///////////////*/
.arrow_box{
    position: absolute;
    margin: 0 20px;
    bottom: 70px;
    width: calc(100% - 20px);
}
.arrow_box .next-arrow{
    right: 30px;
}
.dots_box{
    position: absolute;
    bottom: 70px;
    width: 100%;
}
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background: #9da3a9;
    border-radius: 50%;
    height: clamp(30px, 5vw, 48px);
    width: clamp(30px, 5vw, 48px);
    z-index: 50;
    cursor: pointer;
    transition: .2s;
    opacity: 0.8;
}

.slide-arrow:hover {
    background: rgba(0, 0, 0, .5);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

.slide-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
}

.slide-arrow:hover::before {
    border-top: solid 2px #fff;
}

.prev-arrow::before {
    border-left: solid 2px #fff;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-45deg);
}

.prev-arrow:hover::before {
    border-left: solid 2px #fff;
}

.next-arrow::before {
    border-right: solid 2px #fff;
    right: 50%;
    transform: translate(30%, -50%) rotate(45deg);
}

.next-arrow:hover::before {
    border-right: solid 2px #fff;
}

.slick-dots li button:before{
    font-size: 18px;
    top: auto;
    bottom: -20px;
}
@media screen and (max-width:767px){
    .slick-dots{
        bottom: 0;
    }
}

/*///////////////
汎用スライド　高さ設定
///////////////*/
.slick-track{
    display: flex;
}
.slick-slide{
    height: auto !important;
}

.tagList{
    margin-bottom: 10px;
}
.tagList ul{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.tagList ul>li{
    flex: 0 1 auto;
}
.tagList ul>li span, .tagList ul>li .tag {
    display: inline-block;
    background: #FAF0F1;
    color: #840610;
    padding: 5px 10px;
    font-size: 13px;
}

.bulkDiscountTag{
    background: var(--DenkichiRed) !important;
    color: #fff !important;
    border-radius: 3px;
}

.itemList .price .price_box {
    height: 3.4em;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.itemList .price .price_box .beforeDiscount span{
    font-size: 14px;
}

.itemList .price .beforeDiscount span {
    color: #8C8C8C;
}
.itemList .price .beforeDiscount .discount-rate{
    color: #ff2712;
}

/*************************************************************

レコメンド

*************************************************************/

.reco-wrap h2.reco-title{
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px 10px 35px;
    border: none;
}
.reco-wrap .titleOuter{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reco-wrap .titleOuter::before,
.reco-wrap .titleOuter::after{
    content: "";
    flex: 1;
    height: 1px;
    background: #8C8C8C;
    display: block;
}
.reco-wrap .reco-img .reco-item-wrap a{
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
}
.reco-wrap .reco-item-wrap img{
    max-width: 85%;
    height: auto;
    max-height: 100%;
    width: auto;
}

.reco-wrap .titleOuter::before{
    margin-right: 20px;
}
.reco-wrap .titleOuter::after{
    margin-left: 20px;
}
.reco-wrap .reco-price{
    margin-bottom: 10px;
}

.reco-wrap .reco-price .price02-default span{
    color: var(--DenkichiRed);
    font-size: 18px;
    font-weight: 600;
}
.reco-wrap .reco-price .point{
    color: var(--DenkichiRed);
    margin-bottom: 0;
    padding-top: 0;
}

.reco-wrap .titleOuter h2{
    border-bottom: none;
    padding-bottom: 0;
    display: inline-block;
    padding-right: 30px;
    margin-bottom: 0;
}
.reco-wrap h2.reco-title::before{
    display: inline-block !important;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/html/user_data/assets/img/common/ICO_h2.svg) no-repeat left top;
    position: absolute;
    left: 0;
    top: 3px;
}
.reco-wrap h2.reco-title::after {
    display: inline-block !important;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/html/user_data/assets/img/common/ICO_h2.svg) no-repeat left top;
    position: absolute;
    right: 0;
    top: 3px;
}
.reco-info .tagList{
    height: 35px;
}
.reco-info .tagList li{
    width: 100%;
}
@media screen and (max-width:767px){
    .reco-wrap .titleOuter{
        margin-bottom: 0;
    }
    .reco-wrap ul{
        padding: 0;
    }
    .reco-wrap li{
        display: flex !important;
        justify-content: space-between;
    }
}


/* -------------------
さぶみっと　カート追加時モーダル
----------------------*/

.ec-modal .ec-modal-wrap{
    width: 80%;
    max-width: 900px;
    max-height: 90vh;
    max-height: 90svh;
    overflow-y: auto;
    padding: 20px;
}
.ec-modal .ec-modal-wrap .reco-wrap{
    padding-top: 10px;
}
.ec-modal .ec-modal-wrap .reco-wrap ul{
    margin-top: 0;
}
.ec-modal .ec-modal-wrap .container{
    overflow: auto;
    margin: 25px 0;
    height: calc(100% - 100px);
}
.ec-modal .ec-modal-wrap .container .text-center{
    font-size: 20px;
    font-weight: bold;
}

.ec-modal .ec-modal-wrap .container .tagList{
    margin-bottom: 0;
}
.ec-modal .reco-wrap .reco-img .reco-item-wrap a{
    max-width: 80%;
    width: 12vw;
    margin: 0 auto;
}
.ec-modal .ec-modal-box .ec-role{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.ec-modal .ec-modal-box .ec-role> *{
    width: calc(50% - 10px);
}
.reco-wrap ul li .detail_box a{
    width: 100%;
}
@media screen and (max-width:767px){
    .ec-modal .ec-modal-wrap{
        max-height: 85%;
        padding: 20px;
    }
    .ec-modal .reco-wrap .reco-img .reco-item-wrap a{
        max-width: none;
        width: 100%;
    }
    .ec-modal .ec-modal-wrap .container{
        height: calc(100% - 190px);  
    }
    .ec-modal .reco-wrap ul{
        flex-direction: column;
    }
    
    .ec-modal .reco-wrap>ul>li,
    .reco-wrap>ul li:has(.reco-img){
        width: 100%;
        border-bottom: 1px dotted #ccc !important;
        padding-bottom: 10px;
    }
    .reco-wrap ul li .reco-img{
        width: 40%;
    }
    .reco-wrap ul li .reco-price{
        padding: 0;
    }
    .reco-wrap ul li .detail_box{
        float: left;
        width: 60%;
        padding-top: 20px;
    }
    .ec-modal .ec-modal-box .ec-role{
        padding: 0;
        flex-direction: column-reverse;
        gap: 10px 0;
    }
    .ec-modal .ec-modal-box .ec-role> *{
        width: 100%;
    }
}

/*************************************************************

ドロワー

*************************************************************/
.have_curtain .ec-overlayRole{
    z-index: 999;
}
body:has(.ec-drawerRole.is_active){
    overflow: hidden;
}
.ec-drawerRole{
    width: 100%;
    background: #fff;
    transform: translateX(-100%);
}
.ec-drawerRoleClose{
    left: auto;
    right: 20px;
    z-index: 999999;
}
.drawer_menu{
    padding: 20px;
}
/* ユーザー */
.drawer_menu .user{
    margin-bottom: 5px;
}
.drawer_menu .user .name{
    margin-bottom: 5px;
}
.drawer_menu .user_point span{
    font-weight: 600;
}
/* トップメニュー */
.drawer_menu .menu_top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.drawer_menu .menu_top a{
    width: calc(100% / 2 - 10px);
    padding: 10px 0;
}

/* カテゴリ */
.drawer_menu .categoryList{
    margin: 0 calc(50% - 50vw) 20px;
    padding: 20px calc(50vw - 50%) !important;
}
.drawer_menu .categoryList .inner{
    padding: 0;
}

/* ミッドメニュー */
.drawer_menu .menu_mid{
    display: flex;
    flex-direction: column;
}
.drawer_menu .menu_mid a{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding-left: 46px;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.drawer_menu .menu_mid a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    transform: translate(0, 0);
}
.drawer_menu .menu_mid .shoppingGuide::before{
    background: url(/html/user_data/assets/img/common/ICO_shoppingGuideFooter.svg) no-repeat left top;
}
.drawer_menu .menu_mid .faq::before{
    background: url(/html/user_data/assets/img/common/ICO_faqFooter.svg) no-repeat left top;
}
.drawer_menu .menu_mid .guide::before{
    background: url(/html/user_data/assets/img/common/ICO_guideFooter.svg) no-repeat left top;
}
.drawer_menu .menu_mid .about::before{
    background: url(/html/user_data/assets/img/common/ICO_aboutFooter.svg) no-repeat left top;
}
/* ボットメニュー */
.drawer_menu  .menu_bot{
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/*************************************************************

ヘッダーメッセージ
※送料無料の記述

*************************************************************/
#headerMessage {
    background: var(--DenkichiRed);
    padding: 5px 20px;
    text-align: center;
    color: var(--ColorWhite);
}

@media screen and (max-width:1024px) {
    #headerMessage {
        padding: 5px 15px;
    }
}

@media screen and (max-width:599px) {
    #headerMessage {
        padding: 5px 10px;
        font-size: 12px;
    }
}

#headerMessage p {
    text-align: center;
    font-weight: 700;
}

@media screen and (max-width:350px) {
    #headerMessage p {
        font-size: 3.5vw;
    }
}

#headerMessage p span {
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width:599px) {
    #headerMessage p span {
        font-size: 10px;
    }
}


/*************************************************************

ヘッダー

*************************************************************/
#header {
    background: var(--DenkichiHeaderColor);
    color: var(--ColorWhite);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    margin-bottom: 30px;
    background: #ffffff;
    color: #333;
}
#header.fixed{
    position: fixed;
}

#header>.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}

@media screen and (max-width:1300px) {
    #header>.inner {
        padding: 10px 15px;
    }
}
@media screen and (max-width:1024px) {
    #header{
        margin-bottom: 10px;
    }
}

@media screen and (max-width:599px) {
    #header>.inner {
        padding: 10px 10px;
    }
}

#page_homepage #header.sec {
    margin-bottom: 0;
}

#header a {
    color: #333;
}

/*----------------------------
ロゴエリア
logoArea
----------------------------*/
#header #logoArea {
    flex: 0 1 364px;
    position: relative;
}

@media screen and (max-width:1300px) {
    #header #logoArea {
        flex: 0 1 25%;
    }
}

@media screen and (max-width:599px) {
    #header #logoArea {
        margin-bottom: 5px;
    }
}

@media screen and (max-width:350px) {
    #header #logoArea {
        flex: 0 1 155px;
    }
}

#header #logoArea .commonArea {
    position: relative;
    z-index: 1;
}

#header #logoArea img {
    margin-bottom: 3px;
    transition: .2s;
    max-width: 220px;
}

@media screen and (max-width:1024px) {
    #header #logoArea img {
        width: 145px;
        margin-left: 30px;
        margin-bottom: 0;
    }
}

@media screen and (max-width:599px) {
    #header #logoArea img {
        width: 100px;
        margin-bottom: 2px;
    }
}

#header #logoArea h1 {}
#header #logoArea .pcOnly{
    font-size: 14px;
}

@media screen and (max-width:1300px) {
    #header #logoArea h1 {
        font-size: .9vw;
    }
}

/*-----
sp用h1テキスト
-----*/
#header .h1Text {
    flex: 0 1 100%;
    order: 1;
    text-align: justify;
    margin-bottom: 5px;
}
@media screen and (max-width:767px){
    #header .h1Text{
        margin-top: 5px;
    }
}

@media screen and (max-width:399px) {
    #header .h1Text h1,
    #header #logoArea .spOnly.h1Text {
        font-size: 3.5vw;
    }
}

/*-----
ハンバーガーアイコン
-----*/
#header #logoArea .spHamburger {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
    z-index: 20;
}

@media screen and (max-width:1024px) {
    #header #logoArea .spHamburger {
        display: block;
    }
}

#header #logoArea .spHamburger span {
    background: var(--MainFontColor);
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: .2s;
}

#header #logoArea .spHamburger span:nth-child(1) {
    top: 0;
}

#header #logoArea .spHamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

#header #logoArea .spHamburger span:nth-child(3) {
    bottom: 0;
}

#header #logoArea .spHamburger.active span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

#header #logoArea .spHamburger.active span:nth-child(2) {
    opacity: 0;
}

#header #logoArea .spHamburger.spHamburger.active span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}


/*----------------------------
検索エリア
searchArea
----------------------------*/
#header .searchArea {
    flex: 0 1 calc(100% - 764px);
}
#header .searchArea .ec-icon img{
    width: 100%;
}

@media screen and (max-width:1300px) {
    #header .searchArea {
        flex: 0 1 40%;
    }
}

@media screen and (max-width:1024px) {
    #header .searchArea {
        flex: 0 1 100%;
        order: 2;
    }
}

#header .searchArea form {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width:1024px) {
    #header .searchArea form {
        display: flex;
        justify-content: flex-end;
    }
}
#header .searchArea form{
    display: flex;
    justify-content: flex-start;
}
#header .searchArea .ec-headerSearch__keyword{
    width: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    float: none;
    border: 1px solid #333;
}
#header .searchArea form .ec-input{
    width: calc(100% - 50px);
}
#header .searchArea input[type="search"] {
    background: #fff;
    padding: 5px;
    border-radius: 5px 0 0 5px;
}


#header .searchArea input[type="search"]::placeholder {
    color: #888;
}

#header .searchArea button[type="submit"] {
    background: var(--DenkichiRed);
    position: absolute;
    height: 35px;
    width: 50px;
    right: 0;
    top: 19px;
    border-radius: 0 5px 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}



/*----------------------------
ヘッダーナビ
headerNav
----------------------------*/
#header .headerNav {
    flex: 0 1 360px;
}

@media screen and (max-width:1300px) {
    #header .headerNav {
        flex: 0 1 30%;
    }
}

@media screen and (max-width:1024px) {
    #header .headerNav {
        flex: 0 1 40%;
        margin-bottom: 5px;
    }
}
@media screen and (max-width:767px){
    #header .headerNav{
        flex: 0 1 50%;
    }
}

#header .headerNav ul {
    display: flex;
    justify-content: flex-end;
}

#header .headerNav ul>li {
    flex: 0 1 calc(100%/4);
    border-left: solid 1px #333;
}

#header .headerNav a {
    font-size: 14px;
    text-align: center;
    display: block;
    padding: 10px 5px;
    height: 100%;
    position: relative;
}

@media screen and (max-width:1024px) {
    #header .headerNav a {
        padding: 0 8px;
    }
}

@media screen and (max-width:599px) {
    #header .headerNav a {
        padding: 0 4px;
        height: 100%;
        align-content: center;
        justify-content: center;
    }
}

#header .headerNav a p {
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width:1300px) {
    #header .headerNav a p {
        font-size: 1.077vw;
    }
}

@media screen and (max-width:1024px) {
    #header .headerNav a p {
        display: none;
    }
}

#header .headerNav img {
    margin-bottom: 5px;
    height: 7vw;
    max-height: 25px;
}
@media screen and (max-width:767px){
    #header .headerNav img{
        height: 5vw; 
    }
}


/*----------------------------
メインナビ
MainNavArea
----------------------------*/
#header .MainNavArea {
    padding: 5px 20px;
    background: #fbfbfb;
    filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.1));
}

/*-----
PC用設定
-----*/
#header .MainNavArea>.pcOnly {
    display: flex;
}

@media screen and (max-width:1024px) {
    #header .MainNavArea>.pcOnly {
        display: none;
    }
}

#header .MainNavArea>.pcOnly .point {
    font-size: 14px;
    position: relative;
    margin-right: 20px;
    white-space: nowrap;
}

#header .MainNavArea .point span {
    color: #FF9F04;
}

#header .MainNavArea>.pcOnly .point::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(0, -50%);
}

#header .MainNavArea>.pcOnly .pcCategoryNav {
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 10px 3px;
}

#header .MainNavArea>.pcOnly .pcCategoryNav::-webkit-scrollbar {
    background: #ccc;
    height: 10px;
    scrollbar-width: auto;
}

#header .MainNavArea>.pcOnly .pcCategoryNav::-webkit-scrollbar-thumb {
    background: #666;
}



#header .MainNavArea>.pcOnly .pcCategoryNav>li {
    margin-right: 20px;
    white-space: nowrap;
}

#header .MainNavArea>.pcOnly .pcCategoryNav .slick-slide{
    width: auto !important;
    margin-right: 15px;
}

/*-----
SP用設定
-----*/
@media screen and (max-width:1024px){
    #header .MainNavArea>.spOnly{
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
    #header .MainNavArea>.spOnly .point{
        font-size: 14px;
        position: relative;
        margin-right: 20px;
        white-space: nowrap;
    }
    #header .MainNavArea>.spOnly .spAnchorNav {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    #header .MainNavArea>.spOnly .spAnchorNav>li {
        margin-right: 20px;
        white-space: nowrap;
    }
}



/*************************************************************

MVスライド

*************************************************************/
.mvSlide {
    padding: 20px 0 0;
    margin-bottom: clamp(10px, 2vw, 30px);
}

.mvSlide .slick-slide {
    margin: 0 20px;
}

@media screen and (max-width:599px) {
    .mvSlide .slick-center {
        margin: 0;
    }
}

.mvSlide li img {}

@media screen and (max-width:599px) {
    .mvSlide li img {
        max-width: none;
        width: 100%;
    }
}



/*************************************************************

トップページ
あなたへのおすすめ商品

*************************************************************/
#page_homepage .recommendItem .reco-img .reco-item-wrap a{
    display: flex;
    justify-content: center;
}

#page_homepage .mainArea .recommendItem {}

#page_homepage .mainArea .recommendItem ul.productsListRayout {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    overflow: hidden;
}

#page_homepage .mainArea .recommendItem .slick-slide{
    margin: 0 10px;
    padding: 0 10px;
}

@media screen and (max-width:599px) {
    #page_homepage .mainArea .recommendItem ul.productsListRayout {
        margin-right: 0;
        max-height: 80vw;
        padding-right: 10px;
    }
}

#page_homepage .mainArea .recommendItem ul.productsListRayout>li a {}

@media screen and (max-width:599px) {
    #page_homepage .mainArea .recommendItem ul.productsListRayout>li a {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
}

#page_homepage .mainArea .recommendItem .productsListRayout .pic {}

@media screen and (max-width:599px) {
    #page_homepage .mainArea .recommendItem .productsListRayout .pic {
        flex: 0 1 40%;
    }

}

#page_homepage .mainArea .recommendItem .productsListRayout .productsData {}

@media screen and (max-width:599px) {
    #page_homepage .mainArea .recommendItem .productsListRayout .productsData {
        flex: 0 1 58%;
    }
}



/*************************************************************

トップページ
注目商品情報＋デンキチ厳選商品　回り込みレイアウト

*************************************************************/
#page_homepage .feature_and_selected {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
#page_homepage .feature_and_selected h2{
    margin-bottom: 20px;
}

#page_homepage .feature_and_selected .featurItem {
    flex: 0 1 calc(100%/2);
    width: 50%;
    position: relative;
}

@media screen and (max-width:1024px) {
    #page_homepage .feature_and_selected .featurItem {
        flex: 0 1 100%;
        width: 100%;
    }
}

#page_homepage .feature_and_selected .selectedItem {
    flex: 0 1 calc(100%/2);
    width: 50%;
}
#page_homepage .feature_and_selected .featurItem .slick-slide li *{
    width: 100%;
}

.featurItem .slick-list {
    overflow: hidden;
    margin: 0 20px;
  }
.featurItem .slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
    width: calc((100% - 20px) / 2); 
}
.featurItem .slick-slide>div{
    margin-bottom: 20px;
}
  
.selectedItem .pic{
    aspect-ratio: 1;
}
#page_homepage .feature_and_selected .featurItem .slick-slide li p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 2.7em;
    text-overflow: ellipsis;
}

@media screen and (max-width:1024px) {
    #page_homepage .feature_and_selected .selectedItem {
        flex: 0 1 100%;
        width: 100%;
    }
}


/*************************************************************

トップページ
注目商品情報

*************************************************************/
#page_homepage .feature_and_selected .featurItem {
    background: #FFF8F8;
    margin-bottom: 0;
    padding: 10px 0 20px;
}

#page_homepage .feature_and_selected .featurItem>ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#page_homepage .feature_and_selected .featurItem>ul>li {
    flex: 0 1 calc(100%/2 - 10px);
    margin-bottom: 20px;
}

#page_homepage .feature_and_selected .featurItem>ul>li img {
    margin-bottom: 5px;
}


/*************************************************************

トップページ
デンキチ新着商品

*************************************************************/
#page_homepage .feature_and_selected .slide-arrow{
    top: clamp(80px, 10vw, 120px);
    margin: 0 clamp(-10px , 5vw, -20px);
}

#page_homepage .feature_and_selected .selectedItem {
    background: #F2F4F9;
    padding: 10px 0 20px;
    position: relative;
}
#page_homepage .feature_and_selected .pic{
    display: flex;
    justify-content: center;
    align-items: center;
}
#page_homepage .feature_and_selected .name{
    margin-bottom: 10px;
    height: 4.2em;
}

@media screen and (max-width:767px){
    #page_homepage .feature_and_selected .slide-arrow{
        margin: 0;
    }
}

/*-----
スライドアイテム設定
-----*/
#page_homepage .feature_and_selected .selectedItem .slick-slide {
    margin: 0 10px;
    background: #fff;
    padding: 10px;
    border-radius: 3px;
}
#page_homepage .feature_and_selected .selectedItem .slick-slide>div>li>div{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#page_homepage .feature_and_selected .selectedItem .slick-slide>div,
#page_homepage .feature_and_selected .selectedItem .slick-slide>div>li{
    height: 100%;
}
#page_homepage .feature_and_selected .selectedItem .slick-slide .detailBox{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review_and_favorite{
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    width: 100%;
    gap: 10px;
}

#page_homepage .itemList .ec-price span{
    padding: 0;
}
#page_homepage .itemList .normalPrice span span{
    text-decoration: line-through;
}
#page_homepage  .ec-productRole__priceRegularTax{
    font-size: 10px;
}

@media screen and (max-width:767px){
    #page_homepage .feature_and_selected .selectedItem .slick-slide .detailBox{
        display: block;
    }
    #page_homepage .feature_and_selected .selectedItem .slick-slide .detailBox a{
        width: 100%;
    }
}

/*************************************************************

トップページ
カテゴリ別売れ筋ランキング

*************************************************************/
div#ranking_tab{
    max-width: none;
}

/*-----
タブ設定
-----*/
#page_homepage .rankArea .tab {
    display: flex;
    justify-content: center;
    border-bottom: dotted 2px #ccc;
}

@media screen and (max-width:599px) {
    #page_homepage .rankArea .tab {
        justify-content: flex-start;
        overflow: auto;
        flex-wrap: nowrap;
    }
}

#page_homepage .rankArea .tab>li {
    flex: 0 0 auto;
    position: relative;
    font-size: 20px;
    padding: 10px;
}
#page_homepage .rankArea .productsPrice{
    width: 100%;
}

#page_homepage .rankArea .tab>li.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 50%);
    height: 3px;
    background: var(--DenkichiRed);
}

@media screen and (max-width:767px){
    #page_homepage .rankArea .tab>li{
        font-size: 14px;
    }
}

/*-----
表示エリア設定
-----*/
#page_homepage .rankArea .rankingTab {
    display: none;
    opacity: 0;
}
#ranking_tab .price,
#plg_category_sales_ranking_list .price{
    color: var(--DenkichiRed);
    font-size: 18px;
    font-weight: 700;
}

#page_homepage .rankArea .rankingTab.is-active {
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#page_homepage .rankArea .productsListRayout {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

#page_homepage .rankArea .productsListRayout>li {
    flex: 0 1 calc(100%/3);
    padding: 20px;
    position: relative;
    margin-right: 0;
}

@media screen and (max-width:599px) {
    #page_homepage .rankArea .productsListRayout>li {
        flex: 0 1 100%;
        border-bottom: dotted 2px #ccc;
    }
}

#page_homepage .rankArea .productsListRayout>li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    width: 1px;
    height: calc(100% - 20px);
    border-right: dotted 2px #ccc;
}
#page_homepage .rankArea .productsListRayout > li:nth-of-type(3n)::before {
    border-right: none;
}

#page_homepage .rankArea .productsListRayout > li .pic{
    flex: auto;
    margin-right: 10px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#page_homepage .rankArea .productsListRayout > li .productsData{
    flex: auto;
    width: calc(60% - 10px);
}

@media screen and (max-width:599px) {
    #page_homepage .rankArea .productsListRayout>li::before {
        display: none;
    }
}

#page_homepage .rankArea .productsListRayout>li:last-child:before {
    display: none;
}

#page_homepage .rankArea .productsListRayout>li>a {
    width: 50%;
    margin-right: 10px;
}
#page_homepage .rankArea .productsListRayout>li .productsData a{
    width: 100%;
}

#page_homepage .rankArea .productsListRayout>li .pic {
    flex: 0 1 calc(40% - 10px);
    position: relative;
    aspect-ratio: 1;
}

@media screen and (max-width:1024px) {
    #page_homepage .rankArea .productsListRayout>li{
        flex: 0 1 100%;
        border-bottom: dotted 2px #ccc;
    }
    #page_homepage .rankArea .productsListRayout>li .pic {
        flex: 0 1 100%;
    }
    #page_homepage .rankArea .productsListRayout>li::before{
        display: none;
    }
}

@media screen and (max-width:599px) {
    #page_homepage .rankArea .productsListRayout>li .pic {
        flex: 0 1 calc(40% - 10px);
    }
}

#page_homepage .rankArea .productsListRayout>li .pic::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -10px;
    width: 40px;
    height: 35px;
}

#page_homepage .rankArea .productsListRayout>li:first-child .pic::before {
    background: url(/html/user_data/assets/img/common/ICO_rank1st.svg) no-repeat left top;
    background-size: contain;
}

#page_homepage .rankArea .productsListRayout>li:nth-child(2) .pic::before {
    background: url(/html/user_data/assets/img/common/ICO_rank2nd.svg) no-repeat left top;
    background-size: contain;
}

#page_homepage .rankArea .productsListRayout>li:nth-child(3) .pic::before {
    background: url(/html/user_data/assets/img/common/ICO_rank3rd.svg) no-repeat left top;
    background-size: contain;
}


#page_homepage .rankArea .productsListRayout>li .productsData {
    flex: 0 1 calc(60% - 10px);
}

@media screen and (max-width:1024px) {
    #page_homepage .rankArea .productsListRayout>li .productsData {
        flex: 0 1 100%;
    }
}

@media screen and (max-width:599px) {
    #page_homepage .rankArea .productsListRayout>li .productsData {
        flex: 0 1 calc(60% - 10px);
    }
}


/*************************************************************

カテゴリから探す

*************************************************************/
#page_homepage .categoryList,
#drawer_menu .categoryList{
    padding: 20px 0;
    background: #F9F9F9;
}


/*-----
h2タイトル
-----*/
#page_homepage h2{
    margin-bottom: 0;
}
#page_homepage .categoryList .titleOuter,
#drawer_menu .categoryList .titleOuter {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#page_homepage .categoryList .titleOuter::before,
#page_homepage .categoryList .titleOuter::after,
#drawer_menu  .categoryList .titleOuter::before,
#drawer_menu  .categoryList .titleOuter::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #8C8C8C;
    display: block;
}

#page_homepage .categoryList .titleOuter::before,
#drawer_menu  .categoryList .titleOuter::before {
    margin-right: 20px;
}

#page_homepage .categoryList .titleOuter::after,
#drawer_menu .categoryList .titleOuter::after {
    margin-left: 20px;
}

#page_homepage .categoryList h2,
#drawer_menu .categoryList h2 {
    border-bottom: none;
    padding-bottom: 0;
    display: inline-block;
    padding-right: 25px;
    margin-bottom: 0;
}

#page_homepage .categoryList h2::after,
#drawer_menu .categoryList h2::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(/html/user_data/assets/img/common/ICO_h2.svg) no-repeat left top;
    position: absolute;
    right: 0;
}


/*-----
カテゴリリスト
-----*/
#page_homepage .categoryList ul,
.drawer_menu .categoryList ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    overflow: hidden;
}

@media screen and (max-width:599px) {
    #page_homepage .categoryList ul,
    .drawer_menu .categoryList ul {
        margin-right: -10px;
    }
}

#page_homepage .categoryList ul>li,
.drawer_menu .categoryList ul>li {
    flex: 0 1 calc(100%/5 - 20px);
    margin-right: 20px;
    background: #fff;
    margin-bottom: 20px;
}

@media screen and (max-width:1300px) {
    #page_homepage .categoryList ul>li,
    .drawer_menu .categoryList ul>li {
        flex: 0 1 calc(100%/4 - 20px);
    }
}

@media screen and (max-width:1024px) {
    #page_homepage .categoryList ul>li,
    .drawer_menu .categoryList ul>li {
        flex: 0 1 calc(100%/2 - 20px);
    }
}

@media screen and (max-width:599px) {
    #page_homepage .categoryList ul>li,
    .drawer_menu .categoryList ul>li {
        flex: 0 1 calc(100%/2 - 10px);
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

#page_homepage .categoryList ul>li a,
.drawer_menu .categoryList ul>li a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px;
    padding-right: 30px;
}

@media screen and (max-width:599px) {
    #page_homepage .categoryList ul>li a,
    .drawer_menu .categoryList ul>li a {
        padding-right: 20px;
        font-size: 3vw;
    }
}

@media screen and (max-width:350px) {
    #page_homepage .categoryList ul>li a,
    .drawer_menu .categoryList ul>li a {
        font-size: 3.15vw;
    }
}

#page_homepage .categoryList ul>li a::before,
.drawer_menu .categoryList ul>li a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
}

@media screen and (max-width:599px) {
    #page_homepage .categoryList ul>li a::before,
    .drawer_menu .categoryList ul>li a::before {
        right: 10px;
        width: 6px;
        height: 6px;
    }
}

#page_homepage .categoryList ul>li a .pic,
.drawer_menu .categoryList ul>li a .pic {
    flex: 0 1 80px;
    margin-right: 10px;
    width: 80px;
    height: 80px;
    background-size: cover !important;
}
#page_homepage .categoryList ul>li a .pic + p{
    width: calc(100% - 80px);
    line-break: anywhere;
}

@media screen and (max-width:599px) {
    #page_homepage .categoryList ul>li a .pic,
    .drawer_menu  .categoryList ul>li a .pic {
        flex: 0 1 60px;
        width: 60px;
        height: 60px;
    }
    #page_homepage .categoryList ul>li a .pic + p{
        width: calc(100% - 60px);
    }
}

@media screen and (max-width:350px) {
    #page_homepage .categoryList ul>li a .pic,
    .drawer_menu .categoryList ul>li a .pic {
        flex: 0 1 40px;
        width: 40px;
        height: 40px;
    }
    #page_homepage .categoryList ul>li a .pic + p{
        width: calc(100% - 40px);
    }
}



/*************************************************************

デンキチWEBのサービスについて＋新着情報
レイアウト

*************************************************************/
#page_homepage .service_and_news {
    margin-bottom: 0;
}

#page_homepage .service_and_news.sec>.inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#page_homepage .service_and_news>.inner>section {
    flex: 0 1 calc(100%/2 - 20px);
    border: solid 1px #ccc;
    padding: 20px;
    padding-bottom: 100px;
    border-radius: 5px;
    position: relative;
}

@media screen and (max-width:1024px) {
    #page_homepage .service_and_news>.inner>section {
        flex: 0 1 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:599px){
    #page_homepage .service_and_news.sec>.inner{
        margin-bottom: 0;
    }
}


/*************************************************************

デンキチWEBのサービスについて

*************************************************************/
#page_homepage .serviceInfo {
    position: relative;
}

#page_homepage .serviceInfo li {
    margin: 10px 0;
    border-bottom: dotted 2px #ccc;
}

#page_homepage .serviceInfo li span {
    font-size: 14px;
}

#page_homepage .serviceInfo li a {
    position: relative;
    padding: 0 20px 10px;
    display: block;
}

#page_homepage .serviceInfo li a::before {
    content: "";
    background-color: var(--DenkichiRed);
    width: 5px;
    height: 8px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -100%);
}

#page_homepage .serviceInfo li a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: translate(0, -100%) rotate(45deg);
}

#page_homepage .serviceInfo .moreBT {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 240px;
    width: 100%;
}



/*************************************************************

新着情報

*************************************************************/
#page_homepage .news {
    position: relative;
}

#page_homepage .news li {
    margin: 10px 0;
    border-bottom: dotted 2px #ccc;
}

#page_homepage .news li span {
    font-size: 14px;
}

#page_homepage .news li a {
    position: relative;
    padding: 0 20px 10px;
    display: block;
}

#page_homepage .news li a::before {
    content: "";
    background-color: var(--DenkichiRed);
    width: 5px;
    height: 8px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -100%);
}

#page_homepage .news li a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: translate(0, -100%) rotate(45deg);
}

#page_homepage .news li a .date {
    font-size: 14px;
}

#page_homepage .news .moreBT {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 240px;
    width: 100%;
}



/*************************************************************

バナーエリア

*************************************************************/

#page_homepage .bnrArea>.inner {
    max-width: 1300px;
    margin: 0 auto inherit;
}

#page_homepage .bnrArea ul {
    display: flex;
    justify-content: space-between;
    margin-right: -10px;
    overflow: hidden;
}

@media screen and (max-width:599px) {
    #page_homepage .bnrArea ul {
        flex-wrap: wrap;
        max-width: 335px;
        margin: auto;
    }
}

#page_homepage .bnrArea ul>li {
    margin-right: 10px;
}

@media screen and (max-width:599px) {
    #page_homepage .bnrArea ul>li {
        margin-bottom: 10px;
        margin-right: 0;
        flex: 0 1 100%;
    }

    #page_homepage .bnrArea ul>li:nth-child(1) {
        flex: 0 1 100%;
    }

    #page_homepage .bnrArea ul>li:nth-child(1) a {
        display: block;
        text-align: center;
        background: var(--DenkichiRed);
    }

    #page_homepage .bnrArea ul>li:nth-child(2),
    #page_homepage .bnrArea ul>li:nth-child(3) {
        flex: 0 1 calc(100%/2 - 5px);
    }
}



/*************************************************************

メッセージ

*************************************************************/
#page_homepage .message {
    margin-bottom: 75px;
}

#page_homepage .message p {
    color: var(--DenkichiRed);
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px var(--DenkichiRed);
}

@media screen and (max-width:1024px) {
    #page_homepage .message p {
        font-size: 3vw;
    }
}

@media screen and (max-width:599px) {
    #page_homepage .message p {
        font-size: 5vw;
    }
}

#page_homepage .message p br {
    display: none;
}

@media screen and (max-width:599px) {
    #page_homepage .message p br {
        display: block;
    }
}

#page_homepage .message .eng {
    text-align: center;
}




/*************************************************************

フッター

*************************************************************/
#footer {
    border-top: solid 1px #666;
    margin-bottom: 0;
    padding: 30px 0 0;
    font-size: 14px;
    margin-top: 10px;
}


/*----------------------------
基本レイアウト
----------------------------*/
#footer>.inner {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width:1300px) {
    #footer>.inner {
        padding: 0 20px;
    }
}

@media screen and (max-width:599px) {
    #footer>.inner {
        padding: 0 10px;
    }
}

#footer .contentsLeft {
    flex: 0 1 30%;
}

@media screen and (max-width:1024px) {
    #footer .contentsLeft {
        flex: 0 1 100%;
        margin-bottom: 20px;
    }
}

#footer .contentsRight {
    flex: 0 1 67%;
}

@media screen and (max-width:1024px) {
    #footer .contentsRight {
        flex: 0 1 100%;
    }
}

/*----------------------------
会員登録・店舗を探す
----------------------------*/
#footer .contentsLeft h2 {
    font-size: 20px;
    font-weight: 700;
}

/*-----
会員登録
-----*/
#footer .contentsLeft .footerRegister {
    margin-bottom: 20px;
}

#footer .contentsLeft .footerRegister header {
    border: solid 1px #2A3137;
    background: #2A3137;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    border-radius: 5px 5px 0 0;
}

#footer .contentsLeft .footerRegister header h2 {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

#footer .contentsLeft .footerRegister header h2::before {
    content: "";
    background: url(/html/user_data/assets/img/common/ICO_registarFooter.svg) no-repeat left top;
    width: 45px;
    height: 35px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#footer .contentsLeft .footerRegister .contents {
    border: solid 1px #2A3137;
    border-radius: 0 0 5px 5px;
    padding: 10px 10px 20px;
}

#footer .contentsLeft .footerRegister .contents p {
    margin-bottom: 20px;
}

#footer .contentsLeft .footerRegister .contents p span {
    color: var(--DenkichiRed);
    font-weight: 700;
}


/*-----
店舗を探す
-----*/
#footer .contentsLeft .footerLookStore {
    margin-bottom: 20px;
}

#footer .contentsLeft .footerLookStore header {
    border: solid 1px #6B7783;
    background: #6B7783;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    border-radius: 5px 5px 0 0;
}

#footer .contentsLeft .footerLookStore header h2 {
    display: inline-block;
    position: relative;
    padding-left: 50px;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

#footer .contentsLeft .footerLookStore header h2::before {
    content: "";
    background: url(/html/user_data/assets/img/common/ICO_lookStoreFooter.png) no-repeat left top;
    width: 45px;
    height: 35px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#footer .contentsLeft .footerLookStore .contents {
    border: solid 1px #6B7783;
    border-radius: 0 0 5px 5px;
    padding: 10px 10px 20px;
}

#footer .contentsLeft .footerLookStore .contents p {
    margin-bottom: 20px;
}

#footer .contentsLeft .footerLookStore .contents p span {
    color: var(--DenkichiRed);
    font-weight: 700;
}


/*----------------------------
フッターナビゲーション
----------------------------*/

#footer .contentsRight>ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#footer .contentsRight>ul>li {
    flex: 0 1 calc(100%/3 - 10px);
    margin-bottom: 50px;
}

@media screen and (max-width:599px) {
    #footer .contentsRight>ul>li {
        flex: 0 1 100%;
        margin-bottom: 0;
    }
}
#footer .contentsRight dl a {
    width: 100%;
}

/*-----
アコーディオンタイトル設定 dt
-----*/
#footer .contentsRight dt {
    font-size: 16px;
    font-weight: 700;
    padding-left: 46px;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

@media screen and (max-width:599px) {
    #footer .contentsRight dt {
        cursor: pointer;
    }
}

#footer .contentsRight dt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    transform: translate(0, 0);
}

#footer .contentsRight li.shoppingGuide dt::before {
    background: url(/html/user_data/assets/img/common/ICO_shoppingGuideFooter.svg) no-repeat left top;
}

#footer .contentsRight li.member dt::before {
    background: url(/html/user_data/assets/img/common/ICO_memberFooter.svg) no-repeat left top;
}

#footer .contentsRight li.about dt::before {
    background: url(/html/user_data/assets/img/common/ICO_aboutFooter.svg) no-repeat left top;
}

#footer .contentsRight li.faq dt::before {
    background: url(/html/user_data/assets/img/common/ICO_faqFooter.svg) no-repeat left top;
}

#footer .contentsRight li.guide dt::before {
    background: url(/html/user_data/assets/img/common/ICO_guideFooter.svg) no-repeat left top;
}

#footer .contentsRight dt span {}

@media screen and (max-width:599px) {
    #footer .contentsRight dt span::before {
        content: "";
        width: 2px;
        height: 10px;
        background: #333;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(-4px, -50%);
        transition: .2s;
    }

    #footer .contentsRight .active span::before {
        transform: translate(-4px, -50%) rotate(90deg);
    }

    #footer .contentsRight dt span::after {
        content: "";
        width: 10px;
        height: 2px;
        background: #333;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        opacity: 1;
        transition: .2s;
    }

    #footer .contentsRight .active span::after {
        opacity: 0;
    }
}


/*-----
アコーディオンコンテンツ設定 dd
-----*/

@media screen and (max-width:599px) {
    #footer .contentsRight dd.footerNavAcMenu-content {
        display: none;
    }
}

#footer .contentsRight dd.footerNavAcMenu-content li {
    margin-bottom: 10px;
}

#footer .contentsRight li.contact {}


/*-----
お問い合わせボタン
-----*/
#footer .contentsRight li.contact .moreBT {
    margin-bottom: 10px;
}

@media screen and (max-width:599px) {
    #footer .contentsRight li.contact .moreBT a {
        margin: auto;
    }

    #footer .contentsRight li.contact {
        margin-bottom: 50px;
    }
}

/*-----
著作権表記
-----*/
#footer .copyright {
    background: var(--DenkichiRed);
    padding: 5px 10px;
}

#footer .copyright p {
    text-align: center;
    color: #fff;
}

@media screen and (max-width:599px) {
    #footer .copyright p {
        font-size: 14px;
    }
}

/* タイトル調整 */
#page_paygent_payment\/payment_credit h2{
    background: transparent;
    padding-left: 0;
}
#page_paygent_payment\/payment_credit h2::before{
    display: none;
}
#page_paygent_payment\/payment_credit .ec-borderedDefs{
    border-top: none;
}