/* base */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
.en {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}
h1.en,
h2.en,
h3.en,
h4.en,
h5.en {
    font-weight: 700;
}
.wrap {
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    margin: 0 auto;
}
.flex_box {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; 
    justify-content: space-between;
}

@media screen and (min-width: 768px)  {
    .sp {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .pc {
        display: none !important; 
    }
}


/*** Header ***/
.header_line {
    background: #000;
    padding: 12px 0;
}
.header_line .header_h1 h1 {
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}
.header_bottom {
    height: 92px;
    border-bottom: 2px solid #000;
}
.header_bottom .flex_box {
    align-items: center;
}
.header_bottom .head_logo {
    width: 20%;
}
.header_bottom .head_logo img {
    max-width: 150px;
}
.header_bottom .head_menu {
    width: 60%;
}
.header_bottom .head_menu .head_menu_box {
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    width: 20%;
}
.header_bottom .head_menu .head_menu_box a {
    width: 100%;
    height: 90px;
    display: block;
    text-align: center;
    background: #fff;
    color: #000;
    transition: .3s;
    padding: 35px 0;
    letter-spacing: .2rem;
}
.header_bottom .head_menu .head_menu_box a:hover {
    text-decoration: none;
    background: #000;
    color: #fff;
}
.header_bottom .head_menu .head_menu_box:last-child {
    border-right: 2px solid #000;
}
.header_bottom .ec-headerNaviRole__right {
    width: 20%;
}



/*** Common ***/
.line-btn {
    width: 90%;
    margin: 30px auto 0;
    max-width: 280px;
}
.line-btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-size: 21px;
    text-align: center;
    position: relative;
    transition: .3s;
    letter-spacing: .2rem;
}
.line-btn a::after {
    content: '';
    display: block;
    border: 0;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    display: inline-block;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 7.5%;
    transition: .3s;
}
.line-btn a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}
.line-btn a:hover::after {
    right: 5%;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
.contact-btn {
    width: 90%;
    margin: 30px auto 0;
    max-width: 280px;
}
.contact-btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 12px 0;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-size: 21px;
    text-align: center;
    position: relative;
    transition: .3s;
    letter-spacing: .2rem;
}
.contact-btn a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}
.contact-btn a span {
    vertical-align: middle;
}
.contact-btn a svg {
    width: 26px;
    height: 19px;
    display: inline-block;
    vertical-align: middle;
    transition: .3s;
    margin-right: 10px;
}
.contact-btn a:hover svg {
    fill: #fff;
}
.sec-tit-box {
    margin-bottom: 64px;
}
.sec-tit-box .sec-tit {
    margin-bottom: 32px;
    font-size: 36px;
    text-align: center;
    letter-spacing: .2rem;
}
.sec-tit-box .sec-subtit {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    letter-spacing: .2rem;
}

.list-asterisk li::before {
    content: "※";
}

/*** Recommend ***/
.home-recommend-sec {
    background: #F5F5F5;
    padding: 100px 0;
}
.recommend-content .flex_box {
    justify-content: flex-start;
}
.home-recommend-sec .item-box {
    width: 18.333%;
    margin-right: 1.667%;
    margin-bottom: 50px;
}
.home-recommend-sec .item-box:nth-child(5n) {
    margin-right: 0;
}
.item-box a {
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    color: #000;
    transition: .3s;
}
.item-box a:hover figure img {
    opacity: .6;
}
.item-box a:hover p {
    opacity: 1;
    text-decoration: underline;
}
.item-box figure {
    width: 100%;
    margin: 0 0 20px;
}
.item-box figure img {
    width: 100%;
    transition: .3s;
}
.item-box .item_name {
    font-size: 14px;
    margin-bottom: 10px;
    transition: .3s;
}
.item-box .item_price {
    font-size: 14px;
    text-align: right;
    transition: .3s;
    letter-spacing: .1rem;
}
.item-box .item_price span {
    font-size: 18px;
    margin-right: 5px;
}


