/* ------------------------------------------------------------------
- 変数
------------------------------------------------------------------ */
:root{
    /*-------カラー---------*/
    --bgBase:#FBF9F4;
    --bgsecond:#F7F2EC;
    --accentColor:#83162E;
    --subHeadingColor:#F3ECE4;
    --fontColor:#333333;
    --lineCoror:rgba(0,0,0,0.15);
    --WitheColor:#fff;
    --GrayColor:#D9D9D9;
    --RedColor:#F60036;

    /*-------フォント---------*/
    --primaryFont:"Noto Sans JP", sans-serif;
    --secondryFont:"Zen Old Mincho", serif;

     /*-------フォントサイズ---------*/
     --headingfont:2rem;
     --mdFont:1.25rem;
     --textFont:1rem;

     /*-------ボーダー---------*/
     --primaryBorder:solid 1px var(--lineCoror);

}
@media screen and (max-width: 767px) {
    :root{
     /*-------フォントサイズ---------*/
     --headingfont:1.5rem;
     --mdFont:1.125rem;
     --textFont:1rem;
    }
}
/* ------------------------------------------------------------------
- Layout
------------------------------------------------------------------ */

html{
    scroll-padding-top: 70px;
}
body{
    font-family: var(--primaryFont);
    font-size: var(--textFont);
    line-height: 1.9;
    letter-spacing:0.04em; 
    font-feature-settings: "palt";
    color: var(--fontColor);
    background-color:var(--bgBase);
}
.ec-layoutRole{
  background-color:var(--bgBase);  
}
.l-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 70px;
    padding: 8px 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background-color: var(--bgBase);
}
.l-container{
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 40px;
}
.l-container.-min,.l-minContainer{
    position: relative;
    width: 100%;
    margin-inline: auto;
    max-width: 880px;
}
main{
    padding-top: 70px
}
.-pc{
    display: block;
}
.-tb{
    display: block;
}

.-sp{
    display: none;
}
@media screen and (max-width: 960px) {
    .-tb{
    display: none;
}
}
@media screen and (max-width: 767px) {
    .-pc{
        display: none;
    }

    .-sp{
        display: block;
    }
    .l-header{
        padding-inline: 15px;
    }
    .l-container{
        padding-inline: 15px;
    }
}

/* ------------------------------------------------------------------
- Common
------------------------------------------------------------------ */
.c-tabLink{
    display: flex;
    box-sizing: border-box;
    padding: 15px 4px;
    border: solid 1px var(--accentColor);
    color: var(--accentColor);
    font-family: var(--secondryFont);
    font-size: var(--mdFont);
    font-weight: 700;
    align-items: center;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .c-tabLink:hover{
        background-color: var(--accentColor);
        color: var(--bgBase);
        transition: ease 0.4s;
    }
}
@media screen and (max-width: 767px) {
    .c-tabLink{
        font-size: 16px;
    }
}
.c-heading{
    font-family: var(--secondryFont);
    font-size: var(--headingfont);
    font-weight: 700;
}
.c-subheading{
    display: block;
    width: 100%;
    padding: 10px;
    font-family: var(--secondryFont);
    font-size: var(--mdFont);
    font-weight: 700;
    background-color: var(--subHeadingColor);
}
/*-------ボタン---------*/
/*アンダーラインリンク*/
.c-normalLink{
    color: var(--accentColor);
    text-decoration: underline;
    transition: ease 0.4s;
    cursor: pointer;
    word-break: break-all;
}

