@charset "UTF-8";



/****************************************************/
/* variable                                         */
/****************************************************/
:root {
    --white  : #FFFFFF;
    --green  : #003314;
    --gray   : #E0E0E0;
    --gray2  : #9b948f;
    --brown  : #8b6239;
    --red    : #c00000;
    --black  : #000000;

    --font-family : "游ゴシック", YuGothic, sans-serif;
    --font-mincho : "游明朝", YuMincho, serif;
    --font-shippori : "Shippori Mincho", serif;

    --font-weight__regular  : 400;
    --font-weight__medium   : 500;
    --font-weight__semibold : 600; 
    --font-weight__bold     : 700; 
    --font-weight__black    : 900; 

    --width-base : calc(100% - 50px);
    --width-content1 : 1440px;
    --width-content2 : 1000px;
    --width-content3 :  800px;
    --width-content4 :  700px;
    

    --width1 : min(var(--width-base), var(--width-content1));
    --width2 : min(var(--width-base), var(--width-content2));
    --width3 : min(var(--width-base), var(--width-content3));
    --width4 : min(var(--width-base), var(--width-content4));
    --full-width1 : min(100% , var(--width-content1));
    --full-width2 : min(100% , var(--width-content2));
    --full-width3 : min(100% , var(--width-content3));
    --full-width4 : min(100% , var(--width-content4));

    --height__adminbar : 32px;
    --height__header   : 100px;

    --zindex__hamburger: 1000;
    --zindex__header   : 900;

    --shadow: 0px 3px 6px #00000029;

}

@media (max-width: 1024px) {
    :root{
        --height__header: 50px;
    }
}

@media (max-width: 782px) {
    :root {
        --height__adminbar : 46px;
    }
}

/****************************************************/
/* base                                             */
/****************************************************/
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family:  var(--font-family);
    font-weight: var(--font-weight__medium);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.42;
    text-size-adjust: 100%;
    letter-spacing: 0.12em;
}

* {
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
}
a:hover {
    opacity: 0.5;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

input[type="submit"] {
    cursor: pointer;
}
input[type="submit"]:hover {
    opacity: 0.5;
}

.ec-blockBtn--cancel {
    display: flex;
    width: 100%;
    max-width: 300px;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-family: var(--font-mincho);
    font-size: 20px;
    font-weight: var(--font-weight__semibold);
    background-color: var(--black);
    color: var(--white);
    margin: 0 auto;
}

/****************************************************/
/* standard-inner                                  */
/****************************************************/
.standard-inner1 {
    width: var(--width1);
    margin: 0 auto;
}

.fullwidth.standard-inner1 {
    width: var(--full-width1);
}

.standard-inner2 {
    width: var(--width2);
    margin: 0 auto;
}

.fullwidth.standard-inner2 {
    width: var(--full-width2);
}

.standard-inner3 {
    width: var(--width3);
    margin: 0 auto;
}

.fullwidth.standard-inner3 {
    width: var(--full-width3);
}

.standard-inner4 {
    width: var(--width4);
    margin: 0 auto;
}

.fullwidth.standard-inner4 {
    width: var(--full-width4);
}

.header__dummy {
    height: var(--height__header);
}


/****************************************************/
/* header                                           */
/****************************************************/
.ec-layoutRole__header {
    position: fixed;
    width: 100%;
    height: var(--height__header);
    background-color: var(--white);
    z-index: var(--zindex__header);
}

.ec-layoutRole__header-inner {
    display: flex;
    justify-content: center;
    width: 100%;
    width: var(--width-content2);
    margin: 0 auto;
    height: 100%;
    align-items: center;
}

.ec-headerRole {
    margin-right: auto;
    width: 215px;
}

.ec-itemNav__nav {
    display: flex;
    justify-content: center;
    font-family: var(--font-mincho);
    column-gap: 30px;
    position: relative;
}

.ec-itemNav__nav > li {
    width: 180px;
}

.ec-itemNav__nav > li > a {
    font-size: 19px;
    font-weight: var(--font-weight__semibold);
    padding-left: 16px;
    padding-right: 33px;
    position: relative;
}

.ec-itemNav__nav > li > a::after {
    content: "";
    background-image: url(../img/arrow_down.svg);
    display: block;
    position: absolute;
    width: 10px;
    height: 6px;
    background-repeat: no-repeat;
    top: 7px;
    right: 0;
}

.ec-itemNav__nav > li > ul {
    position: absolute;
    width: 180px;
    background-color: var(--white);
    font-size: 17px;
    letter-spacing: 0.1em;
    padding-left: 16px;
    overflow: hidden;
    height: 0;
    transition: height 0.5s ease;
}

.ec-itemNav__nav > li.is-open > ul {
    height: 270px;
}

.ec-itemNav__nav > li > ul a {
    position: relative;
    padding: 3px 0;
    display: block;
}

.ec-itemNav__nav > li > ul > li:first-child {
    padding-top: 16px;
}

.ec-headerNaviRole {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    column-gap: 25px;
}

.ec-headerRole__cart {
    width: 30px;
}

.ec-headerNaviRole__nav {
    width: 18.7px;
}

.ec-categoryNavi__Btn {
    position: relative;
    width: 17px;
    height: 12px;
    cursor: pointer;
    margin-top: 10px;
    z-index: 100;
    display: none;
}

.ec-categoryNavi__Btn span {
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--green);
    transition: all 0.5s ease;
}

