/* カスタマイズ用CSS */
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
    font-family: sans-serif;
    src: local('menlo');
    unicode-range: U+0030-0039;
    /* 数字 */
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

:root {
    --header-height: 64px;
    --max-width: 1124px;
    --bs-gray-700: #000000;
    --bs-gray-800: #000000;
    --bs-gray-900: #000000;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: #000000;
}

input[type=radio] {
    width: 1rem;
    height: 1rem;
}

p {
    line-break: anywhere!important;
}

em {
    font-style: italic;
}

.btn-primary {
    background-color: var(--bs-gray-900);
    border-color: var(--bs-gray-900);
}

.btn-primary:hover {
    opacity: .8;
    background-color: var(--bs-gray-800);
    border-color: var(--bs-gray-900);
    box-shadow: 0 0 0 2px var(--bs-gray-300);
}
.btn-primary:focus {
    color: #fff;
    background-color: var(--bs-gray-800);
    border-color: var(--bs-gray-900);
    box-shadow: 0 0 0 2px var(--bs-gray-300);
}
.btn-primary:active {
    color: #fff;
    background-color: var(--bs-gray-800);
    border-color: var(--bs-gray-900);
}
.btn-primary:disabled,
.btn-primary.disabled {
    color: #fff;
    background-color: var(--bs-gray-600);
    border-color: var(--bs-gray-600);
}

.btn {
    border-radius: 0!important;
}

.btn-outline {
    border: 1px solid var(--bs-gray-900);
}
.btn-outline:hover,
.btn-outline:active {
    box-shadow: 0 0 0 2px var(--bs-gray-300);
}

.ec-layoutRole {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: var(--header-height) minmax(0, 1fr) auto;
}

.ec-layoutRole__header {
    position: sticky;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

.header-container {
    padding: 0 20px;
    height: var(--header-height);
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(40px, 1fr) minmax(0, 2fr) minmax(90px, 1fr);
    align-items: center;
    gap: 0 6px;
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: minmax(40px, .2fr) minmax(0, 2fr) minmax(90px, 1fr);
    }
    .header-container .header__center {
        justify-content: flex-start;
    }
    .header-container .header__logo {
        justify-content: flex-start;
    }
}

.header-menu__toggle {
    width: 32px;
    height: 32px;
    background-color: #f001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: none;
    outline: none;
    background-color: transparent;
}

.header-menu__toggle::before,
.header-menu__toggle::after {
    content: '';
    display: block;
}

.header-menu__toggle::before,
.header-menu__toggle::after,
.header-menu__line {
    width: 24px;
    height: 0;
    border-top: 2px solid var(--bs-gray-700);
    transition: transform .3s ease;
}

.header-menu__toggle.is_active .header-menu__line {
    transform: translateX(-300%);
}

.header-menu__toggle.is_active::before {
    transform: translateY(7px) rotate(45deg);
}

.header-menu__toggle.is_active::after {
    transform: translateY(-7px) rotate(-45deg);
}

.ec-layoutRole__marqueeContianer {
    width: 100%;
    max-width: calc(var(--max-width) - 60px);
    margin: 1rem auto 0;
    background-color: var(--bs-gray-200);
    padding: 0;
    text-align: center;
    overflow: hidden;
    overflow-y: visible;
}