/*ページリンク*/
.c-pageLink{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding:15px;
    font-family: var(--secondryFont);
    font-weight: 700;
    transition: ease 0.4s;
}
.c-pageLinkBtn.-min{
    max-width: 250px;
}
.c-pageLink::before,.c-pageLink::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
}
.c-pageLink::before{
    width: 100%;
    background-color: var(--lineCoror);
}
.c-pageLink::after{
    width: 15px;
    background-color: var(--accentColor);
    transition: ease 0.4s;
}
.c-pageLinkIcon{
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border: 0;
  border-top: solid 2px var(--accentColor);
  border-right: solid 2px var(--accentColor);
  transform: rotate(45deg);
}
.c-pageLinkExternalIcon{
    content: "";
    display: inline-block;
    width: 1.25em;
    aspect-ratio: 1 / 1;
    background: url(../img/common/icn_link.svg) center no-repeat;
    filter: invert(15%) sepia(36%) saturate(4452%) hue-rotate(326deg) brightness(94%) contrast(100%);
}
@media screen and (min-width: 768px) {
    .c-normalLink:hover,.ec-productRole .ec-productRole__category a:hover,.ec-zipInputHelp a:hover{
    color: var(--accentColor);
    opacity: 0.6;
}
    .c-pageLink:hover:after{
        width: 100%;
    }
    .c-pageLink:hover > .c-pageLinkIcon {
        transform: translateX(0.3em) rotate(45deg);
        transition: ease 0.4s;
    }
}
/*四角いボタン*/
.c-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-family: var(--secondryFont);
    font-weight: 700;
    transition: ease 0.4s;
    font-size: var(--textFont);
    line-height: 1.9;
    letter-spacing: 0.04em;
    font-feature-settings: "palt";
}
.c-btn::after{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border: 0;
  top: 50%;
  right: 15px;
  transform: translateY( -50%) rotate(45deg);
}
/*白いボタン*/
.c-btn.-white{
    border: solid 1px var(--accentColor);
    color: var(--accentColor);
    background-color: var(--WitheColor);
}
.c-btn.-white::after{
  border-top: solid 2px var(--accentColor);
  border-right: solid 2px var(--accentColor);
}
/*赤いボタン*/
.c-btn.-red{
    border: solid 1px var(--accentColor);
    color: var(--WitheColor);
    background-color: var(--accentColor);
}
.c-btn.-red::after{
  border-top: solid 2px var(--WitheColor);
  border-right: solid 2px var(--WitheColor);
}

/*グレーボタン*/
.c-btn.-gray{
    border: solid 1px var(--GrayColor);
    color: #000;
    background-color: var(--GrayColor);
}
.c-btn.-gray::after{
  display: none;
}
/*戻るボタン*/
.c-btn.-cancel{
    border: solid 1px var(--fontColor);
    color: var(--fontColor);
    background-color: transparent;
}
.c-btn.-cancel::after{
border-top: solid 2px var(--fontColor);
  border-right: solid 2px var(--fontColor);
  right: 0;
  left: 15px;
  transform: translateY( -50%) rotate(-135deg);
}
/*カート内変更ボタン*/
.c-btn.-change{
    border: solid 1px var(--fontColor);
    color: var(--fontColor);
    background-color: var(--WitheColor);
}
.c-btn.-delete{
    border: solid 1px var(--fontColor);
    color: var(--WitheColor);
    background-color: var(--fontColor);
}