/*** Category ***/
.home-category-sec {
    padding: 100px 0;
}
.home-category-sec .category-content {
    margin-bottom: 60px;
}
.home-category-sec .category-box {
    width: calc(100% / 3);
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    position: relative;
    padding-bottom: 150px;
}
.home-category-sec .category-box:nth-child(3n) {
    border-right: 1px solid #000;
}
.home-category-sec .category-box .cat-image {
    padding: 0;
    margin: 0 0 30px;
}
.home-category-sec .category-box .cat-logo {
    padding: 0;
    width: 70%;
    margin: 0 15% 20px;
}
.home-category-sec .category-box .cat-bottom {
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}
.home-category-sec .category-box figure img {
    width: 100%;
}
.home-category-sec .category-box .cat-name {
    text-align: center;
    margin: 0 0 40px;
    font-weight: 600; 
}
.home-category-sec .category-box .cat-block {
    padding: 0 50px;
    margin-bottom: 60px;
}
.home-category-sec .category-box .cat-block ul {
    list-style: none;
    display: block;
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
}
.home-category-sec .category-box .cat-block ul li {
    margin-bottom: 1rem;
}
.home-category-sec .category-box .cat-block ul li a {
    color: #000;
    text-decoration: none;
    transition: .3s;
}
.home-category-sec .category-box .cat-block ul li a:hover {
    text-decoration: underline;
    opacity: .7;
}
.home-category-sec .category-box .cat-block ul li::before {
    content: '├';
    margin-right: 0.5rem;
}
.home-category-sec .category-box .cat-block ul li:last-child::before {
    content: '└';
    margin-right: 0.5rem;
}
.home-category-sec .category-box .cat-block ul li ul li {
    padding-left: 3rem;
    margin-top: 1rem;
}

/*** News ***/
.home-news-sec {
    padding: 100px 0;
    background: #F5F5F5;
}
.ec-newsRole__news .ec-newsRole__newsDescription {
    display: none;
}
.ec-newsRole__news {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 40px 80px;
}
.ec-newsRole__newsItem:not(:last-child) {
    margin-bottom: 20px;
}
.ec-newsRole__newsDate {
    display: inline-block;
    line-height: 2;
    margin-right: 10px;
    vertical-align: middle;
}
.ec-newsRole__newsCategory {
    display: inline-block;
    line-height: 2;
    margin-right: 20px;
    background: #000;
    width: 10rem;
    text-align: center;
    color: #fff;
    letter-spacing: .1rem;
    vertical-align: middle;
}
.ec-newsRole__newsColumn {
    display: inline-block;
    line-height: 2;
    vertical-align: middle;
}
.ec-newsRole__newsTitle {
    display: inline-block;
    line-height: 2;
}
.ec-newsRole__newsClose {
    display: inline-block;
    line-height: 2;
    vertical-align: middle;
    margin-left: 20px;
}
.ec-newsRole__newsClose .fas {
    color: #000;
    font-size: 20px;
}
.ec-newsRole__newsDescription {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

/*** Banner ***/
.home-banner-sec {
    padding: 100px 0;
    background: #ccc;
}
.home-banner-sec .banner-box {
    width: 30%;
}
.home-banner-sec .banner-box a {
    transition: .3s;
}
.home-banner-sec .banner-box a:hover {
    opacity: .7;
}
.home-banner-sec .banner-box a img {
    width: 100%;
}
/*** Contact ***/
.home-contact-sec {
    padding: 100px 0;
    background: #F5F5F5;
}

/*** Footer ***/
.footer-menu {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.footer-menu .flex_box {
    justify-content: center;
    align-items: center;
}
.footer-menu .foot-menu-box {
    width: 20%;
    max-width: 133px;
    border-left: 1px solid #000;
}
.footer-menu .foot-menu-box:last-child {
    border-right: 1px solid #000;
}
.footer-menu .foot-menu-box a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 36px 0;
    transition: .3s;
    text-align: center;
    color: #000;
}
.footer-menu .foot-menu-box a:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}
.footer-menu .foot-menu-box a span {
    letter-spacing: .1rem;
}

.footer-information {
    background: #F5F5F5;
}
.footer-information .foot-info-box {
    width: calc(100% / 3);
    border-left: 1px solid #000;
    padding: 30px 30px 60px;
}
.footer-information .foot-info-box:last-child {
    border-right: 1px solid #000;
}
.foot-info-tit {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: .1rem;
}
.foot-info-logo {
    background: #fff;
    width: 80%;
    margin: 0 auto 20px;
    padding: 20px;
}
.foot-info-logo figure {
    margin: 0;
    padding: 0;
}
.foot-info-logo img {
    width: 100%;
}
.foot-info-card {
    background: #fff;
    width: 80%;
    margin: 0 auto 20px;
}
.foot-info-card figure {
    margin: 0;
    padding: 0;
}
.foot-info-card img {
    width: 100%;
}
.foot-info-menu {
    list-style: none;
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}
.foot-info-menu li {
    margin-bottom: 1rem;
}
.foot-info-menu li a {
    color: #000;
}
.foot-info-menu li a:hover {
    text-decoration: underline;
    opacity: .7;
}
.copyright {
    padding: 20px 0;
    background: #000;
    text-align: center;
}
.copyright copyright {
    font-style: normal;
    font-weight: 400;
    color: #fff;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: .1rem;
    line-height: 1;
}