.ec-categoryNavi__Btn span::before, 
.ec-categoryNavi__Btn span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--green);
    transition: all 0.5s ease;
}

.ec-categoryNavi__Btn span::before {
    top: -5px;
}

.ec-categoryNavi__Btn span::after {
    top: 5px;
}

.ec-categoryNavi__open .ec-categoryNavi__Btn span {
    height: 0;
}

.ec-categoryNavi__open .ec-categoryNavi__Btn span::before,
.ec-categoryNavi__open .ec-categoryNavi__Btn span::after {
    top: 0;
}

.ec-categoryNavi__open .ec-categoryNavi__Btn span::before {
    transform: rotate(45deg);
}
.ec-categoryNavi__open .ec-categoryNavi__Btn span::after {
    transform: rotate(-45deg);
}


@media (max-width: 1024px) {
    .ec-headerRole {
        width: 125px;
    }
    
    .ec-layoutRole__header-inner {
        width: calc(100% - 40px);
    }
    
    .ec-categoryNaviRole {
        position: fixed;
        width: 100%;
        background-color: var(--white);
        height: 0;
        top: 0;
        overflow: hidden;
        transition: all 0.5s ease;
    }
    
    .ec-categoryNavi__open .ec-categoryNaviRole {
        height: 100vh;
    }

    .ec-itemNav__nav > li {
        width: 50%;
        padding-left: 20px;
    }
    
    .ec-itemNav__nav {
        column-gap: 0;
        padding-top: 85px;
    }
    
    .ec-itemNav__nav > li > a {
        padding: 0;
        font-size: 16px;
        padding-bottom: 5px;
        display: inline-block;
        border-bottom: solid 1px;
        color: var(--green);
        pointer-events: none;
    }
    
    .ec-itemNav__nav > li > a::after {
        content: none;
    }
    
    .ec-itemNav__nav > li > ul {
        height: auto;
        padding-left: 0;
    }
    
    .ec-itemNav__nav > li > ul > li:first-child {
        padding-top: 14px;
    }
    
    .ec-itemNav__nav > li > ul a {
        font-size: 16px;
        line-height: 29px;
    }
    
    .ec-headerRole__cart {
        width: 17px;
    }
    
    .ec-headerNaviRole__nav {
        width: 10px;
    }
    
    .ec-headerNaviRole {
        column-gap: 13px;
    }

    .ec-categoryNavi__Btn {
        display: block;
    }
}

/****************************************************/
/* footer                                           */
/****************************************************/
.footer-box {
    background-image: url(../img/footer-box__bg.jpg);
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 100px;
    letter-spacing: normal;
}

.footer-box__logo {
    width: 248px;
    padding-bottom: 10px;
}

.footer-box__name {
    font-size: 13px;
    font-family: var(--font-mincho);
    padding-bottom: 25px;
}

.footer-box__address {
    font-size: 13px;
    font-family: var(--font-mincho);
    line-height: 1.4615384615;
}