/*ボタンレイアウト*/
.ec-off4Grid .c-btnFlexBox,.c-btnFlexBox,.c-btnFlexBoxShopping{
    display: flex;   
    flex-direction: row-reverse;
    width: 80%;
    margin-inline: auto;
    margin-bottom: 60px;
}
.c-btnFlexBoxShopping{
    width: 100%;
    padding-inline: 15px;
    margin-top: 32px;
}
.c-btnFlexBox .c-btn.-red,.c-btnFlexBoxShopping > #customer-ok{
    width: 60%;
    margin-bottom: 0;
}
.c-btnFlexBox .c-btn.-cancel,.c-btnFlexBoxShopping > #customer-cancel{
    width: 40%;
    margin-right: 60px;
}
.c-btnOnlybox .ec-off4Grid__cell{
    width: 100%;
    margin-inline: auto;
    max-width: 450px;
}
@media screen and (min-width: 768px) {
    /*白いボタン*/
    .c-btn.-white:hover{
    color: var(--WitheColor);
    background-color: var(--accentColor);
}
.c-btn.-white:hover::after{
  border-top: solid 2px var(--WitheColor);
  border-right: solid 2px var(--WitheColor);
}
/*赤いボタン*/
.c-btn.-red:hover{
    border: solid 1px var(--accentColor);
    color: var(--accentColor);
    background-color: var(--WitheColor);
}
.c-btn.-red:hover:after{
  border-top: solid 2px var(--accentColor);
  border-right: solid 2px var(--accentColor);
}
/*戻るボタン*/
.c-btn.-cancel:hover{
    border: solid 1px var(--fontColor);
    color: var(--WitheColor);
    background-color: var(--fontColor);
}
.c-btn.-cancel:hover::after{
border-top: solid 2px var(--WitheColor);
  border-right: solid 2px var(--WitheColor);
  right: 0;
  left: 15px;
  transform: translateY( -50%) rotate(-135deg);
}
/*カート内変更ボタン*/
.c-btn.-change:hover{
    border: solid 1px var(--fontColor);
    color: var(--WitheColor);
    background-color: var(--fontColor);
}
.c-btn.-delete:hover{
    border: solid 1px var(--fontColor);
    color: var(--fontColor);
    background-color: var(--WitheColor);
}

}
@media screen and (max-width: 767px) {
  .ec-off4Grid .c-btnFlexBox,.c-btnFlexBox,.c-btnFlexBoxShopping{
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;

    }
    .ec-off4Grid .c-btnFlexBox .c-btn.-red,.c-btnFlexBox .c-btn.-red,.c-btnFlexBoxShopping > #customer-ok{
    width: 100%;
    margin-bottom: 16px;
    max-width: none;
}
.c-btnFlexBox .c-btn.-cancel,.c-btnFlexBoxShopping > #customer-cancel{
    width: 70%;
    margin-inline: auto;
}
}
/*-------アコーディオン---------*/
.c-accordion{
    width: 100%;
    cursor: pointer;
}
.c-accordion__summary{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1em;
    width: 100%;
    padding:15px;
}
.c-summary__toggle{
    position: relative;
    width: 8px;
    aspect-ratio: 1/1;
}
.c-summary__toggleicon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accentColor);
    transition: all 0.3s ease;
}
.c-summary__toggleicon:first-child{
    width: 10px;
    height: 2px;
}
.c-summary__toggleicon:last-child{
    width: 2px;
    height: 10px;
    transform-origin: center center;
}
details[open] .c-summary__toggleicon:last-child,.ec-rectHeading.is_active .c-summary__toggleicon:last-child,.rotate90{
    transform:translate(-50%, -50%) rotate(90deg);
}
.c-accordion__contents{
        padding-inline: 15px;
}
/*-------送料---------*/
.c-postage__box{
    margin-bottom: 16px;
    padding: 15px;
    text-align: center;
    background-color: var(--accentColor);
    font-size: var(--mdFont);
    font-weight: bold;
    color: var(--WitheColor);
}
.c-postage__priceText{
    background-color: var(--WitheColor);
    color: var(--accentColor);
    margin-bottom: 5px;
}
.c-indent::before{
    content: "・";
}
.c-indent{
 text-indent: -1em;
 padding-left: 1em;
}

/*-------表---------*/
.p-detail__subAreaform table,.c-primary__table{
    width: 100%;
}
.p-detail__subAreaform tr,.c-primary__table tr{
    border-bottom: var(--primaryBorder);
    border-left: var(--primaryBorder);
    border-right: var(--primaryBorder);
    background-color: var(--WitheColor);
}
.p-detail__subAreaform tr:first-child,.c-primary__table tr:first-child{
    border-top:var(--primaryBorder)
}
.p-detail__subAreaform th,.c-primary__table th{
    width: 25%;
    min-width: 200px;
    padding: 15px 10px;
    border-right: var(--primaryBorder);
    font-weight: normal;
}
.p-detail__subAreaform td,.c-primary__table td{
    width: 75%;
    min-width: 200px;;
    padding: 15px 10px;
}
.c-primary__tableWbr{
    white-space: normal; 
    overflow-wrap: break-word;
    word-break: keep-all;
}
@media screen and (max-width: 767px) {
    .p-detail__subAreaform th,.c-primary__table th{
    min-width: 0;
}
}


/*-------モーダル---------*/
.ec-modal .ec-modal-wrap{
    padding: 30px;
}
.c-modal__closeToggle{
        position: relative;
        display: block;
        width: 40px;
        height: 40px;
}
.c-modal__closeToggleIcon{
        position: absolute;
        display: block;
        height: 2px;
        width: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--fontColor);
}
.c-modal__closeToggleIcon:nth-child(1){
    top: 19px;
    left: 10px;
    transition: 0.4s;
    transform: rotate(45deg);
    }
.c-modal__closeToggleIcon:nth-child(2){
    top: 19px;
    left: 10px;
    transform: rotate(-45deg);
    }
    @media screen and (max-width: 767px) {
    .ec-modal .ec-modal-wrap{
    padding: 30px 15px;
}
}
/* ------------------------------------------------------------------
- Utility
------------------------------------------------------------------ */