@media screen and (max-width: 767px) {
.wrap {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
}
.header_line {
    padding: 4px 0;
}
.header_h1 h1 {
    line-height: 1.5;
}
.header_bottom {
    height: 60px;
}
.header_bottom .head_logo {
    width: 50%;
}
.header_bottom .ec-headerNaviRole__right {
    width: 50%;
}
.header_bottom .head_logo img {
    height: 32px;
    margin: 12px 0 0 ;
}
.ec-cartNavi {
    padding: 3px 0 0 0;
}
.slick-dots {
    bottom: -40px !important;
}
.slick-dots li button:before {
    width: 9px !important;
    height: 9px !important;
}
.ec-sliderRole {
    margin-bottom: 0;
}
.home-recommend-sec {
    padding: 20px 0 40px;
}
.sec-tit-box {
    margin-bottom: 30px;
}
.sec-tit-box .sec-tit {
    margin-bottom: 10px;
    font-size: 20px;
}
.sec-tit-box .sec-subtit {
    font-size: 14px;
}
.home-recommend-sec .item-box {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 4%;
}
.home-recommend-sec .item-box:nth-of-type(2n) {
    margin-right: 0;
}
.item-box figure {
    margin: 0 0 10px;
}
.item-box .item_name {
    font-size: 10px;
    margin-bottom: 5px;
}
.item-box .item_price {
    font-size: 10px;
    letter-spacing: 0;
}
.item-box .item_price span {
    font-size: 13px;
    margin-right: 0;
    font-weight: 600;
}
.line-btn {
    margin: 20px auto 0;
    max-width: 90%;
}
.line-btn a {
    font-size: 16px;
}
.contact-btn {
    margin: 20px auto 0;
    max-width: 90%;
}
.contact-btn a {
    font-size: 16px;
}
.home-category-sec {
    padding: 20px 0 40px;
}
.home-category-sec .category-box {
    width: 100%;
    border: 1px solid #000;
    padding-bottom: 100px;
}
.home-category-sec .category-box:not(:last-child) {
    margin-bottom: 30px;
}
.home-category-sec .category-content {
    margin-bottom: 30px;
}
.home-news-sec {
    padding: 20px 0 40px;
}
.ec-newsRole__news {
    padding: 20px 0px;
}
.ec-newsRole__newsTitle {
    width: 88%;
}
.ec-newsRole__newsColumn {
    display: block;
    margin-top: 5px;
}
.ec-newsRole__newsTitle {
    line-height: 1.5;
    width: 90%;
    vertical-align: middle;
}
.ec-newsRole__newsClose {
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
    margin-left: 10px;
}
.ec-newsRole__newsCategory {
    font-size: 12px;
}
.ec-newsRole__newsItem.is_active .ec-newsRole__newsDescription {
    margin: 10px 0 10px;
}
.home-banner-sec {
    padding: 20px 0;
}
.home-banner-sec .banner-box {
    width: 100%;
}
.home-banner-sec .banner-box:not(:last-child) {
    margin-bottom: 20px;
}
.home-contact-sec {
    padding: 20px 0 40px;
}
.home-contact-sec .sec-tit-box .sec-subtit {
    font-size: 12px;
    line-height: 1.75;
}
.footer-information {
    background: #fff;
}
.footer-information .foot-info-box {
    width: 100%;
    border: none !important;
    padding: 20px 0 40px;
}
.foot-info-tit {
    font-size: 20px;
    margin-bottom: 10px;
}
.foot-info-card {
    width: 100%;
    margin: 0 auto 10px;
}
.sp-center {
    text-align: center;
}
.foot-info-box.sp {
    width: 100%;
    background: #F5F5F5;
    padding: 20px 0 40px;
}
.foot-info-menu {
    border-top: 1px solid #000;
}
.foot-info-menu li {
    padding: 0;
    margin: 0;
}
.foot-info-menu li a {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #000;
    display: block;
    width: 100%;
    height: 100%;
}
.foot-info-logo.sp {
    width: 100%;
    background: #F5F5F5;
    padding: 0 0 40px;
    margin: 0;
}
.foot-info-logo.sp figure {
    width: 70%;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
}
.copyright {
    padding: 10px 0 16px;
}
.copyright copyright {
    font-size: 10px;
    letter-spacing: .05rem;
}
.ec-blockTopBtn {
    bottom: 46px;
}
}