.marquee {
    width: 100%;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee p {
    display: inline-block;
    animation: marquee 40s linear infinite;
    padding-left: 100%;
}

/* @media (max-width: 767px) {
    .marquee p {
        animation: marquee 15s linear infinite;
    }
} */
@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.gray-bg {
    background-color: var(--bs-gray-200);
}

.page_top {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.ec-drawerRole {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 320px;
    max-width: calc(100% - 40px);
    height: 100%;
    overflow-y: auto;
    padding-top: var(--header-height);
    transform: translateX(-101%);
    background-color: var(--bs-white);
    box-shadow: rgba(0, 0, 0, 0.1) 2px 0 4px;
    transition: transform .3s ease;
    display: block !important;
}

.ec-drawerRole.is_active {
    transform: translateX(0);
}

.ec-overlayRole {
    position: fixed;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

.ec-overlayRole.is_active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.ec-layoutRole__alertContianer {
    margin: 0 auto;
    padding: 0 5px;
    width: 100%;
    max-width: 800px;
}

.main_navigation_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main_navigation_item {
    padding: 0 20px;
    margin-top: -2px;
}

.main_navigation_item:hover {
    background-color: var(--bs-gray-200);
}

.main_navigation_item a {
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--bs-gray-700);
    border-bottom: 2px solid var(--bs-gray-200);
}
.main_navigation_item--top a {
    border-top: 2px solid var(--bs-gray-200);
}

.main_navigation_search {
    padding: 20px;
}
.ec-headerSearch__keyword .ec-input {
    position: relative;
}
.ec-headerSearch__keyword input {
    width: 100%;
    height: 45px;
    background-color: var(--bs-gray-200);
    border-radius: 4px;
    padding: 0 40px 0 15px;
}
.ec-headerSearch__keyword input:focus {
    border: 1px solid var(--bs-gray-600);
}/* CUSTOMIZED Start */
.ec-headerSearch__keyword input::placeholder {
    color: var(--bs-gray-600);
}

/* CUSTOMIZED End */
.ec-headerSearch__keywordBtn {
    position: absolute;
    top: 0; right: 0;
    width: 45px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.ec-headerSearch__keywordBtn .ec-icon {
    width: 18px;
    height: 18px;
    transform: translateY(-2px);
}
.ec-headerSearch__keywordBtn .ec-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo {
    width: 160px;
    height: 60px;
    height: calc(var(--header-height) - .5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo img {
    max-width: 100%;
    max-height: 100%;
}

.header__logo svg {
    max-width: 100%;
    max-height: 70%;
}

.header__end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    align-self: flex-end;
}

.main_navi_button {
    --theme: var(--bs-gray-900);
    width: 42px;
    flex-shrink: 0;
    height: 32px;
    padding: 0;
    border-radius: 4px!important;
    background-color: var(--bs-gray-200);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    position: relative;
    margin: 0 auto;
}

.main_navi_button::after,
.main_navi_button_cart::after {
    display: none;
}

.main_navi_button:hover,
.main_navi_button:focus {
    background-color: var(--bs-gray-200);
    --theme: var(--bs-gray-900);
    border-color: none;
    box-shadow: 0 0 0 2px var(--bs-gray-500);
}

.main_navi_button img,
.main_navi_button svg {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.header__end .dropdown-item {
    padding: .75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    font-size: 1em;
}

.dropdown-item .icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    --theme: #000;
}
.dropdown-item .icon svg {
    width: 100%;
    height: 100%;
}

.main_cart_container {
    position: relative;
}

.main_cart_menu {
    display: none;
}

.ec-layoutRole__footer {
    width: 100%;
}

.footer_bottom {
    width: 100%;
    background-color: var(--bs-gray-200);
}

.footer-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}

.top_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    --theme: #000;
}
.top_icon svg {
    width: 20px;
    height: 20px;
}

.footer_top .footer-container {
    padding: 5rem 20px 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer_logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer__logo {
    width: 85px;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    --theme: var(--bs-gray-800);
}

.footer__logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer_nav {
    padding: 15px 0;
}

.footer_nav_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_nav_link {
    color: var(--bs-gray-900);
    font-size: .95em;
}

.footer_copyright {
    text-align: center;
    font-size: .8rem;
}

.footer_nav_devider {
    display: none;
}

.card-register {
    width: 100%;
    max-width: 800px;
}

.card-login {
    width: 100%;
    max-width: 800px;
}

.login-container,
.register-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.login-container {
    padding: 0;
}

.b-crumb-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
}

.breadcrumb {
    margin-bottom: 0;
}

.modal-body h3 {
    margin: 0;
    padding: .5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.ec-login__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ec-login {
    max-width: 400px;
    margin: 0 auto;
}

.ec-login .ec-icon {
    width: 100%;
    max-width: 140px;
}

.ec-pageHeader h1,
.ec-pageHeader .h1 {
    margin: 0;
    padding: 24px 0;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 400;
}


.yomi-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

.yomi-pager__item a {
    width: 1.5rem;
    height: 2rem;
    border: 1px solid var(--bs-gray-500);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bs-gray-700);
    line-height: 1;
}

.yomi-pager__item--active a {
    border-color: var(--bs-gray-900);
    background-color: var(--bs-gray-900);
    color: #fff;
}

.yomi-pager__item--dots {
    border-color: transparent;
}

@media (max-width: 767.9px) {
    .breadcrumb {
        font-size: 12px;
    }
    .footer_logo {
        display: flex;
        justify-content: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer_nav_list {
        gap: 0;
        flex-direction: column;
    }

    .footer_nav_list li {
        width: 100%;
        border-bottom: 1px solid #D6D6D6;
    }

    .footer_nav_list li:first-child {
        border-top: 1px solid #D6D6D6;
    }

    .footer_nav_link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 50px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .header-container {
        padding: 0 30px;
    }

    .page-container,
    .footer-container {
        padding: 20px 30px;
    }

    .b-crumb-container {
        padding: 15px 30px;
    }

    .footer_top .footer-container {
        padding: 5rem 30px 10px;
    }

    .footer_nav_devider {
        display: block;
        width: 0;
        height: 16px;
        border-left: 1px solid var(--bs-gray-700);
    }

    .ec-pageHeader h1,
    .ec-pageHeader .h1 {
        font-size: 1.5rem;
    }
}

/* CART */
.ec-cartNaviIsset {
    display: none;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
    z-index: 20;
    position: fixed;
    top: 60px;
    right: 0;
    min-width: 100%;
    max-width: 100%;
    max-height: 450px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 4px;

    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) 60px;
}

.ec-cartNavScrollView {
    overflow-y: auto;
    padding: 1rem;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cart {
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.ec-cartNaviIsset__cart {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 1rem;
}
.ec-cartNaviIsset__cart:last-child {
    margin-bottom: 0;
    border: none;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartImage {
    width: 90px;
    height: 90px;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContent {
    text-align: left;
    box-sizing: border-box;
}

.ec-cartNaviIsset__action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    border-top: 1px solid var(--bs-gray-500);
}

.ec-cartNaviIsset .ec-cartNaviIsset__action .ec-blockBtn--action {
    color: #fff;
}
.ec-cartNaviIsset .ec-cartNaviIsset__action .btn {
    flex: 1;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContentTitle {
    margin-bottom: 8px;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContentPrice {
    font-weight: bold;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContentTax {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    margin-left: 2px;
}

.ec-cartNaviIsset .ec-cartNaviIsset__cartContentNumber {
    font-size: 14px;
}

.ec-cartNaviIsset.is-active {
    display: grid;
}

.ec-cartNavi .ec-cartNavi__badge {
    display: inline-block;
    border-radius: 99999px;
    box-sizing: border-box;
    padding: 5px;
    height: 17px;
    font-size: 10px;
    line-height: 0.7;
    vertical-align: top;
    color: #fff;
    text-align: left;
    white-space: nowrap;
    background-color: #DE5D50;
    position: absolute;
    left: 60%;
    top: -10px;
}

/* CART NULL */
.ec-cartNaviNull {
    display: none;
    width: 256px;
    text-align: center;
    background: #f8f8f8;
    box-sizing: border-box;
    padding: 16px;
    z-index: 3;
    position: absolute;
    right: 0;
}

.ec-cartNaviNull .ec-cartNaviNull__message {
    border: 1px solid #D9D9D9;
    padding: 16px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #F99;
}

.ec-cartNaviNull .ec-cartNaviNull__message p {
    margin: 0;
}

.ec-cartNaviNull.is-active {
    display: block;
}

@media (min-width: 768px) {
    .ec-cartNaviIsset {
        top: 46px;
        position: absolute;
        min-width: 350px;
    }

    .ec-cartNaviNull::before,
    .ec-cartNaviIsset::before {
        display: inline-block;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8.5px 10px 8.5px;
        border-color: transparent transparent var(--bs-gray-400) transparent;
        position: absolute;
        top: -9.5px;
        right: 14px;
    }

    .ec-cartNaviNull {
        margin-top: 10px;
        min-width: 256px;
        max-width: 100%;
    }
}

.ec-pageLoading {
    position: fixed;
    z-index: 999;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background-color: #3333;
    justify-content: center;
    align-items: center;
    display: none;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}
.ec-pageLoading.is-active {
    display: flex;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}
.ec-pageLoadingContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    background-color: var(--bs-white);
}
.ec-pageLoading--icon {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 2px solid var(--bs-gray-900);
    border-left-color: transparent;
    animation: Loading .5s linear infinite;
}

.bg-load-overlay {
    position: fixed;
    z-index: 99999;
    top: 0; bottom: 0;
    left: 0; right: 0;
    background-color: #fff7;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    justify-content: center;
    align-items: center;
}
.bg-load-overlay::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 2px solid #000;
    border-left-color: transparent;
    animation: Loading .5s linear infinite;
}
.bg-load-overlay::after {
    content: 'Updating..';
    color: #000;
}
@keyframes Loading {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* COUPON START */
#page_plugin_coupon_shopping .ec-off1Grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
}
#page_plugin_coupon_shopping .ec-off1Grid__cell {
    max-width: 800px;
    margin: 0 auto;
}
#page_plugin_coupon_shopping .ec-addressRole__actions {
    border-bottom: 1px solid var(--bs-gray-400);
    padding: .5rem 0;
}
#page_plugin_coupon_shopping form {
    padding: 30px 0;
}
label[for=coupon_use_coupon_cd] {
    font-weight: normal;
}
#page_plugin_coupon_shopping .ec-borderedDefs dl {
    border-bottom: 1px solid var(--bs-gray-400);
    padding-bottom: .5rem;
}
#page_plugin_coupon_shopping .ec-off4Grid__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0;
}

#page_plugin_coupon_shopping .ec-blockBtn--action,
#page_plugin_coupon_shopping .ec-blockBtn--cancel {
    width: 100%;
    max-width: initial!important;
}
#page_plugin_coupon_shopping .ec-blockBtn--action,
#page_plugin_coupon_shopping .ec-blockBtn--cancel {
    width: 100%;
    max-width: 250px;
    height: 40px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#page_plugin_coupon_shopping .ec-blockBtn--cancel {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}
