html, body, * {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.ec-layoutRole__header {
    margin-bottom: 30px;
    background: #064ea2;
}

.ec-headerNaviRole {
    margin-left: auto;
    margin-right: auto;
    box-sizing: content-box;
    width: auto !important;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    /*background-color: #064ea2;*/
}

@media only screen and (min-width: 768px) {
    .ec-headerNaviRole {
        padding-bottom: 10px;
    }
}

.ec-headerNaviRole > div {
    flex-grow: 1;
}

.ec-headerNaviRole .ec-headerNaviRole__left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: auto;
}
.ec-headerNaviRole .ec-headerNaviRole__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: auto;
}

.ec-headerNaviRole__right > .ec-headerNaviRole__nav{
    margin-right: 15px;
}

.ec-headerTitle {
    margin-right: 30px;
    position: relative;
}

.ec-headerTitle a img {
    width: 100px;
    position: relative;
    top: -5px;
}

.ec-headerTitle a {
    color: #fff;
    font-size: 30px;
}

/*
ヘッダーナビ
*/
.ec-headerMenu {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    color: #fff;
}
.ec-headerMenu__item {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    /* サブメニュー枠組み */
}
.ec-headerMenu__item:last-child {
    margin-right: 0;
}
.ec-headerMenu__item > a {
    display: block;
    color: inherit;
    padding-top: 2px;
    padding-bottom: 2px;
    position: relative;
    text-decoration: none;
}
.ec-headerMenu__item > a:hover {
    text-decoration: none !important;
}
.ec-headerMenu__item > a:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left bottom;
    transform: scaleX(0);
    transition: transform 0.3s;
}
.ec-headerMenu__item > a:hover:after {
    transform: scaleX(1);
}
.ec-headerMenu__item.has-submenu {
    position: relative;
}
.ec-headerMenu__item.has-submenu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 300px;
    padding-top: 14px;
    pointer-events: none;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transform: translate3d(0, -15px, 0);
    transition: 0.2s;
}
.ec-headerMenu__item.has-submenu .submenu__body {
    background-color: #fff;
    color: #333;
    padding: 15px;
    filter: drop-shadow(0 0 1px #ddd) drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    position: relative;
    /* くちばし */
}
.ec-headerMenu__item.has-submenu .submenu__body:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    left: 15px;
    border: solid 10px transparent;
    border-bottom-color: #fff;
}
.ec-headerMenu__item.has-submenu:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}
/* サブメニュー内容（カテゴリツリー） */
.ec-categoryTree {
    font-size: 0.933rem;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.ec-categoryTree li {
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #eee;
    white-space: nowrap;
    position: relative;
}
.ec-categoryTree li a {
    display: block;
    line-height: 1;
    padding: 1em 0.5em;
    transition: 0.2s;
    color: inherit;
}
.ec-categoryTree li a:hover {
    text-decoration: none;
    background-color: #f0f1f2;
}
.ec-categoryTree li ul.child {
    margin: 0;
    padding: 0;
    list-style-type: none;
    min-width: 10em;
    position: absolute;
    top: 0.5em;
    left: calc(100% - 0.5em);
    background-color: #fff;
    color: inherit;
    padding: 15px;
    z-index: 9;
    border: solid 1px #ddd;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
.ec-categoryTree li:hover > ul.child {
    visibility: visible;
    opacity: 1;
}

.ec-headerNav {
    display: flex;
    align-items: center;
}

.ec-headerNav .ec-headerNav__item {
    font-size: 14px;
}

.ec-headerNav .ec-headerNav__item a {
    display: flex;
    align-items: center;
}

.ec-headerNav .ec-headerNav__itemLink {
    color: #fff;
}

.ec-headerNav .ec-headerNav__itemIcon {
    color: #fff;
}


/**
top page product list section
 */

.ec-featureProductsRole {
    margin: 60px 0 150px;
}

.ec-secHeading {
    margin-bottom: 60px;
    color: #000;
    text-align: center;
    overflow: hidden;
}

.ec-secHeading .ec-secHeading__maintitle {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
}

.ec-secHeading .ec-secHeading__subtitle {
    margin: 12px 0 0 0;
    text-align: center;
}

.ec-productList {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 20px;
    row-gap: 50px
}

.ec-productItemRole {
    position: relative;
}

.ec-productItemRole .ec-productItemRole__image {
    position: relative;
    min-height: 0;
    /*border: #ddd 1px solid;*/
    font-size: 0;
}

.ec-productItemRole .ec-productItemRole__image a {
    display: block;
    overflow: hidden;
}

.ec-productItemRole .ec-productItemRole__image a img {
    width: 100%;
    height: auto;
    transition: 0.3s;
    display: block;
}

.ec-productItemRole .ec-productItemRole__image:hover {
    /*border-color: #525263;*/
}

.ec-productItemRole .ec-productItemRole__image:hover a img {
    transform: scale(1.1);
}

.ec-productItemRole .ec-productItemRole__cornerTags {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.ec-productItemRole .ec-productItemRole__cornerTags .tag {
    margin: 0;
}

.ec-productItemRole .ec-productItemRole__cornerTags .tag.tag_1 span {
    display: inline-block;
    padding: 2px 8px;
    white-space: nowrap;
    background-color: #F08584;
    color: #fff;
    font-size: 12px;
}

.ec-productItemRole .ec-productItemRole__content {
    text-align: center;
}

.ec-productItemRole .ec-productItemRole__title {
    font-weight: 400;
    font-size: 16px;
    margin: 20px 0 0;
    font-weight: bold;
}

.ec-productItemRole .ec-productItemRole__content > *:last-child {
    margin-bottom: 0;
}

.ec-productItemRole .ec-productItemRole__price {
    line-height: 1.2;
    margin: 8px 0;
    text-align: center;
    display: inline-block;
    vertical-align: baseline;
    font-size: 14px;
}

.ec-price .ec-price__price {
    padding: 0;
}

.ec-price .ec-price__tax {
    font-size: 12px;
}

.ec-customizeRole {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: 80px 0;
}

.ec-customizeRole .ec-customizeRole__intro {
    text-align: center;
}
.ec-customizeRole .ec-customizeRole__introTitle {
    font-size: 26px;
    margin-bottom: 30px;
}

.ec-customizeRole .ec-customizeRole__introDescription {
    line-height: 2;
    font-size: 16px;
    margin-bottom: 50px;
}

.ec-customizeRole .ec-customizeRole__btn {
    width: 20px;
    background-color: #F99;
    border-color: #fff;
    color: #fff;
    padding: 15px 50px;
    box-sizing: border-box;
}

.ec-customizeRole .ec-customizeRole__btn:hover {
    background-color: #fa5757;
}

/**
フッター
 */
.ec-footerRole {
    border-top: none;
    background: #064ea2;
}

.ec-footerRole__inner {
    padding: 30px 0;
}

.ec-footerTitle {
    padding: 10px 0 20px 0;
}

.ec-pageHeader h1, .ec-pageHeader .h1 {
    margin: 0;
    background-color: #f0f0f0;
    color: #222;
    margin-bottom: 1.5em;
    padding: 0.75em 0.75em;
    font-size: 1.3em;
    border-bottom: none;
}

.ec-drawerRole {
    background: #064ea2;
}

.ec-drawerRole .ec-headerLinkArea .ec-headerLink__item {
    background: #064ea2;;
}

@media only screen and (min-width: 768px) {
    .ec-eyecatchRole {
        padding: 80px 0 0 0;
    }

    .ec-eyecatchRole .ec-eyecatchRole__image {
        order: 1;
        width: 50%;
    }


    .ec-eyecatchRole .ec-eyecatchRole__intro {
        padding-right: 0;
        padding-left: 5%;
        order: 2;
    }
}

@media only screen and (max-width: 767px) {
    .ec-headerTitle, .ec-headerMenu {
        display: none!important;
    }

    .ec-headerNaviRole__right > .ec-headerNaviRole__nav {
        display: none;
    }

    .ec-headerNaviRole {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .ec-headerNavSP {
        top: 5px;
    }

    .ec-cartNavi .ec-cartNavi__icon {
        color: #fff;
    }

    .ec-cartNaviNull.is-active {
        box-sizing: border-box;
    }

    .ec-productList {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .ec-productItemRole .ec-productItemRole__title {
        font-size: 14px;
    }

    .ec-price .ec-price__price {
        font-size: 14px;
    }

    .ec-customizeRole {
        padding: 80px 20px;
    }

    .ec-customizeRole .ec-customizeRole__introTitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .ec-customizeRole .ec-customizeRole__introDescription {
        line-height: 1.8;
        font-size: 16px;
    }
}