.side-itemNav__nav,
.side-itemNav__nav li,
.side-itemNav__nav li ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
    text-align: left;
}
.side-itemNav__nav {
}
.side-itemNav__nav .lnavi {
    padding-bottom: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
}
.side-itemNav__nav .lnavi-child {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #ccc;
    font-size: 14px;
}
.side-itemNav__nav .lnavi-child .lnavi-child {
    padding-left: 0;
}
.side-itemNav__nav li ul li {
}

.side-itemNav__nav .lnavi-child .nav-open {
    width: 20px;
    height: 20px;
    text-align: center;
    background: #fff;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}
.side-itemNav__nav .lnavi-child .nav-open::before {
    content: 'ー';
    color: #cccccc;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.side-itemNav__nav a:hover {
    text-decoration: underline;
}

.product-name {
    font-size: 14px;
    margin-bottom: 10px;
}
.price02-default {
    font-size: 14px;
    text-align: right;
}
.price02-default span {
    font-size: 18px;
}

.ec-searchnavRole__counter span {
    font-size: 12px;
}
.ec-searchnavRole__counter .ec-font-bold {
    font-size: 21px;
    color: #de5d50;
    margin-right: 3px;
}
.select-title {
    font-size: 11px;
    vertical-align: middle;
    margin-right: 3px;
}
.select-right {
    margin-left: 20px;
}


.detail_topicpath_wrap {
    margin-bottom: 20px;
}

.buy-box {
    background: #f5f5f5;
    padding: 50px 30px;
}
.ec-numberInput {
    width: 28%;
}
.ec-numberInput select {
    height: 56px;
}
.add-cart-icon {
    width: 22px;
    display: inline-block;
    margin-right: 10px;
}
.add-cart-txt {
    vertical-align: middle;
    font-size: 20px;
    font-weight: bold;
}
.buy-box-menu {
    font-size: 12px;
}
.buy-box-menu a {
    color: #000;
}
.buy-box-menu a:hover {
    text-decoration: underline;
}
.under-btn-box {
    margin-top: 30px;
    width: 100%;
}
.under-btn-box .detail-line-btn {
    width: 48.5%;
    margin: 0;
}
.under-btn-box .detail-line-btn a {
    display: block;
    width: 100%;
    padding: 12px 0;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    text-align: center;
    transition: .3s;
    font-size:16px;
    font-weight: bold;
}
.under-btn-box .detail-line-btn a:hover {
    background: #f5f5f5;
    text-decoration: none;
}
.under-btn-box .ec-productRole__btn-wrap {
    width: 48.5%;
    margin: 0;
}
.under-btn-box .ec-productRole__btn {
    width: 100%;
}
.under-btn-box .ec-productRole__btn-wrap .ec-blockBtn--cancel {
    width: 100%;
    padding: 12px 0;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    text-align: center;
    transition: .3s;
    font-size:16px;
    font-weight: bold;
    height: auto;
    line-height: 1.4;
}
.under-btn-box .ec-productRole__btn-wrap .ec-blockBtn--cancel:hover {
    background: #f5f5f5;
    text-decoration: none;
}
.detail-line-btn .add-cart-txt {
    font-size:16px;
}
.detail-foot {
    padding: 30px 0 0;
}


@media screen and (max-width: 767px) {
.ec-layoutRole .ec-layoutRole__contents {
    padding: 25px 5% 50px;
}
.ec-sliderItemRole {
    margin-bottom: 0;
}
.ec-headingTitle {
    margin: 0 0 20px;
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 20px;
}
.price-name,
.ec-price .ec-price__tax {
    font-size: 12px;
}
.ec-price .ec-price__price {
    font-size: 20px;
}
.buy-box {
    padding: 25px 15px;
}
.ec-numberInput {
    width: 100%;
    margin-bottom: 1.5rem;
}
.ec-numberInput input[type='number'],
.ec-numberInput select {
    display: block;
    width: 100%;
    height: 40px;
    text-align: center;
    max-width: 100%;
}
.under-btn-box .detail-line-btn {
    width: 100%;
    margin: 0 0 20px;
}
.under-btn-box .ec-productRole__btn-wrap {
    width: 100%;
}
.ec-searchnavRole .ec-searchnavRole__infos {
    padding-left: 0;
    padding-right: 0;
}
.ec-shelfRole {
    padding-left: 0;
    padding-right: 0;
}
.ec-topicpath {
    border-top: none;
    border-bottom: none;
    padding: 0 0 10px;
}
.product-name {
    font-size: 12px;
    margin-bottom: 5px;
    padding-top: 5px;
}
.price02-default {
    font-size: 12px;
}
.price02-default span {
    font-size: 14px;
}
.ec-select select {
    font-size: 12px;
}
.ec-layoutRole .ec-layoutRole__left {
    display: block !important;
    height: 100%;
}
.ec-layoutRole__mainBottom .ec-categoryNaviRole {
    padding-left: 0;
    padding-right: 0;
    color: #000;
    display: block;
}
.ec-layoutRole__mainBottom .ec-categoryNaviRole a {
    color: #000;
}
#page_product_list .footer {
    margin-top: -50px;
}
.footer {
    border-top: 1px solid #000;
}
}

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