/* ------------------------------------------------------------------
- Project
------------------------------------------------------------------ */

 /* - header
------------------------------------------------------------------ */

.p-header__logo {
    max-width: 120px;
    height: auto;
}
.ec-headerNaviRole .p-header__right{
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    width: auto;
}
.ec-headerNaviRole:after{
    display: none;
}
.ec-headerNaviRole .ec-headerNaviRole__left{
    width: auto;
}
/*-------検索---------*/
.searchform{
    display: grid;
    grid-template-columns: 43% auto;
    padding-right: 32px;
    font-size: .75rem;
}
.ec-headerSearch .ec-headerSearch__keyword{
    background-color: var(--WitheColor);
}
.ec-headerSearch .ec-headerSearch__keyword{
    padding: 0.5em 16px 0.5em 16px;
    background-color: var(--WitheColor);
    border-radius: 0 50px 50px 0;
    border: var(--primaryBorder);
}
.ec-searchInput{
    display: grid;
    grid-template-columns: auto 20px;
}
.ec-headerSearch .ec-headerSearch__category,.ec-headerSearch .ec-headerSearch__keyword{
    float: none;
    width: 100%;
}
.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search{
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 50px 0 0 50px;
    background-color: var(--fontColor);
    color: var(--WitheColor);
}
.ec-headerSearch .ec-headerSearch__keyword input[type=search]{
    padding: 0;
    height: auto;
}
.ec-headerSearch .ec-headerSearch__category .ec-select select{
    padding: 0;
    max-width: 100%;
    height: auto;
    text-align: left;
    padding: 0.5em 16px 0.5em 16px;
}
.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search::before{
    display: none;
}
.ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search::after{
    position: absolute;
    top: 50%;
    right: 0.4em;
    transform: translateY(-50%);
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}
.ec-headerSearch .ec-headerSearch__keyword .ec-icon{
    display: flex;
    width: 20px;
    height: 20px;
}

.ec-headerNaviRole .ec-headerNaviRole__search{
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .searchform{
        grid-template-columns: auto;
        grid-template-rows: repeat(2, 1fr);
        padding: 8px 16px;
        font-size: 1rem;
        border-bottom: var(--primaryBorder);
    }
    .ec-headerSearch .ec-headerSearch__category .ec-select.ec-select_search{
        border-radius: 10px 10px 0 0;
        height: 100%;
        line-height: 1.15;
    }
    .ec-headerSearch .ec-headerSearch__keyword{
        border-radius: 0 0 10px 10px;
        line-height: 1.15;
    }
}

/*-------メニュー---------*/
.p-globalNav__list{
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
}
.p-globalNav__link{
    display: flex;
    align-items: center;
    gap: 8px;
}
.p-globalNav__link {
    display: flex;
    align-items: center;
    gap: 8px;
}
.p-globalNav__icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-globalNav__icon{
    width: clamp(1rem, 0.875rem + 0.56vw, 1.375rem);
}
.p-globalNav__icon img{
    filter: invert(13%) sepia(1%) saturate(950%) hue-rotate(316deg) brightness(104%) contrast(82%);
}
@media screen and (min-width: 768px) {
    .p-globalNav__item:hover .p-globalNav__text{
        color: var(--accentColor);
        transition: ease 0.4s;
    }
    .p-globalNav__link:hover .p-globalNav__icon img,.ec-cartNavi:hover .ec-cartNavi__icon::before{
        filter: invert(13%) sepia(64%) saturate(3083%) hue-rotate(329deg) brightness(97%) contrast(98%);
    }
}