.badge-danger {
    background-color: var(--bs-danger);
}
@media (min-width: 768px) {
    #page_plugin_coupon_shopping .ec-borderedDefs dl {
        display: grid;
        grid-template-columns: 300px minmax(0, 1fr);
        align-items: center;
    }
    #page_plugin_coupon_shopping .ec-blockBtn--action,
    #page_plugin_coupon_shopping .ec-blockBtn--cancel {
        max-width: 280px!important;
    }
}
@media (min-width: 992px) {
    #page_plugin_coupon_shopping .ec-off1Grid {
        padding: 30px;
    }
}
/* COUPON END */

/* SONY START */.page-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.ec-welcomeMsg {
    font-size: 14px;
    margin-top: .5rem;
}

.ec-mypageRole {
    padding: 0 20px;
}

.ec-navlistRole {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ec-navlistRole__navlist {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    width: 100%;
    max-width: 800px;
}
.ec-navlistRole__item {
    border: 1px solid var(--bs-gray-300);
}
.ec-navlistRole__item a {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .5rem;
    color: #000;
}
.ec-navlistRole__item a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.ec-navlistRole__item.active a {
    background-color: var(--bs-gray-200);
}
.ec-pagerRole {
    padding-top: 2rem;
}
#page_sln_edit_card .ec-mypageRole {
    padding: 20px 0;
}