.support-box.pc {
    position: relative;
}
.support-box.pc .pmark {
    position: absolute;
    bottom: 60px;
    right: 30px;
    width: 8rem;
}
.pmark img {
    width: 100%;
}
.foot-info-logo.sp .pmark {
    width: 20%;
    margin: 3rem auto 0;
}

.ec-pageHeader h1 {
    border-top: none;
    border-bottom: 1px solid #ccc;
    margin: 10px 0 48px;
    padding: 8px 0;
    font-size: 24px;
    font-weight: bold;
}
.ec-off1Grid .ec-off1Grid__cell {
    width: 100%;
    margin: 0;
}
.ec-borderedDefs dl {
    flex-wrap: nowrap;
    padding: 15px 0;
}
.ec-borderedDefs dt {
    padding-top: 0;
    width: 30%;
    line-height: 1.75;
}
.ec-borderedDefs dd {
    width: 70%;
    line-height: 1.75;
}
.ec-role {
    font-size: 14px;
}
.ec-off1Grid {
    margin-bottom: 3rem;
}
.ec-off1Grid__cell h2 {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 2rem;
    border-left: 4px solid #000;
    padding-left: 1rem;
}
.ec-off1Grid__cell p {
    line-height: 2;
}
.ec-off1Grid.bottom {
    margin-bottom: 10rem;
    padding-top: 2rem;
}
.ec-off1Grid__cell .table-tit {
    font-size: 16px;
    font-weight: bold;
}
.ec-off1Grid__cell table {
    width: 100%;
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.ec-off1Grid__cell table td {
    border: 1px solid #ccc;
    padding: 1rem;
}

.ec-off1Grid__cell table th {
    background-color: #f6f6f6;
    font-weight: normal;
    text-align: left;
    vertical-align: middle;
    overflow-wrap: break-word;
    border: 1px solid #ccc;
    padding: 1rem;
}

.ec-off1Grid__cell .table-bottom-txt {
    margin-bottom: 3rem;
}
.ec-off1Grid__cell .contact-info span {
    width: 9rem;
    display: inline-block;
}

.faq-block dl:not(:last-child) {
    margin-bottom: 3.5rem;
}
.faq-block dl dt {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
}
.faq-block dl dt span {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 24px;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.faq-block dl dd {
    font-size: 14px;
    line-height: 2;
}
@media screen and (max-width: 767px) {
.ec-role {
    padding-left: 0;
    padding-right: 0;
}
.ec-borderedDefs dd {
    padding-left: 5%;
}
.ec-orderRole {
    padding-left: 0;
    padding-right: 0;
}
}

.txt-red {
    color: #DE5D50;
}
.cost {
    font-size: 1.8rem;
}
.mb20 {
    margin-bottom: 2rem;
}
.credit-txt {
    margin-bottom: 1rem;
}
.credit-img {
    width: 50%;
}
@media screen and (max-width: 767px) {
.credit-img {
    width: 100%;
}
}

.ec-productRole__actions .ec-select:nth-child(2) {
    margin-top: 1.5rem;
}
.ec-productRole__actions .ec-select .ec-select-tit {
    margin-bottom: 0.5rem;
}

.ec-headerNav .ec-headerRole__cart {
    margin-left: 0;
    display: inline-block;
    font-size: 28px;
}
.ec-cartNaviIsset__cartContentTitle {
    font-size: 14px;
}
.bold {
    font-weight: bold;
}
.list-asterisk ul {
    list-style: none;
    margin: 0;
    padding: 2rem 0;
}
.list-asterisk li {
    padding-left: 2.2rem;
    text-indent: -2.2rem;
    margin-bottom: 1rem;
}
.list-asterisk li::before {
    content: '※';
    margin-right: 0.5rem;
}

@media only screen and (min-width: 768px) {
.ec-cartNaviIsset {
    margin-top: 10px;
    min-width: 400px;
    max-width: 400px;
}
.ec-cartNaviIsset::before {
    right: 25px;
}
.ec-cartRole .ec-cartRole__cart {
    margin: 0;
}
.ec-cartRole .ec-cartRole__actions {
    margin-right: 0;
}
}
@media screen and (max-width: 767px) {
.ec-cartRole,
.ec-contactRole,
.ec-registerRole {
    padding: 0;
}
.ec-progress .ec-progress__label {
    font-size: 10px;
}
.ec-progress .ec-progress__item:after {
    top: 1.25rem;
}
.ec-drawerRole .ec-headerLinkArea {
    padding-bottom: 15vh;
}
.ec-productRole__description .ec-off1Grid__cell table {
    border-top: 1px solid #ccc;
    border-left: none;
    border-right: none;
    border-bottom: none;
}
.ec-productRole__description .ec-off1Grid__cell table th,
.ec-productRole__description .ec-off1Grid__cell table td {
    width: 100% !important;
    display: block;
    border-top: none;
}
.ec-productRole__description .ec-off1Grid__cell table th {
    text-align: center;
    font-weight: bold;
}
}

.ec-productRole .ec-productRole__tag {
    padding: 4px 10px;
    font-size: 100%;
    margin-right: 5px;
}
.front_page .ec-productRole__tags {
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
}
.front_page .ec-productRole__tags .ec-productRole__tag {
    padding: 4px 10px;
    font-size: 100%;
    margin-right: 5px;
    display: inline-block;
    font-size: 1.0rem;
    border-radius: 1.6rem;
}
#page_product_list .ec-productRole__tags {
    list-style: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 100%;
}
#page_product_list .ec-productRole__tags .ec-productRole__tag {
    padding: 4px 10px;
    font-size: 100%;
    margin-right: 5px;
    display: inline-block;
    font-size: 1.0rem;
    border-radius: 1.6rem;
}
#page_product_list .ec-shelfGrid a {
    position: relative;
}
.ec-productRole__tag.tag_1 {
    color: #fff;
    border: none;
    background-color: #1abc9c;
}
.ec-productRole__tag.tag_2 {
    color: #fff;
    border: none;
    background-color: #3498db;
}
.ec-productRole__tag.tag_3 {
    color: #fff;
    border: none;
    background-color: #9b59b6;
}
.ec-productRole__tag.tag_4 {
    color: #fff;
    border: none;
    background-color: #f39c12;
}
.ec-productRole__tag.tag_5 {
    color: #fff;
    border: none;
    background-color: #c0392b;
}
.ec-productRole__tag.tag_6 {
    color: #fff;
    border: none;
    background-color: #2980b9;
}
.ec-productRole__tag.tag_7 {
    color: #fff;
    border: none;
    background-color: #27ae60;
}
.ec-productRole__tag.tag_8 {
    color: #fff;
    border: none;
    background-color: #f1c40f;
}
.ec-productRole__tag.tag_9 {
    color: #fff;
    border: none;
    background-color: #2c3e50;
}

.ec-productRole .ec-productRole__title .ec-headingTitle {
    line-height: 1.4;
}

.home-recommend-sec .item-box figure {
    margin: 0 0 10px;
    position: relative;
}

@media screen and (max-width: 767px) {
.ec-productRole__tags .ec-productRole__tag {
    padding: 2px 5px;
    font-size: 0.8rem;
}
    
}