/*-------カート---------*/
.ec-cartNavi{
    padding-top: 5px;
}
.ec-cartNavi .ec-cartNavi__icon{
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 0.43rem + 1.19vw, 1.25rem);
}
.ec-cartNavi .ec-cartNavi__icon:before{
    content: "";
    display: inline-block;
    width: 20px;
    aspect-ratio: 1 / 1.1;
    margin-right: 0.5em;
    background: url(../img/common/icn_cart.svg) center no-repeat;
    filter: invert(13%) sepia(1%) saturate(950%) hue-rotate(316deg) brightness(104%) contrast(82%);
}
.ec-cartNavi .ec-cartNavi__badge{
    background-color: var(--accentColor);
    font-family: var(--primaryFont);
    font-style: normal;
}
.ec-cartNaviNull .ec-cartNaviNull__message{
    font-family: var(--secondryFont);
    color: var(--fontColor);
    background-color: var(--GrayColor);
    padding-inline: 20px;
}
.ec-cartNaviIsset__action{
    display: flex;
    flex-direction: column;
}
.ec-cartRole .ec-cartRole__totalAmount{
    color: var(--accentColor);
}
.ec-cartNaviIsset .ec-cartNaviIsset__action .ec-blockBtn--action{
    margin-bottom: 16px;
}
.ec-cartNaviIsset{
    border: var(--primaryBorder);
}
.ec-cartNaviIsset::before{
    display: none;
}
@media only screen and (min-width: 768px) {
.ec-cartNavi{
    align-items: center;
    background-color: var(--WitheColor);
    border: var(--primaryBorder);
    height: 40px;
}
.ec-cartNavi .ec-cartNavi__price{
    padding-bottom: 0.3em;
}
.ec-cartNavi{
    padding: 0.5em 17px;
}
}

@media screen and (max-width: 767px) {
.ec-cartNaviIsset__action > .c-btn.-cancel{
    width: 70%;
    margin-inline: auto;
}
.ec-cartNaviIsset{
    background-color: var(--WitheColor);
    border-right:none ;
    border-left: none;
}
}



/*スマホ*/
@media screen and (max-width: 767px) {
    .p-globalNav__list{
        padding-right: 0;
    }
    /*-------ハンバーガー---------*/
    .c-drawer{
        position: relative;
        z-index: 9999;
        margin-left: 8px;
        border-radius: 0;
    }
    .navbar__toggle,.navbar__closeToggle{
        position: relative;
        display: block;
        width: 40px;
        height: 40px;
    }
    .navbar__toggleIcon,.navbar__closeToggleIcon{
        position: absolute;
        display: block;
        height: 2px;
        width: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--fontColor);
    }
    .navbar__toggleIcon:nth-child(1){
    top: 13px;
    }
    .navbar__toggleIcon:nth-child(2){
        top: 20px;
    }
    .navbar__toggleIcon:nth-child(3){
        top: 27px;
    }
.p-header__overlay{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    background: transparent;
    transform: translateX(0);
    visibility: hidden;
    transition: all 0.6s;
}
.drawerOpen{
    position: fixed;
}
.drawerOpen .p-header__overlay{
    display: block;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
    transition: all 0.6s;
    z-index: 999;
}
.c-drawerClose{
    display: none;
    cursor: pointer;
    border-radius: 50%;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    background: white;
    position: fixed;
    top: 10px;
    right: 74%;
    z-index: 1000;
    transition: all 0.3s;
}
.navbar__closeToggleIcon:nth-child(1){
    top: 19px;
    left: 10px;
    transition: 0.4s;
    transform: rotate(45deg);
    }
    .navbar__closeToggleIcon:nth-child(2){
    top: 19px;
    left: 10px;
    transform: rotate(-45deg);
    }