.sln_card_payment_container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}
#add_card_form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
#add_card_form input[type=text],
#add_card_form input[type=number],
#add_card_form input[type=password] {
    width: 100%;
    height: 40px;
    border: 1px solid var(--bs-gray-400);
    border-radius: 3px;
    padding: 0 .5rem;
}
#add_card_form .sln-scInput input[type=password] {
    width: 120px;
}
#add_card_form .ec-halfInput {
    display: grid;
    grid-template-columns:auto minmax(40px, 1fr) auto minmax(40px, 1fr);
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
}

#add_card_form .ec-halfInput p {
    grid-column: 1 / span 4;
}

#add_card_form #card_BirthDay,
#add_card_form #card_TelNo {
    max-width: 260px;
}
#add_card_form input[type=checkbox] {
    width: 20px;
    height: 20px;
    border: 1px solid var(--bs-gray-500);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#add_card_form input[type=checkbox]::before {
    content: '';
    display: block;
    width: 12px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(0, -2px) rotate(-45deg);
}
#add_card_form input[type=checkbox]:checked {
    border-color: blue;
    background-color: blue;
}
#add_card_form .ec-checkbox {
    height: 100%;
}
#add_card_form .ec-checkbox > div {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
#detail_box__name dd {
    padding: 0!important;
}
#detail_box__name select {
    width: 80px;
    height: 40px;
    padding: 0 0.5rem;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid var(--bs-gray-400);
    border-radius: 3px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}