.footer-box__tel {
    font-size: 13px;
    font-family: var(--font-mincho);
    line-height: 1.4615384615;
}

.footer-box__inner {
    width: calc(100% - 50px);
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: var(--white);
}

.footer-box a {
    color: var(--white);
}

.footer-box__right {
    display: flex;
    -moz-column-gap: 50px;
        column-gap: 50px;
}

.footer__navi-item {
    padding-bottom: 20px;
}

.footer__navi-link {
    font-family: var(--font-shippori);
    font-size: 16px;
    line-height: 1.25;
}

.footer__store-link {
    display: flex;
    width: 165px;
    height: 27px;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--white);
    font-size: 18px;
    font-family: var(--font-shippori);
}

.footer__instagram-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    font-weight: var(--font-weight__bold);
    font-family: var(--font-shippori);
}

.footer__instagram-link img {
    width: 19px;
    margin-right: 10px;
}

.footer__store {
    padding-bottom: 20px;
}

.footer-box__col2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 200px;
    font-family: var(--font-mincho);
}

.footer-box__row1 {
    width: 100%;
}

.footer-box__row2 {
    margin-top: auto;
    font-size: 16px;
    line-height: 1.2857142857;
}

.footer__tokusho {
    padding-bottom: 10px;
}

.footer-box__sp {
    display: none;
    font-size: 16px;
    font-family: var(--font-mincho);
    line-height: 28px;
    padding: 28px 0;
}

.footer-sp__privacy {
    padding-bottom: 28px;
}

@media (max-width: 1024px) {
    .footer-banner__img {
        height: 150px;
        object-fit: cover;
    }
    .top-mainview::before {
        content: "";
        display: block;
        position: absolute;
        width: calc(100% - 90px);
        height: 100%;
        top: 0;
        background-color: var(--gray);
        z-index: -1;
    }
    .footer-contact {
        padding: 70px 0;
    }
    .footer-contact__link {
        width: 100%;
        max-width: 250px;
        height: 60px;
        font-size: 18px;
    }
    .footer-box__inner {
        display: block;
        padding: 0 20px;
    }
    .footer-box {
        padding-top: 20px;
        padding-bottom: 35px;
    }
    .footer-box__logo {
        width: 200px;
    }
    .footer-box__name {
        display: none;
    }
    .footer-box__address {
        display: none;
    }
    .footer-box__tel {
        display: none;
    }
    .footer__navi-item {
        font-size: 16px;
    }
    .footer-box__right {
        padding-top: 40px;
    }
    .footer-box__row2 {
        display: none;
    }
    .footer__instagram-link {
        font-size: 16px;
    }
    .footer__store-link {
        font-size: 16px;
    }

    .footer-box__sp {
        display: block;
    }
}


/****************************************************/
/* ec-pageHeader                                    */
/****************************************************/
.ec-pageHeader h2 {
    text-align: center;
    font-size: 33px;
    font-weight: var(--font-weight__bold);
    font-family: var(--font-shippori);
    color: var(--green);
    padding-top: 150px;
    padding-bottom: 60px;
}


/****************************************************/
/* categoryNav                                      */
/****************************************************/
.ec-categoryNavRole {
    padding-bottom: 100px;
}

.ec-categoryNavRole__title {
    font-family: var(--font-shippori);
    font-size: 33px;
    font-weight: var(--font-weight__bold);
    line-height: 1.2;
    padding-bottom: 20px;
    letter-spacing: normal;
    color: var(--green);
}

.ec-categoryNav__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ec-categoryNav__link {
    display: block;
    position: relative;
    overflow: hidden;
}

.ec-categoryNav__link:hover {
    opacity: 1;
}

.ec-categoryNav__link::before {
    content: "";
    width: 30px;
    height: 1px;
    background-color: var(--white);
    display: block;
    position: absolute;
    right: 17px;
    bottom: 17px;
    z-index: 999;
}

.ec-categoryNav__link::after {
    content: "";
    width: 11px;
    height: 1px;
    background-color: var(--white);
    display: block;
    position: absolute;
    right: 16px;
    bottom: 20px;
    transform: rotate(38deg);
    z-index: 999;
}