.c-drawerClose.is_active {
    display: block;
    transition: all 0.3s;
}
.p-header__drawer{
    overflow-y: scroll;
    background: var(--bgBase);
    width: 70%;
    height: 100svh;
    position: fixed;
    top: 0;
    right: -130%;
    z-index: 1;
    transition: z-index 0ms 1ms;
    transition: all 0.5s;
}
.p-header__drawer.is_active{
    display: block;
    transition: all 0.5s;
    right: 0;
    z-index: 100000;
}
/*------ハンバーガー中身---------*/
.p-drawer__logo{
    padding:8px 16px;
    border-bottom: var(--primaryBorder);
}
.p-drawer__logo img{
    max-width: 120px;
}
.p-drawer__searchForm{
    grid-template-columns: auto;
    grid-template-rows: repeat(2, 1fr);
    padding:8px 16px;
    border-bottom: var(--primaryBorder);
    font-size: 1rem;
}
.p-search__selectItem{
    border-radius: 10px 10px 0 0;
    height: 100%;
}
.p-search__input{
    border-radius: 0 0 10px 10px;
}
.p-drawerCategory__title,.ec-itemNav__nav li{
    border-bottom: var(--primaryBorder);
    background-color: var(--bgBase);
}
.ec-itemNav__nav li:last-child{
    border-bottom: none;
}
.p-drawerCategory__title,.ec-itemNav__nav li a{
    padding: 1em 20px;
}
.ec-itemNav__nav li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--textFont);
    color: var(--fontColor);
    background-color: var(--bgBase);
    font-weight: normal;
    line-height: 1.9;
    border-bottom: none;
}
.ec-itemNav__nav li ul li a{
    color: var(--fontColor);
    background-color: var(--bgsecond);
    border-top: var(--primaryBorder);
    border-bottom: none;
    font-size: var(--textFont);
    font-weight: normal;
    padding-left: 30px;
}
.ec-itemNav__nav > li:hover > a{
    background-color: var(--accentColor);
    color: var(--WitheColor);
}
.ec-itemNav__nav > li:hover > a > .c-summary__toggle > .c-summary__toggleicon{
    background-color: var(--WitheColor);
}
.ec-itemNav__nav > li:hover li:hover > a{
    background-color: var(--bgsecond);
}
.p-drawerCategory__title{
    font-weight: 700;
}
.p-drawer__navLink{
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 1em 20px;
    border-bottom: solid 1px var(--bgBase);
    background-color: var(--accentColor);
    color: var(--bgBase);
}
.ec-headerLink__icon{
    display: grid;
     place-content: center;
}
.ec-headerLink__icon img{
    display: inline-block;
    width: 1.25em;
    aspect-ratio: 1 / 1.1;
    filter: invert(100%) sepia(96%) saturate(253%) hue-rotate(297deg) brightness(104%) contrast(97%);
    color-interpolation-filters: sRGB;
    isolation: isolate;
}
.p-drawer__navItem:last-child .p-drawer__navLink{
    border-bottom: none;
}
.p-drawer__navLink.-cart::before{
    background: url(../img/common/icn_cart.svg) center no-repeat;
}
.p-drawer__navLink.-signUp::before{
    background: url(../img/common/icn_user.svg) center no-repeat;
}
.p-drawer__navLink.-login::before{
    background: url(../img/common/icn_login.svg) center no-repeat;
}
.p-drawer__navLink.-home::before{
    background: url(../img/common/icn_home.svg) center no-repeat;
}

}

/* ------------------------------------------------------------------
- お問い合わせ
------------------------------------------------------------------ */
 .p-contact{
    padding: 100px 40px;
    background-color: var(--bgsecond);
 }