#detail_box__name .ec-select select {
    width: 300px;
}
#top_box__button_menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-left: 0;
}
#top_box__footer {
    padding-top: 4rem;
}
#top_box__button_menu .ec-blockBtn--action,
#top_box__button_menu .ec-blockBtn--cancel {
    width: 100%;
    max-width: 250px;
    height: 40px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}
#top_box__button_menu p {
    width: 100%;
    max-width: 250px;
}
#top_box__button_menu .ec-blockBtn--cancel {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}
#page_sln_edit_card main > .ec-layoutRole__main {
    padding: 0 20px;
}
@media (min-width: 992px) {
    #detail_box__name {
        display: grid;
        grid-template-columns: 200px minmax(0, 1fr);
        gap: 1rem;
    }
    #add_card_form dt {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 40px;
    }
    .ec-registerRole__actions .ec-checkbox {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (min-width: 768px) {
    .sln_card_payment_container {
        padding: 20px 30px;
    }
}

/* #nav_mypage_sln_edit_card a::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icons/card.svg);
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center;
} */
/* SONY END */
.custom_product_yen_sign {
    font-size: .8em;
}

.ec-cartNaviNull .ec-cartNaviNull__message {
    color: #222222;
    background-color: #ebebeb;
}
.pluginCMBblog .cm_blog_main_image .item_blog_image {
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

.shop--tags {
    padding: 0 20px 20px;
}

@media (min-width: 768px) {
    .shop--tags {
        padding: 0 30px 30px;
    }
}

.shop--tag_title {
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0 0 .75rem;
    margin: 0;
}

.shop--tag_list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.shop--tag_list--2 {
    gap: 8px 20px;
}

.shop--tag_frame {
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding-inline: 10px;
    height: 32px;
    font-size: 1rem;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.shop--tag_frame span {
    font-size: .75em;
    background-color: var(--btn-bg);
    color: var(--btn-fg);
    border-radius: 2px;
    padding: 1px 4px;
    margin-inline-start: -2px;
}

.shop--tag_hash {
    padding: 0;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.shop--tag_hash span {
    font-size: .9em;
    color: #000;
}
/* NAV CUSTOMIZE Start */
.ec-headerSearch__items {
    padding-block: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ec-headerSearch__items button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--bs-gray-300);
    border-radius: 8px;
    padding: 6px 5px 5px;
    font-size: 12px;
}

.ec-headerSearch__items button::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ec-headerSearch__items button:first-child:before {
    background-image: url(/html/template/default/assets/icon/category.png);
}

.ec-headerSearch__items button:last-child:before {
    background-image: url(/html/template/default/assets/icon/tag.png);
}

/* NAV CUSTOMIZE End */