.ec-categoryNav__figure {
    width: 100%;
    aspect-ratio: 1/1;
    transition: all 0.5s ease;
}

.ec-categoryNav__item.category .ec-categoryNav__link:hover .ec-categoryNav__figure {
    transform: scale(1.2);
}

.ec-categoryNav__item.designer .ec-categoryNav__img {
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.ec-categoryNav__item.designer .ec-categoryNav__link:hover .ec-categoryNav__img {
    filter: grayscale(0%);
}

.ec-categoryNav__name {
    display: flex;
    font-family: var(--font-mincho);
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.ec-categoryNav__name2 {
    display: block;
    font-family: var(--font-mincho);
    font-size: 22px;
    letter-spacing: 0.1em;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ec-categoryNav__name3 {
    font-size: 22px;
    font-family: var(--font-mincho);
    font-weight: var(--font-weight__semibold);
}


/****************************************************/
/* aboutRole                                        */
/****************************************************/
.ec-aboutRole__figure {
    width: 123px;
    margin: 0 auto;
    padding-top: 110px;
    padding-bottom: 24px;
}

.ec-aboutRole__title {
    text-align: center;
    font-family: var(--font-mincho);
    font-weight: var(--font-weight__medium);
    font-size: 26px;
    letter-spacing: normal;
    line-height: calc(32 / 26);
    padding-bottom: 25px;
}

.ec-aboutRole__text {
    font-size: 18px;
    line-height: calc(32 / 18);
    text-align: center;
    font-family: var(--font-mincho);
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) { 
    .ec-aboutRole__figure {
        width: 60px;
        padding-top: 50px;
    }
    
    .ec-aboutRole__title {
        font-size: 16px;
        line-height: calc(20 / 16);
    }
    
    .ec-aboutRole__text {
        font-size: 16px;
    }
    
    .ec-categoryNavRole {
        padding-bottom: 70px;
    }
    
    .ec-categoryNavRole__title {
        font-size: 22px;
        padding-bottom: 12px;
    }
    
    .ec-categoryNav__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .ec-categoryNav__name {
        font-size: 16px;
    }
    
    .ec-categoryNav__link {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .ec-categoryNav__name2 {
        order: 2;
        font-size: 16px;
        padding-top: 5px;
        padding-bottom: 21px;
    }
    
    .ec-categoryNav__name3 {
        font-size: 18px;
        width: 100%;
        padding-top: 12px;
    }
    
}


/****************************************************/
/* product_list                                     */
/****************************************************/
.ec-categoryListRole {
    padding-top: 100px;
}

.ec-categoryListRole__title {
    font-size: 33px;
    font-weight: var(--font-weight__bold);
    font-family: var(--font-shippori);
    line-height: calc(38/33);
    padding-bottom: 38px;
}

.ec-categoryList__list {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ec-categoryList__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 30px;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-mincho);
    font-weight: var(--font-weight__semibold);
    font-size: 17px;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .ec-categoryListRole {
        padding-top: 45px;
    }
    
    .ec-categoryListRole__title {
        font-size: 22px;
        padding-bottom: 16px;
    }
    
    .ec-categoryList__list {
        column-gap: 14px;
        row-gap: 12px;
    }
    
    .ec-categoryList__link {
        font-size: 16px;
        width: 160px;
        height: 25px;
    }
}


.ec-shelfGrid {
    padding-top: 100px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ec-pager {
    display: flex;
    justify-content: center;
    column-gap: 32px;
    font-family: var(--font-mincho);
    font-weight: var(--font-weight__semibold);
    font-size: 18px;
    padding-bottom: 100px;
}

.ec-pager__item--active {
    border-bottom: solid 2px;
}

.ec-pager__item.next {
    transform: rotate(-90deg);
    font-size: 10px;
}

.ec-pager__item.prev {
    transform: rotate(90deg);
    font-size: 10px;
}


@media (max-width: 1024px) {
    .ec-shelfGrid {
        padding-top: 60px;
        padding-bottom: 50px;
        grid-template-columns: repeat(2, 1fr);
    }
    .ec-pager {
        padding-bottom: 50px;
    }
}


/****************************************************/
/* product_detail                                   */
/****************************************************/
.item_visual {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.item_nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.item_nav .slideThumb {
    width: 100%;
    max-width: 150px;
}

.ec-productRole__profile {
    display: grid;
    padding-top: 90px;
    grid-template-columns: 1fr 400px;
    column-gap: 40px;
    row-gap: 100px;
    padding-bottom: 80px;
}

.ec-productRole__title {
    font-size: 22px;
    line-height: 26px;
    font-weight: var(--font-weight__bold);
    padding-bottom: 40px;
}

.ec-price {
    font-size: 22px;
    line-height: 26px;
    font-weight: var(--font-weight__bold);
    padding-bottom: 40px;
}

.ec-numberInput {
    padding-bottom: 45px;
}

.ec-numberInput span {
    display: block;
    font-size: 16px;
    font-weight: var(--font-weight__bold);
    padding-bottom: 5px;
}

.ec-numberInput input {
    width: 115px;
    height: 40px;
    font-size: 16px;
    font-weight: var(--font-weight__bold);
    padding: 0 15px;
}

.ec-productRole__btn button {
    display: flex;
    width: 100%;
    max-width: 300px;
    height: 50px;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    border: none;
    color: var(--white);
    font-family: var(--font-mincho);
    font-size: 16px;
    font-weight: var(--font-weight__semibold);
    letter-spacing: 0.1em;
    cursor: pointer;
}

.ec-viewdata__row {
    display: grid;
    grid-template-columns: 1fr 240px;
    border-bottom: solid 1px var(--black);
    font-size: 16px;
    line-height: 26px;
    letter-spacing: normal;
    padding: 23px 5px 19px;
}

.ec-viewdata__label {
    font-weight: var(--font-weight__bold);
}

.ec-productRole__bottom {
    grid-column: 1/3;
    font-size: 17px;
    line-height: 30px;
}

.ec-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
}
.ec-modal.small {
    width: 30%;
}

.ec-modal.full {
    width: 100%;
    height: 100%;
}

.ec-modal .ec-modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}

.ec-modal .ec-modal-wrap {
    position: relative;
    border-radius: 2px;
    border: 1px solid #333;
    background-color: #fff;
    width: 90%;
    margin: 20px;
    padding: 40px 5px;
}

@media (min-width: 768px) {
    .ec-modal .ec-modal-wrap {
        padding: 40px 10px;
        width: 50%;
        margin: 20px auto;
    }
}

.ec-modal .ec-modal-close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 20px;
    height: 30px;
    width: 20px;
}

.ec-modal .ec-modal-close:hover {
    color: #4b5361;
}

.ec-modal .ec-modal-box {
    text-align: center;
}

.ec-modal .text-center {
    text-align: center;
}

.ec-modal .ec-role {
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.4;
    color: #525263;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 1130px;
}

.ec-modal .ec-inlineBtn--cancel {
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 16px;
    text-decoration: none;
    color: #fff;
    background-color: #525263;
    border-color: #525263;
}

.ec-modal .ec-inlineBtn--action {
    display: inline-block;
    margin-bottom: 0;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 16px;
    text-decoration: none;
    color: #fff;
    background-color: #DE5D50;
    border-color: #DE5D50;
}


/****************************************************/
/* table-type1                                      */
/****************************************************/
.ec-borderedDefs.table-type1 {
    padding-bottom: 100px;
}

.ec-borderedDefs.table-type1 dl {
    border-bottom: solid 1px;
    display: flex;
    padding: 10px 0;
    flex-wrap: wrap;
}

.ec-borderedDefs.table-type1 dl dt {
    width: 200px;
}

.ec-borderedDefs.table-type1 dl dd {
    width: calc(100% - 200px);
}

.ec-borderedDefs.table-type1 dl dt .ec-label {
    font-size: 16px;
    font-weight: var(--font-weight__bold);
}


@media (max-width: 1024px) {
    .ec-borderedDefs.table-type1 {
        padding-bottom: 50px;
    }
    
    .ec-borderedDefs.table-type1 dl {
        display: block;
    }
    
    .ec-borderedDefs.table-type1 dl dt {
        width: 100%;
    }
    
    .ec-borderedDefs.table-type1 dl dd {
        width: 100%;
    }
}