.p-contact__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.p-contact__item{
    padding: 30px;
    background-color: var(--WitheColor);
}
.p-contact__title{
    margin-bottom: 24px;
    font-family: var(--secondryFont);
    font-size: clamp(1rem, 0.43rem + 1.19vw, 1.5rem);
    line-height: 1.4;
    font-weight: 700;
    text-align: center;
}
.p-contact__btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 500px;
    gap: 0.3em;
    margin: 0 auto 16px;
    padding: 10px 30px;
    background-color: var(--accentColor);
    color: var(--WitheColor);
    border: solid 2px var(--accentColor);
    font-size: clamp(1rem, 0.43rem + 1.19vw, 1.5rem);
    font-weight: 700;
    transition: ease 0.4s;
    min-height: 70px;
}
.p-contact__btn.-phone::before{
    content: "";
    display: inline-block;
    width: 1.25em;
    margin-top: 4px;
    height: 0.95em;
    mask-image: url(../img/common/icn_phone.svg);
    -webkit-mask-image: url(../img/common/icn_phone.svg);
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    background-color: var(--WitheColor);
}
.p-contact__btn.-form{
  word-break: keep-all;
  overflow-wrap: break-word;
      font-size: clamp(1rem, 0.43rem + 1.19vw, 1.25rem);
}
.p-contact__btn.-form::after{
  position: absolute;
  content: '';
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 0;
  top: 50%;
  right: 15px;
  border-top: solid 2px var(--WitheColor);
  border-right: solid 2px var(--WitheColor);
  transform: translateY( -50%) rotate(45deg);
}
.p-contact__text{
    text-align: center;
}
.p-contact__textBr{
    display: none;
}
@media screen and (min-width: 768px) {
    .p-contact__btn:hover{
        background-color: var(--WitheColor);
        color: var(--accentColor);
    }
    .p-contact__btn:hover::before{
        background-color: var(--accentColor);
    }
    .p-contact__btn.-form:hover::after{
          border-top: solid 2px var(--accentColor);
          border-right: solid 2px var(--accentColor);
    }
}
@media screen and (max-width: 1349px) {
    .p-contact__textBr{
        display: block;
    }
}
@media screen and (max-width: 1079px) {
    .p-contact__list{
    grid-template-columns: auto;
    }
    .p-contact__title,.p-contact__btn,.p-contact__btn.-form{
        font-size: var(--headingfont);
    }
}
@media screen and (max-width: 767px) {
    .p-contact{
    padding: 60px 15px;
    }
}
/* ------------------------------------------------------------------
- フッター
------------------------------------------------------------------ */
.p-footer__container{
    position: relative;
    width: 100%;
    padding: 50px 40px;
    background-color:var(--accentColor)
}
.p-footer__pageTop{
    position: absolute;
    top: -30px;
    right: 30px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background-color: var(--accentColor);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-size: 14px;
    transition: ease 0.4s;
}
.p-pageTop__arrow{
    height: 8px;
    width: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(50%) rotate(-45deg);
}
.p-footerMain__container{
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    gap: 50px;
    color: var(--WitheColor);
}
.p-footerMain__title{
    margin-bottom: 24px;
    font-family: var(--secondryFont);
    font-size: var(--mdFont);
    margin-top: calc((1em - 1lh) / 2);
}
.p-footerCategory__list,.p-footerMain__navList{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(16em,1fr));
    gap: 20px;
    padding-left: 15px;
}
.p-footerMain__nav,.p-footerMain__snsBox{
    padding-top: 50px;
    border-top: 1px solid var(--WitheColor);
}
.p-footerMain__copyright{
    text-align: center;
    color: var(--WitheColor);
}
.ec-blockTopBtn{
    opacity: 1;
    line-height: 1.9;
}
.p-footerCategory__item a,.p-footerMain__navLink{
    transition: ease 0.4s;
}
.p-footerMain__snsList{
    display: flex;
    gap: 20px;
    padding-left: 15px;
    margin-top: -32px; /* なぜか消えない空間があったため消すための処理です。不必要になりましたら消去お願いいたします。 */
}
.p-footerMain__sns.-insta img{
    width: 30px;
    aspect-ratio: 1/1;
}
.p-footerMain__sns.-youtube img{
    width: 40px;
    aspect-ratio: 1/0.7;
}
@media screen and (min-width: 768px) {
    .p-footerMain__sns:hover img,.p-footerCategory__item a:hover,.p-footerMain__navLink:hover{
        opacity: 0.7;
    }
}
@media screen and (max-width: 767px) {
   .p-footer__container{
    padding: 30px 15px;
   }
   .p-footerMain__container{
    gap: 30px;
    margin-bottom: 30px;
   }
   .p-footer__pageTop{
    right: 15px;
   }
   .p-footerMain__title{
    margin-bottom: 16px;
   }
   .p-footerCategory__list{
    grid-template-columns: repeat(auto-fit, minmax(8em, 1fr));
    row-gap: 15px;
}
.p-footerMain__nav, .p-footerMain__snsBox{
    padding-top: 30px;
}
.p-footerMain__navList{
    grid-template-columns: repeat(2,1fr);
    row-gap: 15px;
}
.p-footerMain__storeBox{
    max-width: 160px;
}
}
/* ------------------------------------------------------------------
- 下層ページ
------------------------------------------------------------------ */

.c-hero{
    display: block;
    font-family: var(--secondryFont);
    font-size: var(--headingfont);
    color: var(--WitheColor);
    background-color: var(--accentColor);
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.4;
    padding-block: 0.5em;
}
@media screen and (max-width: 767px) {
    .c-hero{
        margin-bottom: 40px;
    }
}
/* ------------------------------------------------------------------
- 入力フォーム
------------------------------------------------------------------ */
.ec-off1Grid .ec-off1Grid__cell{
    width: 100%;
    margin: 0;
}
.ec-para-nomal{
    margin-bottom: 32px;
    font-size: var(--textFont);
}
.ec-borderedDefs{
    border-top: none;
    border-bottom: 0;
    margin-bottom: 0px;
}
.ec-borderedDefs dl{
    display: flex;
    flex-direction: column;
    border-bottom: none;
    padding: 0;
}
.ec-borderedDefs dt{
    width: 100%;
    padding: 10px;
    font-family: var(--secondryFont);
    font-size: var(--textFont);
    background-color: var(--subHeadingColor);
}
.ec-borderedDefs dd{
    width: 100%;
    padding: 24px 15px 32px;
}
.ec-borderedDefs .ec-borderedDefs{
    margin-bottom: 0;
}
.ec-required{
    padding: 5px 15px;
    font-family: var(--secondryFont);
    font-size: 14px;
    background-color: var(--accentColor);
    color: var(--WitheColor);
}
 .ec-registerRole__actions{
    padding-top: 0;
    margin-block: 40px 100px;
}

.ec-off4Grid .c-btn.-red{
    max-width: 450px;
    margin-inline: auto;
}
.ec-registerRole .ec-blockBtn--action,.ec-contactConfirmRole .ec-blockBtn--action{
    margin-bottom: 0;
}

.ec-radio input{
    max-width: 300px;
}
.ec-zipInput{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
}
.p-shopping__zipInput input{
    margin-bottom: 0;
}
.ec-zipInput span{
    margin-left: 0;
    padding-left: 0;
}
.p-postal-code{
    margin-bottom: 0;
}
.c-form__address input{
    margin-bottom: 0;
}
.ec-zipInputHelp{
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.ec-zipInputHelp .ec-zipInputHelp__icon{
    margin-top: 0;
    top: 0;
    background-color: transparent;
}
.c-form__addressWrap{
    display: flex;
}
.c-form__addressSerch{
  word-break: keep-all;
  overflow-wrap: break-word;
}
.ec-zipInputHelp span{
    color: var(--accentColor);
    text-decoration: underline;
}
.ec-zipInputHelp .ec-zipInputHelp__icon .ec-icon img {
    filter: invert(14%) sepia(48%) saturate(3823%) hue-rotate(328deg) brightness(93%) contrast(98%);
}
.c-form__address .ec-errorMessage{
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .ec-para-nomal{
        margin-bottom: 24px;
    }

    .ec-registerRole .ec-registerRole__actions{
        margin-block: 40px 80px;
}

.ec-zipInput{
    flex-direction: column;
    align-items: flex-start;
}
.c-form__address .ec-errorMessage{
    margin-left: 25px;
}
#entry_address_pref{
    margin-bottom: 8px;
}
}
@media screen and (max-width: 370px) {
    .c-form__addressWrap{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .ec-zipInputHelp{
        margin-left: 20px;
    }
    .ec-zipInput{
        gap: 8px;
    }
}
/* ------------------------------------------------------------------
- カートモーダル
------------------------------------------------------------------ */
@media screen and (max-width: 767px) {
body.drawerCartOpen{
    overflow: hidden;
}
.ec-cartNaviIsset{
    top: 70px;
}
.ec-cartNaviIsset.is-active{
    display: block;
    overflow: auto;
    height: calc(100svh - 70px);
}
}
/* ------------------------------------------------------------------
- デフォルト打ち消し
------------------------------------------------------------------ */

.ec-layoutRole .ec-layoutRole__contents{
    max-width: 100%;
}

.ec-404Role{
    background-color: var(--bgBase);
}
.ec-reportHeading{
    border-top: none;
}
.ec-404Role .ec-404Role__title{
    font-family: var(--secondryFont);
}
/* ------------------------------------------------------------------
- カテゴリ消去
------------------------------------------------------------------ */
@media screen and (max-width: 767px) {
#categoryNavId-200,#categoryNavId-260,#categoryNavId-203,#categoryNavId-167,#categoryNavId-235,#categoryNavId-204,#categoryNavId-233,#categoryNavId-208,#categoryNavId-207,#categoryNavId-158,#categoryNavId-211,#categoryNavId-220,#categoryNavId-219,#categoryNavId-254,#categoryNavId-256,#categoryNavId-245,#categoryNavId-161{
    display: none;
}
}
#footerCategoryNavId-200,#footerCategoryNavId-260,#footerCategoryNavId-203,#footerCategoryNavId-167,#footerCategoryNavId-235,#footerCategoryNavId-204,#footerCategoryNavId-233,#footerCategoryNavId-208,#footerCategoryNavId-207,#footerCategoryNavId-158,#footerCategoryNavId-211,#footerCategoryNavId-220,#footerCategoryNavId-219,#footerCategoryNavId-254,#footerCategoryNavId-256,#footerCategoryNavId-245,#footerCategoryNavId-161{
    display: none;
}