/*
 * COMMON COMPONENT
 */
html body{
    font-family: "Noto Sans JP", sans-serif;
    /* font-family: "Noto Sans JP"; */
}
@media(max-width: 768px) {
    .pc {
        display: none;
    }
}
.orient-page-title {
    padding: 0;
    margin: 0;
    color: var(---color1, #005BAB);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 160%; /* 3.6rem */
    letter-spacing: 0.1125rem;
    margin-bottom: 1.25rem;
    width: 100%;
}
.ec-borderedDefs {
    margin-bottom: 4rem;
}
.ec-borderedDefs dd {
    line-height: 2rem;
}
@media(min-width: 768px) {
    .ec-borderedDefs dd {
        line-height: 2rem;
    }
}
/* ec-modeal */
.ec-modal .ec-modal-wrap {
    border: unset;
    border-radius: 20px;
    min-width: 650px;
}
.ec-modal-box .ec-role {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    flex-wrap: wrap;
}
#ec-modal-header {
    color: var(--maincolor, #1D2129);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 160%; /* 1.4rem */
    letter-spacing: 0.0875rem;
}
@media(max-width: 768px) {
    .ec-modal .ec-modal-wrap {
        min-width: unset;
    }
    .ec-modal.add-cart-modal .ec-role {
        flex-direction: column-reverse;
        align-items: center;
    }
}
/* headline */
.orient-headline {
    display: flex;
    justify-content: center;
    position: relative;
}
.orient-headline .headline-bg {
    color: var(--subcolor, #EEE);
    text-align: center;
    font-family: Outfit, sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 160%; /* 7.2rem */
    letter-spacing: 2.25rem;
    margin-right: -0.5rem;
    /* position: relative; */
}
.orient-headline .headline-bg.headline-bg-white {
    color: var(--basecolor, #FFF);
}
.orient-headline h2{
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 160%; /* 2.8rem */
    letter-spacing: 0.175rem;
    position: absolute;
    bottom: 0;
}
@media(max-width: 768px) {
    .orient-page-title {
        font-size: 1.75rem;
        letter-spacing: 0.0875rem;
    }
    .orient-headline .headline-bg {
        font-size: 2rem;
        letter-spacing: 1rem;
    }
    .orient-headline h2 {
        font-size: 1.25rem;
        letter-spacing: 0.125rem;
        bottom: -0.5rem;
    }
}
/* common button */
.common-button {
    border-radius: 6.25rem;
    background: #fff;
    border: 2px solid var(---color1, #005BAB);
    width: 20rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease-out;
}
.common-button span {
    position: relative;
}
.common-button::before {
    border-radius: 6.25rem;
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(to right, #005BAB, #006AC6);
    transition: all 0.5s ease-out;
}
.common-button:hover::before {
    opacity: 0;
}
.common-button.white {
    background: #cccccc;
}
.common-button.white::before {
    background: white;
    border: 2px solid var(---color1, #005BAB);
}
.common-button.white:hover::before {
    opacity: 0;
}
.common-button.white span {
    color: #005BAB;
}
.common-button.white::after {
    background-image: url('/html/user_data/assets/img/common/common-button-arrow-blue.svg');
}
.common-button.red {
    background: #DD2B1F;
}
.common-button.red::before {
    background: #DD2B1F;
}
.common-button.red:hover {
    background: #fff;
    border: 2px solid #DD2B1F;
}
.common-button.red:hover span {
    color: #DD2B1F;
}
.common-button.red:hover::after {
    background-image: url('/html/user_data/assets/img/common/common-button-arror-red.svg');
}
.common-button span{
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    /* width: 12.5rem; */
    white-space: nowrap;
    /* transition: color 0.5 ease; */
}
.common-button:hover span {
    color: #005BAB;
}
.common-button:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('/html/user_data/assets/img/common/common-button-arrow.svg');
}
.common-button.angle-up:after {
    transform: rotate(-90deg) translateX(50%);
}
.common-button.angle-down:after {
    transform: rotate(90deg) translateX(-50%);
}
.common-button:hover:after {
    background-image: url('/html/user_data/assets/img/common/common-button-arrow-blue.svg');
}
.common-button.angle-up:hover:after {
    transform: rotate(-90deg) translateX(50%);
}
.common-button.angle-down:hover:after {
    transform: rotate(90deg) translateX(-50%);
}
.register-button {
    border-radius: 6.25rem;
    background: #fff;
    width: 20rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-out;
    box-shadow: 0px 4px 8px 0px rgba(59, 73, 89, 0.20);
}
.register-button:hover {
    background: #005BAB;
}
.register-button span {
    position: relative;
}
.register-button::before {
    content: '';
    position: absolute;
    width: 20rem;
    height: 20rem;
    background: #eeeeee;
    transform: translate(-100%, -7rem) rotate(45deg); /* Set initial state */
    transition: transform 0.5s ease-out; /* Add transition */
}
.register-button:hover::before {
    transform: translate(0, 0) rotate(45deg); /* Apply hover animation */
}
/* .register-button:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('/html/user_data/assets/img/common/common-button-arrow-blue.svg');
} */
.register-button span {
    color: var(--basecolor, #005BAB);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    width: 12.5rem;
    white-space: nowrap;
}
.login-button {
    border-radius: 6.25rem;
    /* background: #218FEF; */
    background: linear-gradient(to right, #005BAB, #006AC6);
    width: 20rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease-out;
    overflow: hidden;
    box-shadow: 0px 4px 8px 0px rgba(59, 73, 89, 0.20);
}
.login-button span {
    position: relative;
}
.login-button::before {
    content: '';
    position: absolute;
    height: 20rem;
    width: 20rem;
    background: #218FEF;
    transform: translate(-100%, -7rem) rotate(45deg); /* Set initial state */
    transition: transform 0.5s ease-out; /* Add transition */
}
.login-button:hover::before {
    transform: translate(0, 0) rotate(45deg); /* Apply hover animation */
}
.login-button:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('/html/user_data/assets/img/common/common-button-arrow.svg');
}
.login-button span{
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    width: 12.5rem;
    white-space: nowrap;
}
.back-button {
    background-color: #eeeeee;
    border-radius: 6.25rem;
    width: 15rem;
    height: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease-out;
}
.back-button span {
    color: #868686;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.1rem;
    transition: all 0.3s ease-out;
}
.back-button:hover {
    background-color: #868686;
}
.back-button:hover span {
    color: #fff;
}
.reset-button {
    border-radius: 2rem;
    background: var(--SDS-color1, #DD2B1F);
    width: 17.5rem;
    height: 3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease-out;
}
.reset-button span {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    transition: all 0.3s ease-out;
}
.reset-button:hover {
    background: #fff;
    border: 1px solid var(--SDS-color1, #DD2B1F);
}
.reset-button:hover span {
    color: var(--SDS-color1, #DD2B1F);
}
@media(max-width: 768px) {
    .common-button {
        width: 15rem;
        height: 3.5rem;
    }
    .common-button span {
        color: var(--basecolor, #FFF);
        text-align: center;
        font-size: 0.875rem;
        font-weight: 700;
        line-height: 160%; /* 1.4rem */
        letter-spacing: 0.0875rem;
    }
    .back-button {
        width: 10rem;
        height: 3.5rem;
    }
    .back-button span {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .reset-button {
        width: 15rem;
        height: 3rem;
    }
    .reset-button span {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .register-button {
        width: 13rem;
    }
    .register-button span {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}
@media(max-width: 480px) {
    .register-button {
        width: 10rem;
        height: 3rem;
        max-width: calc(100vw - 40px);
    }
    .register-button span {
        font-size: 0.75rem;
        letter-spacing: 0.075rem;
    }
}
/* top page buttton */
.back-to-top-btn {
    background-image: url(/html/user_data/assets/img/top/pagetop_default.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 6.875rem;
    width: 6.875rem;
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 1000;
}
.back-to-top-btn:hover {
    background-image: url(/html/user_data/assets/img/top/pagetop_hover.png);
}
@media(max-width: 768px) {
    .back-to-top-btn {
        right: 0.5rem;
        bottom: 1.5rem;
        height: 5rem;
        width: 5rem;
    }
}

/* pager */
.ec-pager {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    padding: 0;
    margin: 4rem 0;
}
.ec-pager .ec-pager__item a, .ec-pager .ec-pager__item--active a {
    padding: 0.6rem;
}
.ec-pager .ec-pager__item--active {
    background-color: #E9F1F3;
}
.ec-pager .ec-pager__item:hover {
    background-color: #E9F1F3;
}
@media(max-width: 768px) {
    .ec-pager .pc-only {
        display: none;
    }
}
/* form*/
.ec-borderedDefs {
    border-top: 1px solid var(--subcolor, #EEE);
}
.ec-borderedDefs dl {
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.ec-label {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-required {
    color: var(--SDS-color1, #DD2B1F);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}
@media(max-width: 768px) {
    .ec-borderedDefs {
        margin-bottom: 2rem;
    }
    .ec-label {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * HEADER
 */
/* .orient-header-container {
    width: 100%;
} */
.orient-header {
    height: 80px;
    margin: 2rem 2rem 0;
    display: flex;
    background-color: #fff;
    padding: 0 3rem;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    position: fixed;
    box-shadow: 0px 4px 12px 0px rgba(59, 73, 89, 0.25);
    width: calc(100% - 4rem);
    border-radius: 100px;
}
.orient-header-container .header-right {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.orient-header-container .header-right.orient-sp {
    display: none;
}
.header-right .sample-purchase,
.header-right .sds,
.header-right .chemsherpa,
.product-type-icons .sample-purchase,
.product-type-icons .sds,
.product-type-icons .chemsherpa
{
    width: 4.375rem;
    height: 3.125rem;
    display: flex;
    justify-content: center;
    border-radius: 0.3125rem;
    transition: all 0.3s ease-out;
}
.header-right .sample-purchase,
.product-type-icons .sample-purchase {
    background-color: #005BAB;
}
.header-right .sample-purchase:hover {
    background-color: #218FEF;
}
.header-right .sds,
.product-type-icons .sds {
    background-color: #DD2B1F;
}
.header-right .sds:hover {
    background-color: #FF827A;
}
.header-right .chemsherpa,
.product-type-icons .chemsherpa {
    background-color: #009178;
}
.header-right .chemsherpa:hover {
    background-color: #00C4A2;
}
.header-right .list-link,
.product-type-icons .list-link {
    display: flex;
    align-items: center;
}
.header-right .white-letter,
.product-type-icons .white-letter {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1rem; /* 114.286% */
}
.product-type-icons.only-sp {
    display: none;
    margin-top: 5px;
}
@media(max-width: 768px) {
    .product-type-icons.only-sp {
        display: flex;
    }
    .product-type-icons.only-pc {
        display: none;
    }
}
@media(max-width: 600px) {
    .product-type-icons .sample-purchase,
    .product-type-icons .sds,
    .product-type-icons .chemsherpa {
        width: 3.5rem;
        height: 2.5rem;
    }
    .product-type-icons .white-letter {
        font-size: 12px;
    }
}
.header-right .orient-nav{
    width: 4.06rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.0625rem;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}
.header-right .orient-nav img {
    transition: all 0.3s ease-out;
}
.header-right .orient-nav:hover {
    color: #868686;
}
.header-right .orient-nav svg {
    transition: fill 0.3s ease-out;
}
.header-right.orient-pc .orient-nav:hover svg {
    fill: #868686;
}
.header-right.orient-sp .orient-nav:hover svg {
    fill: #218FEF;
}
.header-right .orient-nav img:nth-of-type(1) {
    display: block;
}
.header-right .orient-nav img:nth-of-type(2){
    display: none;
}
.header-right .orient-nav:hover img:nth-of-type(2) {
    display: block;
}
.header-right .orient-nav:hover img:nth-of-type(1) {
    display: none;
}
.header-right .entry-nav-container {
    position: relative;
    display: inline-block;
}
.header-right .entry-speech-bubble {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0.5rem;
    background: var(--SDS-color1, #005BAB);
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    display: none;
    /* display: inline-flex; */
}
.header-right .entry-speech-bubble::after {
    content: '';
    position: absolute;
    top: -7px; /* 三角形の高さ分上に配置 */
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #005BAB; /* 背景色と同じ色 */
}
.header-right .entry-speech-bubble::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}
.entry-nav-container:hover .entry-speech-bubble,
.header-right .entry-speech-bubble:hover {
    display: inline-flex;
}
.entry-speech-bubble .entry-link {
    color: var(---color1, #005BAB);
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
    border-radius: 6.25rem;
    background: var(--basecolor, #FFF);
    width: 11rem;
    height: 2rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.entry-speech-bubble .entry-link:hover {
    opacity: 0.7;
}
.cart-container {
    background-color: #005BAB;
    border-radius: 100px;
    width: 3.6875rem;
    height: 3.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease-out;
}
.header-right .cart-container:hover {
    background-color: #218FEF;
}
.header-right .cart-container .quantity {
    background-color: #DD5D50;
    min-width: 1.25rem;
    min-height: 1.25rem;
    flex-shrink: 0;
    border-radius: 100px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}
.header-right .cart-container:hover .quantity {
    background-color: #FF827A;
}
.header-right .cart-container .quantity span {
    color: #FFF;
    font-family: "A-OTF UD Shin Go Con90 Pr6N", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 160%; /* 1.2rem */
    /* letter-spacing: 0.075rem; */
    text-align: center;
}
.header-left .logo-image {
    /* width: 16rem; */
    width: 12rem;
    /* margin-left: 1.5rem; */
}
@media(max-width: 1200px) {
    .orient-header {
        padding: 0 1rem;
    }
    .header-left .logo-image {
        margin-left: 1rem;
    }
    .orient-header-container .header-right.orient-pc {
        display: none;
    }
    .orient-header-container .header-right.orient-sp {
        display: flex;
    }
    .header-right .cart-container {
        background-color: unset;
    }
    .header-right .cart-container:hover {
        background-color: unset;
    }
    .header-right .cart-container > img {
        bottom: 5px;
        position: absolute;
    }
    .header-right .cart-container .quantity {
        top: 5px;
    }
    .header-right .hamburger {
        width: 3.5rem;
        height: 4rem;
        flex-shrink: 0;
        padding: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        z-index: 102;
    }
    .header-right .hamburger > div {
        position: relative;
        top: -0.5rem;
        left: 0;
        background: #005BAB;
        height: 2px;
        flex: 1 1 calc(75% - 2rem);
    min-width: 0;
        transition: all  0.4s ease;
        display: flex;
        justify-content: center;
    }
    .header-right .hamburger > div::before,
    .header-right .hamburger > div::after {
        content: '';
        position: absolute;
        top: -10px;
        background: #005BAB;
        width: 100%;
        height: 2px;
        transition: all  0.4s ease;
    }
    .header-right .hamburger > div::after {
        top: 10px;
    }
    .header-right .hamburger-menu {
        position: absolute;
        bottom: -35px;
        /* right: -5px; */
        color: #005BAB;
        text-align: center;
        font-family: Roboto, sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        line-height: 160%; /* 1.2rem */
        letter-spacing: 0.075rem;
        cursor: pointer;
        z-index: 102;
    }
    .header-right .hamburger.active > div {
        background-color: transparent;
    }
    .header-right .hamburger.active > div::before {
        transform: rotate(45deg);
        top: 0;
    }
    .header-right .hamburger.active > div::after {
        transform: rotate(-45deg);
        top: 0;
    }
    .header-right .toggle-menu {
        position: absolute;
        top: -2rem;
        right: -2rem;
        display: flex;
        display: none;
        padding: 2.5rem 1.25rem 2.5rem 2rem;
        background-color: white;
        flex-direction: column;
        z-index: 101;
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(134, 134, 134, 0.50);
        display: none;
        z-index: 100;
    }
    .header-right .toggle-menu .products-type-button {
        display: none;
    }
    .header-right .toggle-menu .sp-navi-list {
        margin: 5rem 0 2rem;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .header-right .toggle-menu .sp-navi-list li {
        list-style: none;
        color: var(---color1, #005BAB);
        font-size: 1rem;
        font-weight: 700;
        line-height: 160%; /* 1.6rem */
        letter-spacing: 0.1rem;
        position: relative;
        padding: 0.75rem 0 0.5rem;
        border-bottom: 1px solid var(--subcolor, #EEE);
    }
    .header-right .toggle-menu .sp-navi-list li:hover {
        color: #218FEF;
    }
    .header-right .toggle-menu .sp-navi-list li::after {
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        content: '';
        width: 1.25rem;
        height: 1.25rem;
        background-image: url('/html/user_data/assets/img/common/common-button-arrow-blue.svg');
    }
    .header-right .toggle-menu .sp-navi-list li:hover::after {
        background-image: url('/html/user_data/assets/img/common/common-button-arrow-blue-hover.svg');
    }
    .header-right .toggle-menu .sp-navi-list .orient-nav {
        width: 100%;
        gap: 0.5rem;
        flex-direction: row;
    }
    .header-right .register-login-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        align-self: stretch;
    }
    .header-right .register-login-container .common-button {
        box-shadow: 0px 2px 8px 0px rgba(59, 73, 89, 0.20);
    }
    .header-right .register-login-container .common-button.white {
        width: 15rem;
    }
    .header-right .register-login-container .common-button.white::after {
        display: none;
    }
    .header-right .register-login-container .common-button.white span {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
}
@media(max-width: 768px) {
    .orient-header {
        height: 4rem;
        border-radius: unset;
        box-shadow: unset;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .orient-header .header-left {
        margin-left: 1.25rem;
    }
    .header-left .logo-image {
        /* width: 12.5rem; */
        width: 10.5rem;
        margin-left: 0;
    }
    .header-right .hamburger {
        background-color: #005BAB;
    }
    .header-right .hamburger > div {
        background: white;
    }
    .header-right .hamburger > div::before,
    .header-right .hamburger > div::after {
        background: white;
    }
    .header-right .hamburger {
        width: 4rem;
        height: 4rem;
        flex-shrink: 0;
        padding: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        z-index: 101;
    }
    .header-right .hamburger-menu {
        color: white;
        bottom: -33px;
        /* right: -1px; */
    }
    .header-right > .sample-purchase,
    .header-right > .sds,
    .header-right > .chemsherpa {
        display: none;
    }
    .header-right .toggle-menu {
        position: absolute;
        top: 4rem;
        right: 0;
        display: flex;
        display: none;
        padding: 2.5rem 1.25rem 2.5rem 2rem;
        background-color: white;
        flex-direction: column;
        z-index: 101;
    }
    .header-right .toggle-menu .products-type-button {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0.5rem;
    }
    .header-right .toggle-menu .sp-navi-list {
        margin: 2rem 0;
        padding: 0;
        gap: 0.75rem;
    }
}
/* HEADER_BOTTOM_BANNER */
.header-bottom-banner {
    background-color: #005BAB;
    color: white;
    height: 12rem;
    width: 100%;
    padding-top: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
    color: var(--basecolor, #FFF);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 160%; /* 2.8rem */
    letter-spacing: 0.175rem;
    position: absolute;
    left: 0;
}
@media(max-width: 768px) {
    .header-bottom-banner {
        height: 7.5rem;
        padding-top: 4rem;
        font-size: 1.25rem;
        letter-spacing: 0.125rem;
    }
}

/*
 * FOOTER
 */
.orient-footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #E9F1F3;
    padding: 80px 0px 8px 0px;
    overflow: hidden;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
}
.orient-footer-container .orient-flex {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 100px;
    max-width: 1200px;
    width: 100%;
}
.footer-navi-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.footer-navi-container .navi-group {
    width: 201px;
}
.footer-navi-container .navi-group .title {
    color: var(---color1, #005BAB);
    font-size: 16px;
    font-weight: 700;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
    display: flex;
    padding-bottom: 8px;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    border-bottom: 1px solid var(---color1, #005BAB);
    margin-bottom: 12px;
}
.footer-navi-container .navi-group ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    padding-left: 0;
}
.footer-navi-container .navi-group ul .footer-navi a {
    color: #1D2129;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}
.footer-navi-container .navi-group ul .footer-navi a:hover {
    color: #005BAB;
}
.footer-navi-container .navi-group ul.column-tag {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-navi-container .navi-group ul li {
    list-style: none;
}
.footer-contact-container {
    display: flex;
    width: 301px;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}
.footer-contact-container .logo-mail-container {
    display: flex;
    flex-direction: column;
    /* align-items: flex-end; */
    gap: 10px;
    width: 99%;
}
.footer-contact-container .orient-logo {
    /* padding: 0 35px; */
}
/* .footer-contact-container .orient-email {
    align-self: stretch;
    color: var(---color1, #005BAB);
    text-align: center;
    font-family: Outfit, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 1.2px;
} */
.orient-contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background-color: #005BAB;
    padding: 32px 35px;
    width: 300px;
    height: 198px;
    /* Text(PC)/ja/text_h3 */
    font-family: "Noto Sans JP", sans-serif;
}
.orient-contact-box .orient-contact-title {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%; /* 25.6px */
    letter-spacing: 1.6px;
}
.orient-contact-box .orient-contact-button {
    background-color: white;
    border-radius: 100px;
    display: flex;
    padding: 0.5rem 2.5rem;
    align-items: center;
    gap: 8px;
    color: #005BAB;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%; /* 32px */
    letter-spacing: 2px;
    white-space: nowrap;
    transition: all 0.3s ease-out;
}
.orient-contact-box .orient-contact-button:hover {
    background-color: rgba(255, 255, 255, 0.70);
}
.orient-contact-box .orient-contact-button span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.orient-contact-box .phone-hour {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
    letter-spacing: 1.2px;
}
.orient-contact-box .phone-hour span {
    color: #fff;
}
.orient-footer-container .copyright {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 10px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
    z-index: 1;
}
.footer-background-letter {
    height:80px;
    margin-top: -80px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: -10px;
}
.footer-background-letter p {
    font-family: Outfit, sans-serif;
    white-space: nowrap;
    text-align: center;
    color: white;
    font-size: clamp(36px, calc(100vw / 11), 130px);
    line-height: clamp(36px, calc(100vw / 11), 130px);
    font-weight: bold;
}
@media(max-width: 1000px) {
    .orient-footer-container .orient-flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-contact-container {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        width: unset;
    }
    .footer-contact-container .orient-logo {
        padding: 0 35px;
    }
    .footer-contact-container .logo-mail-container {
        width: 20rem;
    }
}
@media(max-width: 768px) {
    .orient-footer-container{
        padding: 2rem 1.25rem 1.25rem;
        gap: 1.25rem;
    }
    .orient-footer-container .orient-flex{
        display: block;
        margin-bottom: 2.5rem;
    }
    .footer-navi-container {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }
    .footer-navi-container .navi-group {
        width: unset;
    }
    .footer-navi-container .navi-group .title {
        padding: 0.75rem 0;
        justify-content: space-between;
        margin-bottom:0.75rem;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1rem;
        letter-spacing: 0.1rem;
        cursor: pointer;
    }
    .footer-navi-container .navi-group ul{
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        align-self: stretch;
        margin-bottom: 1.5rem;
    }
    .footer-navi-container .navi-group ul .footer-navi a {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .icon-plus,
    .icon-minus {
        width: 24px;
        height: 24px;
        position: relative;
    }
    .icon-plus:before,
    .icon-plus:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 50%;
        width: 0.8125rem;
        height: 0.8125rem;
        border-top: 1px solid #005BAB;
        transform: translateX(-50%);
        transition: transform 0.3s ease;
    }
    .icon-plus:after {
        top: 9px;
        left: 0;
        transform: rotate(90deg);
    }
    .icon-minus:after {
        transform: translateY(5.9px) translateX(5px) rotate(0deg); /* 縦線を90度回転させる */
    }
    .footer-contact-container {
        width: 100%;
        align-items: center;
        gap: 0.625rem;
        flex-direction: column;
    }
    .footer-contact-container .orient-contact-box {
        width: 100%;
        height: auto;
        padding: 1.25rem 1.625rem;
    }
    .footer-contact-container .orient-contact-box .phone-hour {
        display: flex;
        gap: 0.5rem;
    }
    .orient-contact-box .orient-contact-title {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .orient-contact-box .orient-contact-button {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .orient-contact-box .phone-hour {
        font-size: 0.625rem;
        letter-spacing: 0.0625rem;
    }
    .footer-background-letter {
        display: none;
    }
    .orient-footer-container .copyright {
        font-size: 0.625rem;
        letter-spacing: 0.0625rem;
        text-align: start;
    }
}

/* FOOTER BANNER */
.footer-banner-container {
    background: linear-gradient(to right, #005BAB, #006AC6);
    display: flex;
    width: 100%;
    padding: 4rem 2.5rem;
    justify-content: center;
    align-items: center;
}
.footer-banner-container .banners_pc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-banner-container .banners_pc .banner,
.footer-banner-container .banners_sp .banner {
    transition: all 0.3s ease-out;
}
.footer-banner-container .banners_pc .banner:hover,
.footer-banner-container .banners_sp .banner:hover {
    opacity: 0.7;
}
.footer-banner-container .banners_sp {
    display: none;
}
.footer-banner-container .banners_pc .banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.footer-banner-container .banners_pc .banner img {
    width: 21.6875rem;
    height: 7.25rem;
}
@media(max-width: 768px) {
    .footer-banner-container .banners_pc * {
        display: none;
    }
    .footer-banner-container {
        padding: 2rem 1.25rem;
        display: block;
    }
    .footer-banner-container .banners_sp {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-banner-container .banners_sp .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    .footer-banner-container .banners_sp .banner img {
        width: 21.6875rem;
        height: 5rem;
    }
}

/*
 * FV BLOCK
 */
.fv-container {
    background-image: url('/html/user_data/assets/img/top/grid.svg');
    background-repeat: repeat;
    width: 100%;
    padding: 10rem 4rem 5rem;
}
.fv-title-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fv-container .fv-title {
    color: var(---color1, #005BAB);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fv-container .fv-title:after {
    content: '';
    background-image: url('/html/user_data/assets/img/top/top-fv-character.svg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    width: calc(100vw - 1rem);
    height: 100px;
    display: block;
    position: absolute;
    z-index: 0;
}
.fv-container .fv-button-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-direction: row-reverse;
}
.fv-button-box .register-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.fv-products-buttons a img {
    width: 100%;
    max-width: 15rem;
}
.fv-products-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.fv-products-buttons a {
    transition: all 0.3s ease-out;
}
.fv-products-buttons a:hover {
    opacity: 0.7;
}
.fv-products-buttons .fv-sds-chemsherpa-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.fv-products-buttons .fv-sds-chemsherpa-container .sp {
    display: none;
}
@media(max-width: 1024px) {
    .fv-container .fv-button-box {
        flex-direction: column;
    }
}
@media(max-width: 768px) {
    .fv-container {
        padding: 5rem 2rem 2rem;
    }
    .fv-products-buttons {
        flex-direction: column;
    }
    .fv-products-buttons a img {
        max-width: unset;
    }
    .fv-products-buttons .fv-sds-chemsherpa-container .pc {
        display: none;
    }
    .fv-products-buttons .fv-sds-chemsherpa-container .sp {
        display: flex;
    }
    .fv-button-box .register-button-container {
        gap: 0.5rem;
    }
}


/*
 * NEWS BLOCK
*/
.news-container {
    /* margin-bottom: 7.5rem; */
    background-image: url('/html/user_data/assets/img/top/grid.svg');
    width: 100%;
    padding: 0 4rem 7.5rem;
}
.news-role{
    /* margin-top: 4.06rem;
    margin-bottom: 5rem; */
    max-width: 1120px;
    margin: 4.06rem auto 5rem;
}
.news-role .news-item {
    display: flex;
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-top: 1px solid var(--subcolor, #EEE);
    cursor: default;
}
.news-role .news-item:hover .news-title {
    color: #005BAB;
}
.news-role .news-item:last-child {
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.news-item .news-date {
    color: var(--accentcolor, #868686);
    font-family: Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}
.news-item .news-column{
    display: flex;
    align-items: center;
}
.news-item .news-title {
    overflow: hidden;
    color: var(--maincolor, #1D2129);
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.news-item .news-arrow-right {
    width: 1.5rem;
    height:1.5rem;
    margin-right: 0.5rem;
}
.news-item .news-description {
    color: var(--maincolor, #1D2129);
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-left: 2.5rem;
    /* display: -webkit-box; */
    /* overflow: hidden; */
    /* width: 63.0625rem; */
    /* -webkit-box-orient: vertical; */
    /* -webkit-line-clamp: 2; */
}
.news-item .news-url {
    margin-top: 0.5rem;
}
.news-button-container {
    display: flex;
    justify-content: center;
}
@media(max-width: 768px) {
    .news-container {
        padding-bottom: 2rem;
        margin-bottom: 0;
    }
    .news-container .news-role{
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    .news-container .news-item {
        padding: 0.75rem 0.5rem;
        gap: 0.25rem;
    }
}

/**
 * COLUMN BLOCK
 */
.column-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 5rem;
    padding: 0 20px;
}
.columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15.9375rem, 1fr));
    gap: 1.25rem;
    align-items: start;
    margin-top: 3.75rem;
    margin-bottom: 5rem;
    justify-content: center;
}
.columns .column {
    display: flex;
    min-width: 10rem;
    flex-direction: column;
    height: 100%;
}
.columns .column .column-image {
    /* width: 100%; */
    /* height: 11.875rem; */
    aspect-ratio: 4 / 3;
    object-fit: cover;
    overflow: hidden;
    transition: all 0.3s ease-out;
    margin-bottom: 0.75rem;
}
.columns .column .tags .tag {
    transition: all 0.3s ease-out;
}
.columns .column .column-image:hover{
    opacity: 0.7;
}
.columns .column .column-title:hover {
    color: #005BAB;
}
.columns .column .tags .tag:hover {
    background: #eee;
}
.column .column-title {
    display: -webkit-box;
    /* width: 15.9375rem; */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: var(--maincolor, #1D2129);
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-bottom: 1.25rem;
}
.column .tags {
    display: flex;
    /* gap: 1rem; */
    flex-wrap: wrap;
}
.column .tags .tag{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    color: var(--accentcolor, #868686);
    text-overflow: ellipsis;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
    display: flex;
    padding: 0.125rem 0.5rem;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.3125rem;
    border: 1px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}
@media(max-width: 768px) {
    .column-container {
        margin-bottom: 2.5rem;
        padding: 1.25rem 1rem 0;
    }
    .column-container .columns {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    /* .columns .column {
        display: flex;
        width: calc(50% - 0.625rem);
        padding-bottom: 1.4375rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    } */
    .columns .column .column-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .column .column-title {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        margin-bottom: 0.75rem;
    }
    .column .tags .tag {
        letter-spacing: 0.0625rem;
        font-size: 0.625rem;
    }
}

/**
 * SEARCH PRODUCT FORM
 */
.search-form-background {
    border-radius: 1.25rem;
    background: var(---color3, #E9F1F3);
    display: flex;
    padding: 2rem 3% 4rem;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 2rem;
}
.search-form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
}
.search-form-container .form-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 3.88rem; */
}
.search-form-container .form-title{
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    width: 9.9375rem;
    margin-right: 1rem;
}
.search-form-container .orient-form{
    border-radius: 0.1875rem;
    background: var(--basecolor, #FFF);
    flex: 1 1 calc(65% - 2rem);
    min-width: 0;
    height: 2.5rem;
    padding: 0.63rem 0 0.63rem 0.7rem;
    border: none;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}
.search-form-container .orient-form::placeholder{
    color: #EEE;
}
.search-form-container .orient-form-color-container{
    flex: 1 1 calc(65% - 2rem);
    min-width: 0;
}
.search-form-container .orient-form-color{
    display: flex;
    /* width: 28.125rem; */
    width: 80%;
    align-items: center;
    align-content: center;
    gap: 1.25rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.search-form-container .orient-form-color .color{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.search-form-container .orient-form-color .color input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    width: 2rem;
    height: 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 0.2rem;
}
.search-form-container .orient-form-color .color input[type="checkbox"]:checked {
    position: relative;
}
.search-form-container .orient-form-color .color input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    height: 2rem;
    width: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/html/user_data/assets/img/common/search-product-check.svg');
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
}
.search-form-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-form-button-container .search-form-button {
    width: 15rem;
    height: 3rem;
    border-radius: 6.25rem;
    border: 1px solid var(--accentcolor, #868686);
    background: var(--accentcolor, #868686);
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.search-form-button-container .search-form-button:before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background-image: url('/html/user_data/assets/img/common/search-white.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.search-form-button-container .search-form-button:hover {
    background: var(--accentcolor, #fff);
    color: var(--accentcolor, #868686);
    border: 1px solid var(--accentcolor, #868686);
}
.search-form-button-container .search-form-button:hover:before {
    background-image: url('/html/user_data/assets/img/common/search-grey.svg');
}
@media(max-width: 768px) {
    .search-form-background {
        padding: 1rem 1rem 2.5rem;
        border-radius: unset;
        gap: 1rem;
    }
    .search-form-container .form-group {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .search-form-container .form-title {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .search-form-container .orient-form {
        width: 100%;
        padding: 0.625rem 0.75rem;
    }
    .search-form-container .orient-form-color-container {
        width: 100%;
    }
    .search-form-container .orient-form-color {
        width: 100%;
    }
    .search-form-container .orient-form-color .color input[type="checkbox"] {
        width: 1.25rem;
        height: 1.25rem;
    }
    .search-form-container .orient-form-color .color {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .search-form-button-container .search-form-button {
        margin-top: 1rem;
    }
}

/*
 * PRODUCTS TOP BLOCK
*/
.category-search-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}
.products-top-block {
    margin-top: 12rem;
    /* padding-top: 4rem; */
    padding: 0 1rem;
}
.category-container {
    margin: 2rem 0 5rem;
    padding: 0 10px;
}
.category-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.category-lists .category-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    padding: 2rem 1.5rem 1rem;
    width: calc(33.33333% - 0.46666rem);
    min-height: 10rem;
}
.category-list .category-list-title {
    color: var(---color1, #005BAB);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    margin-bottom: 1.25rem;
}
.category-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.category-list ul a {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1rem;
}
.category-list ul a:hover {
    color: #005BAB;
}
.category-list ul li {
    position: relative;
}
.category-list ul li::before {
    content: url('/html/user_data/assets/img/common/category-list-arrow.svg');
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
}
.utility-container {
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.utility-container .utility-list {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.utility-container .utility-list .utility-item {
    display: flex;
    align-items: center;
    width: calc(33.33333% - 0.83333rem);
    transition: all 0.3s ease-out;
}
.utility-container .utility-list .utility-item:hover {
    opacity: 0.7;
}
.utility-container .utility-list .utility-item.hide-item {
    display: none;
}
.utility-container .utility-list .utility-item .utility-img {
    width: 5.625rem;
    height: 5.625rem;
    flex-shrink: 0;
}
.utility-container .utility-list .utility-item .utility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.utility-container .utility-list .utility-item .utility-text {
    background: var(--gray2, #F8F8F8);
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1rem;
    display: flex;
    width: calc(100% - 5.625rem);
    height: 5.625rem;
    padding: 1.25rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.utility-container .show-all-button-container {
    display: flex;
    justify-content: center;
}
@media(max-width: 1000px) {
    .category-container {
        padding: 0 1rem;
    }
    .category-lists .category-list {
        width: calc(50% - 0.349rem);
    }
    .utility-container .utility-list .utility-item {
        width: calc(50% - 0.63rem);
    }
}
@media(max-width: 768px) {
    .products-top-block {
        margin-top: 10rem;
    }
    /* .category-container {
        margin-bottom: 2rem;
    } */
    .category-lists {
        margin-top: 1rem;
        flex-direction: column;
    }
    .category-lists .category-list {
        width: 100%;
        min-height: unset;
        padding: 1.25rem;
    }
    .category-list ul {
        margin-bottom: 0;
    }
    .category-list .category-list-title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .category-list ul a {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .utility-container {
        margin-bottom: 2.5rem;
    }
    .utility-container .utility-list {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .utility-container .utility-list .utility-item {
        width: 100%;
        max-width: 500px;
    }
    .utility-container .utility-list .utility-item .utility-img {
        width: 5rem;
        height: 5rem;
    }
    .utility-container .utility-list .utility-item .utility-text {
        width: calc(100% - 5rem);
        height: 5rem;
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .utility-container .utility-list .utility-item.hide-item-sp {
        display: none;
    }
}

/*
 * PRODUCTS LIST BLOCK
*/
.products-list-block {
    margin-top: 12rem;
    padding: 0 1rem;
}
.breadcramb-container {
    padding: 2rem 0rem;
}
.breadcramb-container .breadcramb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    flex-wrap: wrap;
}
.breadcramb-container .breadcramb .breadcramb-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.breadcramb-container .breadcramb .breadcramb-item:not(.active):after {
    content: '/';
    width: 0.0625rem;
    height: 1rem;
    color: #EEEEEE;
}
.breadcramb-container .breadcramb .breadcramb-item a{
    color: var(--accentcolor, #868686);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.075rem;
    transition: all 0.3s ease-out;
}
.breadcramb-container .breadcramb .breadcramb-item:not(.active) a:hover {
    opacity: 0.7;
}
.breadcramb-container .breadcramb .breadcramb-item.active a {
    color: var(--maincolor, #1D2129);
}
.category-product-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    /* padding: 0 1.25rem; */
    /* margin-bottom: 5rem; */
}
.category-usage-container {
    /* width: 30%; */
    width: 25%;
    min-width: 15rem;
    margin-bottom: 3rem;
}
.category-usage-container-top {
    margin-bottom: 0;
}
.category-block,
.usage-block,
.feature-block {
    display: flex;
    flex-direction: column;
}
.category-block,
.usage-block{
    margin-bottom: 2rem;
}
.category-usage-container .category-list,
.category-usage-container .usage-list,
.category-usage-container .feature-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}
.category-usage-container .category-list a,
.category-usage-container .usage-list a,
.category-usage-container .feature-list a {
    padding: 1rem 1.25rem 0.75rem 1.25rem;
    border-bottom: 1px solid var(--subcolor, #EEE);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    align-self: stretch;
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    transition: all 0.3s ease-out;
}
.category-usage-container .category-list a:hover,
.category-usage-container .usage-list a:hover,
.category-usage-container .feature-list a:hover {
    background-color: #E9F1F3;
}
.category-usage-container .category-title,
.category-usage-container .usage-title,
.category-usage-container .feature-title {
    display: flex;
    height: 4rem;
    padding: 1rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: var(---color1, #005BAB);
    color: var(--basecolor, #FFF);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    cursor: pointer;
}
.category-block .category-title::after,
.usage-block .usage-title::after,
.feature-block .feature-title::after {
    content: url('/html/user_data/assets/img/common/white-arror-top.svg');
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}
.category-block .category-title.rotate-180,
.usage-block .usage-title.rotate-180,
.feature-block .feature-title.rotate-180 {
    background-color: #868686;
}
.category-block .category-title.rotate-180::after,
.usage-block .usage-title.rotate-180::after,
.feature-block .feature-title.rotate-180::after {
    transform: rotate(180deg) translateY(-25%);
}
.products-list-block .product-container {
    flex: 1 1 calc(75% - 2rem);
    min-width: 0;
}
.product-container .infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
}
.product-container .products {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.product-container .products .product {
    width: 100%;
    border: 1px solid var(--subcolor, #EEE);
    padding-left: 2rem;
    padding-top: 2.13rem;
    padding-bottom: 1.25rem;
    padding-right: 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background-color: #fff;
}
[id^=page_product_list] .product-container .products .product:hover {
    box-shadow: 0 0 15px #b4dbfa;  /* #005BABを使用した影 */
    transform: translateY(-2px);
}
[id^=page_sds_list] .product-container .products .product:hover {
    box-shadow: 0 0 15px #f8bcbc;
    transform: translateY(-2px);
}
[id^=page_chemsherpa_list] .product-container .products .product:hover {
    box-shadow: 0 0 15px #a5faa2;
    transform: translateY(-2px);
}
[id^=page_product_list] .product-container .products .product:active {
    box-shadow: 0 0 5px #b4dbfa;
    transform: translateY(0);
}
[id^=page_sds_list] .product-container .products .product:active {
    box-shadow: 0 0 5px #f8bcbc;
    transform: translateY(0);
}
[id^=page_chemsherpa_list] .product-container .products .product:active {
    box-shadow: 0 0 5px #a5faa2;
    transform: translateY(0);
}
.product-container .products .product .favorite-button {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
}
.product-container .products .product .product-name-version-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.product-container .products .product .product-name {
    color: var(--maincolor, #1D2129);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
}
.product-container .products .product .product-version {
    display: flex;
    /* width: 3.8125rem; */
    height: 1.5625rem;
    padding: 0.125rem 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    color: var(--accentcolor, #868686);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    border-radius: 0.25rem;
    border: 1px solid var(--accentcolor, #868686);
}
.product-container .products .product .product-prices {
    display: flex;
    flex-wrap: wrap;
    /* gap: 2.5rem; */
    margin-bottom: 1.12rem;
}
.product-container .products .product .product-prices .product-class-price {
    display: flex;
    gap: 0.5rem;
}
.product-container .products .product .product-prices .product-class-price:not(:last-child) {
    margin-right: 2.5rem;
}
.product-container .products .product .product-prices .product-class-price .product-class {
    color: var(--maincolor, #1D2129);
    text-align: right;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1rem;
}
.product-container .products .product .product-prices .product-class-price .product-price {
    color: var(--SDS-color1, #DD2B1F);
    text-align: right;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.1rem;
}
.product-container .products .product .product-prices .product-class-price .product-price span {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: normal;
}
.product-container .cart-button-container form{
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-right: 1.25rem;
    height: 2.19rem;
}
.product-container .cart-button-container .cart-button-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-right: 1.25rem;
    height: 2.19rem;
}
.product-container .products .product .product-class-quantity {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.product-container .product-class-category,
.product-container .product-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.product-container .product-class-category .product-class-category-label,
.product-container .product-quantity .product-quantity-label {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
    white-space: nowrap;
}
.product-container .cart-button-container form .form-select {
    --bs-form-select-bg-img: url('/html/user_data/assets/img/common/form-select-arrow.svg');;
    background-size: 0.375rem;
    display: flex;
    padding: 0.5rem 1.75rem 0.5rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 1.25rem; /* Adjusted gap between text and image */
    background-position: right 0.5rem center;
}
.product-container .cart-button-container form .form-control {
    display: flex;
    padding: 0.5rem 1rem 0.5rem 2rem;
    justify-content: center;
    align-items: center;
    width: 5rem;
}
.product-container .cart-button-container .cart-button {
    border-radius: 0.3125rem;
    background: var(--SDS-color1, #DD2B1F);
    display: flex;
    width: 9.375rem;
    height: 2.1875rem;
    padding: 0.5rem 1.25rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 100%; /* 0.75rem */
    letter-spacing: 0.075rem;
    border: none;
    width: 10rem;
    transition: all 0.3s ease-out;
}

/* Add maintenance period button styles */
.product-container .cart-button-container .cart-button.maintenance-period {
    width: 260px;
    height: 2.6rem;
    pointer-events: none;  /* Disable hover effects */
    cursor: default;
}

/* Override default hover styles for maintenance period button */
.product-container .cart-button-container .cart-button.maintenance-period:hover {
    background: var(--SDS-color1, #DD2B1F);
    border: none;
    color: #FFF;
    opacity: 1;  /* Prevent opacity change */
    transform: none;  /* Prevent any transform */
}

.product-container .cart-button-container .cart-button.reservation-button {
    background: #F68971;
}
.product-container .cart-button-container .cart-button:hover {
    background: white;
    border: solid 1px #DD2B1F;
    color: #DD2B1F;
}
.product-container .cart-button-container .cart-button.reservation-button:hover {
    background: white;
    border: solid 1px #F68971;
    color: #F68971;
}
.product-container .cart-button-container button.cart-button::before {
    content: '';
    background-image: url('/html/user_data/assets/img/common/cart-white.svg');
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}
.product-container .cart-button-container .cart-button.reservation-button::before {
    content: '';
    background-image: url('/html/user_data/assets/img/products_list/calendar.svg');
    background-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}
.product-container .cart-button-container .cart-button:hover::before {
    content: '';
    background-image: url('/html/user_data/assets/img/common/cart-red.svg');
}
.product-container .cart-button-container .cart-button.reservation-button:hover::before {
    content: '';
    background-image: url('/html/user_data/assets/img/products_list/calendar_hover.svg');
}
.product-container .non-login-message {
    text-align: right;
}
.product-container .non-login-message,
.product-detail-container .non-login-message {
    color: var(--maincolor, #1D2129);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.1rem;
    text-align: center;
}
.sp-category-nav,
.sp-list .category-list,
.sp-list .usage-list,
.sp-list .background {
    display: none;
}
.sp-list .sp-usage-title,
.sp-list .sp-feature-title {
    display: flex;
    padding: 1rem 1.25rem 1rem 1.25rem;
    /* padding: 0rem 1.25rem 0.75rem 1.25rem; */
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--basecolor, #FFF);
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    background: #d5e2eb;
}
.disp-number-select {
    margin-bottom: 0;
    display: flex;
    gap: 0.75rem;
}
.disp-number.form-select,
.order-by.form-select {
    background-color: white;
    color: var(--maincolor, #1D2129);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("/html/user_data/assets/img/common/black-polygon-down.svg");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 0.375rem;
    padding-right: 1.3rem;
}
.products-list-block + .search-product-container {
    margin-bottom: 5rem;
    padding: 0 1rem;
}
@media(max-width: 768px) {
    .products-list-block + .search-product-container {
        padding: 0;
    }
    .product_page .header-bottom-banner {
        height: 10rem;
        padding-top: 7rem;
    }
    .products-list-block .product-container {
        width: 100%;
    }
    .category-product-container {
        margin-bottom: 2.5rem;;
    }
    .products-list-block {
        margin-top: 10rem;
    }
    .sp-list .category-list,
    .sp-list .usage-list {
        position: fixed;
        top: 10rem;
        z-index: 98;
        background-color: #E9F1F3;
        flex-direction: column;
        width: 100%;
        max-height: calc(100vh - 10rem);
        padding-top: 2.5rem;
        /* gap: 1.25rem; */
        overflow-y: scroll; /* Enable scrolling */
        padding-bottom: 8rem;
        /* padding-bottom: 2.5rem; */
    }
    .sp-list .category-list a,
    .sp-list .usage-list a {
        display: flex;
        padding: 1rem 1.25rem 1rem 1.25rem;
        /* padding: 0rem 1.25rem 0.75rem 1.25rem; */
        align-items: center;
        align-self: stretch;
        border-bottom: 1px solid var(--basecolor, #FFF);
        color: var(--maincolor, #1D2129);
        font-size: 1rem;
        font-weight: 400;
        line-height: 160%; /* 1.6rem */
        letter-spacing: 0.1rem;
    }
    .sp-list .background {
        height: calc(100vh - 10rem);
        width: 100%;
        background: rgba(134, 134, 134, 0.50);
        position: fixed;
        top: 10rem;
        z-index: 97;
    }
    .breadcramb-container {
        padding: 1.25rem 0 2rem;
    }
    .breadcramb-container .breadcramb {
        padding: 0;
    }
    .sp-category-nav{
        display: flex;
        position: fixed;
        top: 7rem;
        z-index: 1;
        height: 3rem;
        width: 100%;
    }
    .sp-category-nav .category-title {
        border-right: 0.125rem white solid;
    }
    .sp-category-nav .category-title,
    .sp-category-nav .usage-title {
        width: 50%;
        background: #EEE;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        color: var(--maincolor, #1D2129);
        font-size: 0.875rem;
        font-weight: 500;
        line-height: 160%;
        letter-spacing: 0.0875rem;
    }
    .sp-category-nav .category-title.select,
    .sp-category-nav .usage-title.select {
        background: #E9F1F3;
    }
    .sp-category-nav .category-title:after,
    .sp-category-nav .usage-title:after {
        content: '';
        width: 1.5rem;
        height: 1.5rem;
        background-image: url('/html/user_data/assets/img/common/black-arrow-down.svg');
        background-size: 1.5rem;
        transition: all 0.3s ease-out;
    }
    .sp-category-nav .category-title.select:after,
    .sp-category-nav .usage-title.select:after {
        transform: rotate(180deg);
    }
    .category-usage-container {
        display: none;
    }
    .product-container {
        width: 100%;
    }
    .product-container .infos {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
        margin: 1.25rem 0;
    }
    .product-container .products .product {
        height: unset;
        padding-top: 1.25rem;
    }
    .product-container .products .product .product-name-version-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .product-container .products .product .product-name {
        font-size: 1rem;
        font-weight: 700;
        line-height: 160%; /* 1.6rem */
        letter-spacing: 0.1rem;
    }
    .product-container .products .product .product-prices .product-class-price .product-class {
        font-size: 0.875rem;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: 0.0875rem;
    }
    .product-container .products .product .product-prices .product-class-price .product-price {
        font-size: 0.875rem;
        font-weight: 700;
        line-height: 160%;
        letter-spacing: 0.0875rem;
    }
    .product-container .products .product .product-prices {
        margin-bottom: 0.75rem;
    }
    .product-container .cart-button-container form {
        flex-direction: column;
        height: unset;
        gap: 0.75rem;
    }
    .product-container .cart-button-container .cart-button {
        width: 100%;
        height: 3rem;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    .product-container .products .product .product-prices .product-class-price:not(:last-child) {
        margin-right: 0.5rem;
    }
    .ec-pager {
        margin: 1.25rem 0 0;
    }
    .products-list-block + .search-product-container {
        margin-bottom: 0;
    }
}

/* category header */
.category-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.category-header-title {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 160%; /* 3.6rem */
    letter-spacing: 0.1125rem;
    color: #005BAB;
    margin: 0;
}
.category-header-description {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
@media(max-width: 768px) {
    .category-header-title {
        font-size: 1.75rem;
        letter-spacing: 0.0875rem;
    }
    .category-header-description {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * PRODUCT DETAIL BLOCK
*/
.product-detail-container {
    margin-top: 12rem;
    padding: 0 1.25rem;
    margin-bottom: 5rem;
}
.product-detail-container .product-detail {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1 1 calc(75% - 2rem);
    min-width: 0;
}
.product-detail .product-price-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.product-detail .detail-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--subcolor, #EEE);
    padding-bottom: 0.6rem;
}
.detail-header .product-name{
    color: var(---maincolor, #1D2129);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 160%; /* 3.6rem */
    letter-spacing: 0.1125rem;
}
.detail-header .favorite-container {
    margin-left: 1rem;
}
.detail-header .favorite-container a {
    display: flex;
    align-items: center;
    color: var(--maincolor, #1D2129);
    text-align: right;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    white-space: nowrap;
}
.product-detail .product-info {
    background: var(--gray2, #F8F8F8);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-info .info-column {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    border-bottom: 1px solid var(--subcolor, #EEE);
    padding-bottom: 0.5rem;
    display: flex;
    flex-direction: row;
}
.product-info .info-column .title {
    font-weight: 500;
    width: 12.5rem;
}
.product-detail .image-description-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 1.25rem;
}
.product-detail .image-description-container img {
    width: 35%;
    height: 100%;
    object-fit: contain;
}
.product-detail .description-detail {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    max-width: 100%;
}
.product-detail .usage-proof {
    color: var(--SDS-color1, #DD2B1F);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
}
.product-detail form.form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    /* margin-top: 2.5rem; */
}
.product-detail form.form .price-column {
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.price-column .price-row-container {
    display: grid;
    grid-template-columns: minmax(auto, 0.5fr) minmax(auto, 1fr) minmax(auto, 1fr);
    align-items: center;
    width: 100%;
}
.non-customer-price-column {
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0.75rem;
    border-bottom: 1px solid var(--subcolor, #EEE);
    gap: 1rem;
}
.price-column .class-name,
.non-customer-price-column .class-name {
    justify-self: start;
    color: #525263;
    /* font-family: Roboto; */
    font-family: Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 160%; /* 2.8rem */
    letter-spacing: 0.035rem;
}

.price-column .price-row {
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-column .price-row .price {
    color: var(--SDS-color1, #DD2B1F);
    font-family: Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 160%; /* 2.8rem */
    letter-spacing: 0.035rem;
    white-space: nowrap;
}

.price-column .price-row .price span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.075rem;
}

.price-column .price-row .price-inc-tax {
    color: #525263;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}

.product-detail .price-column .quantity-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    justify-self: center;
}

.price-column .quantity-row input {
    width: 5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.3125rem;
    border: 1px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    text-align: center;
}
.quantity-row input {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.quantity-row input::-webkit-inner-spin-button,
.quantity-row input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-detail button.cart-button {
    border-radius: 0.3125rem;
    background: var(--SDS-color1, #DD2B1F);
    display: flex;
    height: 3.375rem;
    padding: 0.5rem 1.25rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    border: none;
    width: 13.125rem;
    transition: all 0.3s ease-out;
    margin-right: 0.75rem;
    margin-left: auto;
}
.product-detail button.cart-button.center {
    margin: 0 auto;
    width: 21.25rem;
    height: 3.5rem;
    padding: 1.25rem 2rem;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.product-detail button.cart-button.reservation-button {
    background: #F68971;
    color: #FFF;
}
.product-detail button.cart-button:hover {
    background: white;
    border: solid 1px #DD2B1F;
    color: #DD2B1F;
}
.product-detail button.cart-button.reservation-button:hover {
    background: white;
    border: solid 1px #F68971;
    color: #F68971;
}
.product-detail button.cart-button:before {
    content: '';
    background-image: url('/html/user_data/assets/img/common/cart-white.svg');
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}
.product-detail button.cart-button.reservation-button:before {
    content: '';
    background-image: url('/html/user_data/assets/img/products_list/calendar.svg');
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
}
.product-detail button.cart-button:hover:before {
    content: '';
    background-image: url('/html/user_data/assets/img/common/cart-red.svg');
}
.product-detail button.cart-button.reservation-button:hover:before {
    content: '';
    background-image: url('/html/user_data/assets/img/products_list/calendar_hover.svg');
}
.product-detail .cart-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    height: 2.19rem;
}
.product-detail .cart-button-wrapper .cart-button.maintenance-period {
    border-radius: 0.3125rem;
    background: var(--SDS-color1, #DD2B1F);
    display: flex;
    width: 260px;
    height: 2.6rem;
    pointer-events: none;
    cursor: default;
    padding: 0.5rem 1.25rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.075rem;
    border: none;
}
.product-detail .product-contact-container {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-contact-container .product-contact {
    display: flex;
    padding: 0.75rem 2rem;
    align-items: flex-start;
    gap: 0.25rem;
    border-radius: 0.5rem;
    background: var(---color1, #005BAB);
    color: #FFF;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.product-contact-container .product-contact:before {
    content: '';
    background-image: url('/html/user_data/assets/img/product_detaill/envelope-white.svg');
    width: 1.75rem;
    height: 1.75rem;
}
#page_chemsherpa_detail .product-detail .product-contact-container,
#page_sds_detail .product-detail .product-contact-container {
    margin-top: 0;
}
@media(max-width: 1024px) {
    .product-detail form.form .price-column {
        flex-direction: column;
        gap: 1rem;
    }
    .price-column button.cart-button {
        margin-left: unset;
        width: 380px;
    }
    .product-detail .price-column .quantity-row {
        justify-self: end;
    }
    .price-column .price-row-container {
        max-width: 460px;
    }
}
@media(max-width: 768px) {
    .product-detail-container {
        margin-top: 10rem;
    }
    .product-detail-container .product-detail {
        width: 100%;
    }
    .detail-header .product-name {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 160%; /* 2.8rem */
        letter-spacing: 0.0875rem;
        margin-top: 0;
    }
    .product-detail .detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .detail-header .favorite-container a{
        font-size: 0.75rem;
        line-height: 160%; /* 1.2rem */
        letter-spacing: 0.075rem;
    }
    .product-info .info-column {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .product-detail .image-description-container {
        flex-direction: column;
        align-items: center;
    }
    .product-detail .image-description-container img {
        width: 100%;
        max-width: 500px;
        height: 100%;
    }
    .product-detail .description-detail {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .product-detail .usage-proof {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .product-detail form.form {
        margin-top: 1rem;
    }
    .price-column .class-name {
        font-size: 1.25rem;
        letter-spacing: 0.025rem;
    }
    .price-column .price-row .price {
        font-size: 1.25rem;
        letter-spacing: 0.025rem;
    }
    .price-column .price-row .price-inc-tax {
        font-size: 0.625rem;
        letter-spacing: 0.0625rem;
    }
    .product-detail .price-column .quantity-row {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .product-detail .price-column .quantity-row {
        margin-left: unset;
    }
    .price-column .price-row-container {
        max-width: 380px;
        min-width: 300px;
    }
    .product-detail form.form .price-column {
        flex-direction: column;
        gap: 1rem;
    }
    .price-column button.cart-button {
        max-width: 380px;
        width: 100%;
        margin: 0;
        height: 3rem;
    }
    .product-detail button.cart-button.center {
        max-width: 100%;
    }
    .detail-header .favorite-container {
        margin-left: auto;
    }
    #page_product_detail .product-detail .product-contact-container {
        margin-top: 0;
        margin-bottom: 1.25rem;
    }
    .product-detail form.form .price-column {
        padding-bottom: 1rem;
    }
}

/*
 * SDS LIST BLOCK
*/
#page_sds_list .header-bottom-banner,
#page_sds_top .header-bottom-banner,
#page_sds_list_by_slug .header-bottom-banner {
    background-color: #DD2B1F;
}
#page_sds_list .category-usage-container .category-title,
#page_sds_list .category-usage-container .usage-title,
#page_sds_top .category-usage-container .category-title,
#page_sds_top .category-usage-container .usage-title,
#page_sds_list_by_slug .category-usage-container .category-title,
#page_sds_list_by_slug .category-usage-container .usage-title {
    background-color: #DD2B1F;
}
#page_sds_list .category-usage-container .category-title.rotate-180,
#page_sds_top .category-usage-container .category-title.rotate-180,
#page_sds_list_by_slug .category-usage-container .category-title.rotate-180 {
    background-color: #868686;
}
#page_sds_list .search-form-background,
#page_sds_top .search-form-background,
#page_sds_list_by_slug .search-form-background {
    background-color: #FFF4F3;
}
#page_sds_list .search-form-container .orient-form-color .color input[type="checkbox"]:checked::after,
#page_sds_top .search-form-container .orient-form-color .color input[type="checkbox"]:checked::after,
#page_sds_list_by_slug .search-form-container .orient-form-color .color input[type="checkbox"]:checked::after {
    background-image: url('/html/user_data/assets/img/common/search-product-check-red.svg');
}
.sds-search-container {
    margin: 3rem 0 5rem;
}
.orient-sds-category-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.orient-sds-category-box-title {
    color: var(--SDS-color1, #DD2B1F);
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 160%; /* 3.6rem */
    letter-spacing: 0.1125rem;
    margin: 0;
}
.orient-sds-category-box-text {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.orient-sds-category-box-contact-button {
    display: flex;
    width: 9.75rem;
    height: 2.5rem;
    padding: 0.5rem 1.25rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 6.25rem;
    background: var(--accentcolor, #868686);
}
.orient-sds-category-box-contact-button span {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 100%; /* 0.75rem */
    letter-spacing: 0.075rem;
    white-space: nowrap;
}
@media(max-width: 768px) {
    #page_sds_list .sp-category-nav .category-title,
    #page_sds_detail .sp-category-nav .category-title,
    #page_sds_top .sp-category-nav .category-title,
    #page_product_top .sp-category-nav .category-title,
    #page_sds_list_by_slug .sp-category-nav .category-title,
    #page_chemsherpa_list_by_slug .sp-category-nav .category-title {
        width: 100%;
        gap: 0;
    }
    #page_sds_list .sp-category-nav .category-title-text,
    #page_sds_detail .sp-category-nav .category-title-text,
    #page_sds_top .sp-category-nav .category-title-text,
    #page_product_top .sp-category-nav .category-title-text,
    #page_sds_list_by_slug .sp-category-nav .category-title-text,
    #page_chemsherpa_list_by_slug .sp-category-nav .category-title-text {
        flex: 1 1 calc(75% - 2rem);
        min-width: 0;
        text-align: center;
    }
    .orient-sds-category-box-title {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 160%; /* 2.8rem */
        letter-spacing: 0.0875rem;
    }
    .orient-sds-category-box-contact-button {
        width: 12.5rem;
        height: 3rem;
    }
    .orient-sds-category-box-contact-button span {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * chemSHERPA LIST BLOCK
*/
#page_chemsherpa_list .header-bottom-banner,
#page_chemsherpa_top .header-bottom-banner,
#page_chemsherpa_list_by_slug .header-bottom-banner {
    background-color: #009178;
}
#page_chemsherpa_list .category-usage-container .category-title,
#page_chemsherpa_top .category-usage-container .category-title,
#page_chemsherpa_list_by_slug .category-usage-container .category-title {
    background-color: #009178;
}
#page_chemsherpa_list .category-usage-container .category-title.rotate-180,
#page_chemsherpa_top .category-usage-container .category-title.rotate-180,
#page_chemsherpa_list_by_slug .category-usage-container .category-title.rotate-180 {
    background-color: #868686;
}
#page_chemsherpa_list .search-form-background,
#page_chemsherpa_top .search-form-background,
#page_chemsherpa_list_by_slug .search-form-background {
    background-color: #E8F6F3;
}
#page_chemsherpa_list .search-form-container .orient-form-color .color input[type="checkbox"]:checked::after,
#page_chemsherpa_top .search-form-container .orient-form-color .color input[type="checkbox"]:checked::after,
#page_chemsherpa_list_by_slug .search-form-container .orient-form-color .color input[type="checkbox"]:checked::after {
    background-image: url('/html/user_data/assets/img/common/search-product-check-green.svg');
}
.chemsherpa-search-container {
    margin: 3rem 0 5rem;
}
.orient-chemsherpa-category-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.orient-chemsherpa-category-box-title {
    color: #009178;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 160%; /* 3.6rem */
    letter-spacing: 0.1125rem;
    margin: 0;
}
.orient-chemsherpa-category-box-text {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.orient-chemsherpa-category-box-contact-button {
    display: flex;
    width: 9.75rem;
    height: 2.5rem;
    padding: 0.5rem 1.25rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    border-radius: 6.25rem;
    background: var(--accentcolor, #868686);
}
.orient-chemsherpa-category-box-contact-button span {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 100%; /* 0.75rem */
    letter-spacing: 0.075rem;
    white-space: nowrap;
}
@media(max-width: 768px) {
    #page_chemsherpa_list .sp-category-nav .category-title,
    #page_chemsherpa_detail .sp-category-nav .category-title,
    #page_chemsherpa_top .sp-category-nav .category-title {
        width: 100%;
        gap: 0;
    }
    #page_chemsherpa_list .sp-category-nav .category-title-text,
    #page_chemsherpa_detail .sp-category-nav .category-title-text,
    #page_chemsherpa_top .sp-category-nav .category-title-text {
        flex: 1 1 calc(75% - 2rem);
        min-width: 0;
        text-align: center;
    }
    .orient-chemsherpa-category-box-title {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 160%; /* 2.8rem */
        letter-spacing: 0.0875rem;
    }
    .orient-chemsherpa-category-box-contact-button {
        width: 12.5rem;
        height: 3rem;
    }
    .orient-chemsherpa-category-box-contact-button span {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * SDS DETAIL BLOCK AND COMMON BLOCK WITH CHEMSHERPA
*/
#page_sds_detail .header-bottom-banner {
    background-color: #DD2B1F;
}
#page_sds_detail .category-product-container .category-title {
    background-color: #DD2B1F;
}
#page_sds_detail .category-product-container .category-title.rotate-180 {
    background-color: #868686;
}
#page_sds_detail .detail-header .product-name {
    color: var(--maincolor, #1D2129);
}
.product-detail-container .product-detail .button-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.75rem 0;
}
.product-detail-container .message-container {
    background: var(--gray2, #F8F8F8);
    display: flex;
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 0.5rem;
}
.product-detail-container .message-container .message-title {
    color: var(--maincolor, #1D2129);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
}
.product-detail-container .message-container .message-text {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.product-detail-container .message-container .message-text ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    list-style: decimal;
}
.product-detail-container .message-container .message-text ul li {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.detail-header .product-name-version-container {
    display: flex;
    align-items: center;
    /* gap: 1.25rem; */
    /* flex-wrap: wrap; */
    margin-right: auto;
}
.detail-header .product-name-version-container .product-name {
    margin: 0;
    margin-right: 1rem;
}
.detail-header .product-name-version-container .product-version {
    border-radius: 0.25rem;
    display: flex;
    padding: 0.125rem 0.75rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    color: var(--chem-SHELPA-color1, #868686);
    text-align: right;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 160%; /* 2.4rem */
    letter-spacing: 0.15rem;
    border: 2px solid var(--chem-SHELPA-color1, #868686);
}
#page_sds_detail .detail-header .product-name-version-container .product-version {
    font-size: 0.9rem;
    letter-spacing: 0.09rem;
    margin-top: 0.4rem;
    padding: 0 0.75rem;
}
@media(max-width: 768px) {
    .product-detail-container .message-container {
        margin-bottom: 1.25rem;
    }
    .detail-header .product-name-version-container .product-version {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .product-detail-container .product-detail .button-container {
        margin: 1.25rem 0;
    }
    .detail-header .product-name-version-container {
        margin-right: unset;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
    }
}

/*
 * CHEMSHERPA DETAIL BLOCK
*/
#page_chemsherpa_detail .header-bottom-banner {
    background-color: #009178;
}
#page_chemsherpa_detail .category-product-container .category-title {
    background-color: #009178;
}
#page_chemsherpa_detail .category-product-container .category-title.rotate-180 {
    background-color: #868686;
}
#page_chemsherpa_detail .detail-header .product-name {
    color: var(--maincolor, #1D2129);
}

/*
 * CONTACT BLOCK
*/
.contact-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.contact-container .contact-message {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-bottom: 2.5rem;
}
.contact-container form .contact-form-container {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    border-bottom: 1px solid var(--subcolor, #EEE);
    margin-bottom: 4rem;
}
.contact-container form dl dt {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.contact-container form dl dd p {
    color: var(--maincolor, #1D2129);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}
.orient-input {
    width: 40%;
    min-width: 18rem;
}
.orient-input input,
.orient-input textarea {
    height: 2.5rem;
    border-radius: 0.1875rem;
    border: 1px solid var(--accentcolor, #ccc);
    background: var(--basecolor, #FFF);
    width: 100%;
    padding-left: 0.75rem;
}
.orient-input.half {
    width: 100%;
    display: flex;
    gap: 1.25rem;
}
.orient-input.half input {
    width: 40%;
}
.orient-input.long {
    width: 100%;
}
.orient-input.textarea {
    width: 100%;
    min-width: 18rem;
}
.orient-input.textarea textarea {
    width: 100%;
    height: 7.1rem;
}
.contact-container .contact-form-submit {
    display: flex;
    justify-content: center;
    gap: 4rem;
}
@media(max-width: 768px) {
    .contact-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .contact-container .contact-message {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        margin-bottom: 1rem;
    }
    .contact-container .contact-form-submit {
        justify-content: center;
        gap: 1rem;
        flex-direction: column-reverse;
        align-items: center;
    }
}

/*
 * ENTRY BLOCK
*/
.entry-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.entry-info-box {
    margin-bottom: 1.25rem;
}
.entry-info-box.complete {
    margin-bottom: 2.5rem;
}
.entry-info-box:last-of-type {
    margin-bottom: 2.5rem;
}
.entry-info-box .entry-info-title {
    color: var(--maincolor, #1D2129);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    margin-bottom: 1.25rem;
}
.entry-info-box .entry-info-text {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.entry-info-box:last-of-type .entry-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.entry-info-box .entry-caution-list {
    display: flex;
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    border-radius: 0.3125rem;
    background: var(--SDS-color3, #FFF4F3);
}
.entry-info-box .entry-caution-list .entry-caution-item {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    position: relative;
    padding-left: 1rem;
}
.entry-info-box .entry-caution-list .entry-caution-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.5rem;
    height: 0.125rem;
    background-color: #DD2B1F;
}
.entry-info-box .entry-small-text {
    color: var(--maincolor, #1D2129);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
}
.entry-pp {
    display: flex;
    max-width: 42.5rem;
    max-height: 13.8rem;
    padding: 1.25rem;
    align-items: flex-start;
    gap: 0.625rem;
    flex-shrink: 0;
    border: 2px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    margin: 0 auto 2.5rem;
    overflow: auto;
    scrollbar-width: thin; /* Firefox用 */
    scrollbar-color: #ccc transparent; /* Firefox用 */
}
/* Webkit（Chrome, Safari, Edge等）用のスクロールバースタイル */
.entry-pp::-webkit-scrollbar {
    width: 6px;
}

.entry-pp::-webkit-scrollbar-track {
    background: transparent;
}

.entry-pp::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
/* iOSのスクロールバー対応 */
@supports (-webkit-touch-callout: none) {
    .entry-pp {
        /* iOS用のスクロールバースタイル */
        -webkit-overflow-scrolling: touch;
    }
}
.entry-pp-title {
    color: var(---color1, #005BAB);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.entry-pp-text {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.entry-pp-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* margin-bottom: 4rem; */
    justify-content: center;
    flex-wrap: wrap;
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.1rem;
}
.entry-pp-check-label-block {
    width: 100%;
    text-align: center;
}
.entry-pp-check-text br.sp-only {
    display: none;
}
#page_entry_agreement .entry-pp-check .orient-form label:not(:last-child) {
    margin-right: 1.5rem;
}
.entry-pp-error {
    color: #DD2B1F;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}
.entry-form-submit {
    display: flex;
    justify-content: center;
    gap: 4rem;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    width: 2rem;
    height: 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 0.2rem;
    background-color: #EEEEEE;
}
input[type="checkbox"]:checked {
    position: relative;
}
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    height: 2rem;
    width: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('/html/user_data/assets/img/common/search-product-check.svg');
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
}
.entry-container .entry-form-submit {
    display: flex;
    justify-content: center;
    gap: 4rem;
}
@media(max-width: 768px) {
    .entry-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .entry-info-box .entry-info-title{
        font-size: 1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }
    .entry-info-box .entry-info-text,
    .entry-info-box .entry-caution-list .entry-caution-item {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .entry-pp-title {
        margin-bottom: 1rem;
    }
    .entry-pp {
        margin-bottom: 1rem;
    }
    .entry-pp-text,
    .entry-pp-check {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .entry-pp-check {
        margin-bottom: 0.5rem;
        /* flex-wrap: nowrap; */
        gap: 1rem;
    }
    .entry-pp-check-text {
        text-align: center;
    }
    #page_entry_agreement .entry-pp-check .entry-pp-check-label-block {
        width: 100%;
    }
    .entry-pp-check-text br.sp-only {
        display: block;
    }
    .entry-container .entry-form-submit {
        justify-content: center;
        gap: 1rem;
        flex-direction: column-reverse;
        align-items: center;
    }
}

/*
 * FAQ BLOCK
*/
.faq-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.faq-category-container {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
    display: flex;
    /* width: 67.5rem; */
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 0.75rem;
    background: var(--subcolor, #EEE);
}
.faq-category-container .faq-category-list {
    display: flex;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.faq-container .faq-title {
    margin-bottom: 1.25rem;
    color: var(---color1, #005BAB);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
}
.faq-category-container .faq-category-item {
    display: flex;
    padding: 0.75rem 1.5rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 0.5rem;
    background: var(--basecolor, #FFF);
    transition: all 0.3s ease-out;
}
.faq-category-container .faq-category-item a {
    color: var(---color1, #005BAB);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    transition: all 0.3s ease-out;
}
.faq-category-container .faq-category-item:hover {
    background: var(---color1, #005BAB);
}
.faq-category-container .faq-category-item:hover a {
    color: var(--basecolor, #FFF);
}
.faq-list-container {
    margin-bottom: 2.5rem;
}
.faq-list-container .faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.faq-list-wrapper .faq-item {
    display: flex;
    padding: 1rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 0.5rem;
    border: 2px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    gap: 1.25rem;
}
.faq-item .q {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}
.faq-item .q:hover {
    opacity: 0.7;
}
.faq-item span {
    color: var(---color1, #005BAB);
    font-family: Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    margin-right: 0.5rem;
}
.faq-item .q::after {
    content: url('/html/user_data/assets/img/common/common-button-arrow-blue.svg');
    transform: rotate(90deg);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-out;
}
.faq-item .q.rotate-180::after {
    transform: rotate(-90deg);
}
.faq-item .a {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    display: none;
    transition: all 0.3s ease-out;
}
.faq-item .a span {
    color: var(--maincolor, #1D2129);
    font-family: Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 160%; /* 1.8rem */
    letter-spacing: 0.1125rem;
    margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
    .faq-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .faq-category-container {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .faq-container .faq-title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }
    .faq-category-container .faq-category-item {
        padding: 0.5rem 1rem;
    }
    .faq-list-wrapper .faq-item {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    .faq-category-container .faq-category-item a,
    .faq-item .q,
    .faq-item .a {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * CART BLOCK
*/
.shopping-container {
    margin-top: 10rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.ec-cartRole__totalText p{
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-cartRow {
    padding: 1.5rem 0.5rem;
}
.ec-progress .ec-progress__number {
    background-color: var(---color1, #EEE);
}
.ec-progress .ec-progress__label {
    color: var(---color1, #EEE);
}
.ec-progress .is-complete .ec-progress__number {
    background-color: var(---color1, #005BAB);
}
.ec-progress .is-complete .ec-progress__label {
    color: var(---color1, #005BAB);
}
.ec-progress .ec-progress__item:after {
    background: #EEE;
}
@media(max-width: 768px) {
    .ec-progress .ec-progress__item:after {
        top: 0.85rem;
    }
}
.ec-cartRole .ec-cartRole__totalText {
    margin: 1.5rem 0 2.5rem;
}
.ec-cartRow .ec-cartRow__contentColumn {
    width: 50%;
}
.ec-cartRow .ec-cartRow__summary {
    width: 100%;
    min-height: 5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.ec-cartRow .ec-cartRow__summary .product-type-icons {
    margin-right: 1rem;
}
.ec-cartRow .ec-cartRow__summary .ec-cartRow__summary__inner {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 0.1rem;
}
.ec-cartRow__name a {
    color: var(---color1, #005BAB);
}
.ec-cartHeader__label {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-cartRow__sutbtotal {
    text-align: center;
}
.ec-cartRole__total__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}
.ec-cartRole__estimate {
    border-radius: 0.25rem;
    border: 1px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
.ec-cartRole__estimate a {
    color: var(--accentcolor, #868686);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.075rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}
.ec-cartRole__estimate a::before {
    content: url('/html/user_data/assets/img/common/pdf.svg');
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ec-cartRole .ec-cartRole__total {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    display: flex;
    align-items: center;
    padding-bottom: 0;
    white-space: nowrap;
}
.ec-cartRole__total .ec-cartRole__totalAmount {
    color: var(--SDS-color1, #DD2B1F);
    text-align: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 160%; /* 3.2rem */
    letter-spacing: 0.2rem;
}
.ec-cartRole .ec-cartRole__actions {
    width: 45%;
}
.ec-cartRole__notice {
    color: #1D2129;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 160%; /* 1.4rem */
    letter-spacing: 0.0875rem;
    margin-bottom: 4rem;
}
.ec-cartRole .ec-cartRole__actions__inner {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
}
.ec-cartRole .ec-cartRole__actions:not(:last-of-type) {
    margin-bottom: 4rem;
}
@media(max-width: 768px) {
    .shopping-container {
        margin-top: 5rem;
        margin-bottom: 2.5rem;
    }
    .ec-cartRole .ec-cartRole__totalText {
        margin: 1rem 0 1.5rem;
    }
    .ec-cartRow .ec-cartRow__contentColumn {
        width: 100%;
    }
    /* .ec-cartRow .ec-cartRow__summary {
        align-items: flex-start;
    } */
    .ec-cartRole__totalText p,
    .ec-alert-warning .ec-alert-warning__text,
    .ec-cartRow .ec-cartRow__summary .ec-cartRow__summary__inner,
    .ec-cartRow .ec-cartRow__summary .ec-cartRow__summary__inner,
    .ec-cartRow .ec-cartRow__summary .ec-cartRow__summary__inner,
    .ec-cartRole .ec-cartRole__total {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .ec-cartRole__total__inner {
        gap: 0;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
    }
    .ec-cartRole .ec-cartRole__total {
        padding-top: 0;
    }
    .ec-cartRow__amountSP {
        color: var(--maincolor, #1D2129);
        font-size: 1rem;
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        font-weight: 400;
        line-height: 160%; /* 1.6rem */
        letter-spacing: 0.1rem;
    }
    .ec-cartRole__estimate {
        padding: 0.25rem 0.5rem;
    }
    .ec-alert-warning {
        padding: 0.25rem;
        margin-top: 3rem;
    }
    .ec-cartRole__total .ec-cartRole__totalAmount {
        font-size: 1.5rem;
        letter-spacing: 0.15rem;
    }
    .ec-cartRole__notice {
        margin-bottom: 1.5rem;
    }
    .ec-cartRole .ec-cartRole__actions {
        width: 100%;
    }
    .ec-cartRow .ec-cartRow__delColumn .ec-icon img {
        width: 1rem;
        height: 1rem;
    }
    .ec-cartRole .ec-cartRole__actions__inner {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: unset;
    }
    .ec-cartRole .ec-cartRole__actions__inner a {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .ec-cartRole .ec-cartRole__actions__inner a .common-button {
        width: 80%;
        max-width: 20rem;
    }
    .ec-cartRole .ec-cartRole__actions__inner a .back-button {
        width: 70%;
        max-width: 18rem;
    }
}

/*
 * LOGIN BLOCK
*/
.login-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.login-container .reset-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto 3.75rem;
    max-width: 850px;
}
.reset-container .reset-title {
    background: var(--SDS-color2, #FF827A);
    display: flex;
    padding: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
}
.reset-container .reset-title span {
    display: flex;
    padding: 0rem 0.5rem;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    background: #fff;
    color: var(--SDS-color2, #FF827A);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    white-space: nowrap;
}
.reset-container .reset-text {
    background: var(--SDS-color3, #FFF4F3);
    display: flex;
    padding: 1.25rem 0.625rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    background: var(--SDS-color3, #FFF4F3);
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    gap: 1.25rem;
}
.ec-login {
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 13%;
    border: 1px solid #EEE;
}
.login-title {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 160%; /* 3.6rem */
    letter-spacing: 0.225rem;
    margin-bottom: 2.5rem;
}
.login-container .ec-grid2 {
    display: flex;
    align-items: center;
    width: 125%;
}
.login-container .ec-grid2 .ec-grid2__cell {
    /* gap: 0.75rem; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    align-items: flex-start;
}
.login-container .ec-grid2 .ec-grid2__cell .ec-login__link {
    margin-left: 0;
}
.login-container .ec-grid2 .ec-grid2__cell .ec-login__link a {
    color: var(---color1, #005BAB);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 140%; /* 1.4rem */
    letter-spacing: 0.0875rem;
}
.login-container .ec-label {
    margin-bottom: 0.75rem;
}
.login-container .ec-input:last-of-type {
    margin-bottom: 2rem;
}
.login-container .form-check {
    display: flex;
    align-items: center;
}
.login-container input.form-check-input {
    background-color: #fff;
    width: 2rem;
    height: 2rem;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 0.2rem;
    position: relative;
    margin-right: 0.75rem;
}
.login-container input.form-check-input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    height: 2rem;
    width: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(/html/user_data/assets/img/common/search-product-check.svg);
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
}
.login-container .form-cehck-label {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
@media(max-width: 768px) {
    .login-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .login-container .reset-container {
        margin-bottom: 2rem;
    }
    .reset-container .reset-title {
        padding: 0.5rem 1rem;
    }
    .reset-container .reset-title,
    .reset-container .reset-title span {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .reset-container .reset-text {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        padding: 1rem 0.625rem;
    }
    .ec-login {
        padding: 3rem 13% 2rem;
    }
    .login-title {
        font-size: 1.5rem;
        letter-spacing: 0.15rem;
        margin-bottom: 1.5rem;
    }
    .ec-login .ec-login__input {
        margin-bottom: 1.5rem;
    }
    .login-container .ec-grid2 {
        flex-direction: column;
        width: 100%;
    }
    .login-container .ec-grid2 .ec-grid2__cell {
        gap: 0.5rem;
        align-items: center;
    }
    .login-container .ec-grid2 .ec-grid2__cell .ec-login__actions {
        margin-bottom: 2rem;
    }
    .login-container .ec-grid2 .ec-grid2__cell .ec-login__link a {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * SHOPPING BLOCK
*/
.shopping-container {
    margin-top: 10rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
    justify-content: center;
}
.shopping-container #shopping-form {
    width: 100%;
}
.ec-rectHeading h1, .ec-rectHeading .h1, .ec-rectHeading h2, .ec-rectHeading .h2, .ec-rectHeading h3, .ec-rectHeading .h3, .ec-rectHeading h4, .ec-rectHeading .h4, .ec-rectHeading h5, .ec-rectHeading .h5, .ec-rectHeading h6, .ec-rectHeading .h6 {
    background: var(---color3, #E9F1F3);
    padding: 0.5rem;
    color: var(---color1, #005BAB);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
}
.ec-orderAccount .ec-orderAccount__account {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-orderDelivery .ec-orderDelivery__title {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-imageGrid .ec-imageGrid__content,
.ec-orderDelivery .ec-orderDelivery__address {
    /* padding: 0.75rem 0.5rem; */
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-orderDelivery .ec-orderDelivery__address {
    border-top: 1px solid var(--subcolor, #EEE);
    padding: 1rem 0 0;
}
.ec-imageGrid {
    /* border-top: 1px solid var(--subcolor, #EEE); */
    border-top: none;
}
.ec-borderedList li {
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.ec-select {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-input select, .ec-birth select, .ec-select select, .ec-halfInput select, .ec-numberInput select, .ec-zipInput select, .ec-telInput select {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-totalBox .ec-totalBox__btn .ec-blockBtn--action {
    background: var(--SDS-color2, #DD2B1F);
    transition: all 0.3s ease-out;
}
.ec-totalBox .ec-totalBox__btn .ec-blockBtn--action:hover {
    background: #fff;
    color: var(--SDS-color2, #DD2B1F);
    border: 1px solid var(--SDS-color2, #DD2B1F);
}
.ec-totalBox .ec-totalBox__btn a {
    background: #868686;
    border: none;
    transition: all 0.3s ease-out;
    border: 1px solid #868686;
}
.ec-totalBox .ec-totalBox__btn a:hover {
    background: #fff;
    color: #868686;
    border: 1px solid #868686;
}
.ec-totalBox .ec-totalBox__total,
.ec-totalBox .ec-totalBox__paymentTotal {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%;
}
.ec-totalBox .ec-totalBox__price {
    color: var(--maincolor, #1D2129);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 160%;
}
.ec-totalBox .ec-totalBox__spec dt {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.ec-totalBox .ec-totalBox__spec dd {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
}
.ec-inlineBtn {
    border-radius: 0.3125rem;
    border: 1px solid var(--accentcolor, #868686);
    background: var(--subcolor, #EEE);
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 100%; /* 0.75rem */
    letter-spacing: 0.075rem;
}
.ec-orderDelivery .ec-orderDelivery__change {
    top: 50%;
    transform: translateY(-50%);
}
.ec-orderRole .ec-imageGrid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ec-orderRole .product-type-icons .list-link {
    margin: 1rem 0;
}
@media(max-width: 768px) {
    .ec-historyRole .ec-imageGrid {
        border-bottom: 1px solid var(--subcolor, #EEE);
        display: flex;
        justify-content: space-between;
    }
    .ec-historyRole .ec-imageGrid--last {
        border-bottom: none;
    }
    .shopping-container {
        margin-top: 5rem;
        margin-bottom: 2.5rem;
    }
    .ec-orderRole .ec-borderedList {
        border: none;
    }
    .ec-rectHeading h1, .ec-rectHeading .h1, .ec-rectHeading h2, .ec-rectHeading .h2, .ec-rectHeading h3, .ec-rectHeading .h3, .ec-rectHeading h4, .ec-rectHeading .h4, .ec-rectHeading h5, .ec-rectHeading .h5, .ec-rectHeading h6, .ec-rectHeading .h6 {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .ec-orderDelivery .ec-orderDelivery__title,
    .ec-orderAccount .ec-orderAccount__account,
    .ec-select,
    .ec-imageGrid .ec-imageGrid__content,
    .ec-orderDelivery .ec-orderDelivery__address,
    .ec-input select, .ec-birth select, .ec-select select, .ec-halfInput select, .ec-numberInput select, .ec-zipInput select, .ec-telInput select {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

/*
 * SHIPPING BLOCK
*/
.shipping-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.shopping-error-container {
    margin-top: 10rem;
    margin-bottom: 5rem;
    padding: 0 1rem;
}
.ec-addressRole .ec-addressRole__actions {
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.ec-addressList .ec-addressList__item {
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.ec-addressList__address div {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.shipping-form-submit {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 4rem;
}
.common-button.long {
    width: 25rem;
}
.common-button.long span {
    width: 16rem;
}
.shopping-error-back,
.shopping-complete-back {
    display: flex;
    justify-content: center;
}
.ec-reportHeading h2 {
    color: var(---color1, #005BAB);
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 160%; /* 2.8rem */
    letter-spacing: 0.175rem;
}
.ec-reportDescription {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
@media(max-width: 768px) {
    .shipping-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .shopping-error-container {
        margin-top: 5rem;
        margin-bottom: 2.5rem;
    }
    .ec-addressList__address div,
    .ec-reportDescription {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .shipping-form-submit {
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 2rem;
    }
    .common-button.long {
        width: 20rem;
    }
    .ec-reportHeading h2 {
        font-size: 1.5rem;
        letter-spacing: 0.15rem;
    }
}

/*
 * MYPAGE BLOCK
*/
.mypage-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.ec-navlistRole a {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.1rem;
}
.ec-navlistRole .ec-navlistRole__navlist .active a {
    color: var(---color1, #005BAB);
}

@media(max-width: 768px) {
    .mypage-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
}

/*
 * BLOGS BLOCK
*/
.blogs-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.category-blogs-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}
.blogs-list-container {
    width: 100%;
}
.blog-list-container {
    margin-top: 1.25rem;
}
#page_blogs42_list .category-usage-container .category-title,
#page_blogs42_detail .category-usage-container .category-title {
    background: var(--accentcolor, #868686);
}
.blogs-list {
    padding: 0;
    border-bottom: 1px solid var(--subcolor, #EEE);
}
.blogs-list .blogs-list-item {
    list-style: none;
    display: flex;
    width: 100%;
    height: 11.8125rem;
    padding: 1.25rem;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
    gap: 3rem;
    border-top: 1px solid var(--subcolor, #EEE);
}
.blogs-list-item-image {
    height: 100%;
    /* width: 30%; */
}
.blogs-list-item-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.blogs-list-item-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.81rem;
    flex: 1 0 0;
}
.blogs-list-item-tags {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.blogs-detail-container .blogs-list-item-tags {
    margin-bottom: 2.5rem;
}
.blogs-list-item-tags .tag {
    overflow: hidden;
    color: var(--accentcolor, #868686);
    text-overflow: ellipsis;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    border-radius: 0.3125rem;
    border: 1px solid var(--subcolor, #EEE);
    background: var(--basecolor, #FFF);
    padding: 0.125rem 0.5rem;
    align-items: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.blogs-list-item-title-link {
    overflow: hidden;
    color: var(--maincolor, #1D2129);
    text-overflow: ellipsis;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.blogs-list-item-read-more {
    display: flex;
    height: 3.125rem;
    padding: 0.75rem 1.5rem;
    align-items: center;
    gap: 1.25rem;
    border-radius: 0.5rem;
    background: var(---color1, #005BAB);
    align-self: flex-end;
}
.blogs-list-item-read-more a {
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
#page_blogs42_list .ec-pager {
    margin-bottom: 0;
}
.blogs-list-item-button {
    display: flex;
    justify-content: center;
}
.related-blogs_container {
    margin-top: 2.5rem;
}
.related-blogs_title {
    color: var(---color1, #005BAB);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    margin-bottom: 1.25rem;
}
.related-blogs_container .columns {
    margin: 0;
}
.blogs-detail-container .blog-description {
    font-family: 'Noto Serif JP', sans-serif;
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
}
.blogs-list-item-button {
    display: none;
}
@media(max-width: 768px) {
    .blogs-container {
        margin-top: 7rem;
        margin-bottom: 2.5rem;
    }
    #page_blogs42_list .sp-category-nav .category-title,
    #page_blogs42_detail .sp-category-nav .category-title {
        width: 100%;
        gap: 0;
    }
    #page_blogs42_list .sp-category-nav .category-title-text,
    #page_blogs42_detail .sp-category-nav .category-title-text {
        flex: 1 1 calc(75% - 2rem);
        min-width: 0;
        text-align: center;
    }
    .blogs-list .blogs-list-item {
        display: grid;
        grid-template-areas:
            "image info"
            "tag-button tag-button";
        grid-template-columns: 40% 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .blogs-list-item-image {
        grid-area: image;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    .blogs-list-item-title {
        grid-area: info;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .blogs-list-item-title-link {
        font-size: 1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 0.5rem;
    }
    .blogs-list-item-button {
        grid-area: tag-button;
    }
    /* .blogs-list-item-read-more {
        margin-top: auto;
    } */
    .blogs-list-item-tags.sp-only {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    .blogs-list-item-tags .tag {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .blogs-list-item-tags.pc-only {
        display: none;
    }
    .blogs-list-item-read-more.pc-only {
        display: none;
    }
}
/* SP用のスタイル */
@media(max-width: 768px) {
    .blogs-list .blogs-list-item {
        display: grid;
        grid-template-areas:
            "image title"
            "tags tags";
        grid-template-columns: 40% 1fr;
        gap: 1rem;
        padding: 1rem;
        height: 100%;
    }

    .blogs-list-item-image {
        grid-area: image;
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* PC用の要素を非表示 */
    .blogs-list-item-title .pc-only {
        display: none;
    }

    .blogs-list-item-title {
        grid-area: title;
    }

    .blogs-list-item-title-link {
        font-size: 1rem;
        letter-spacing: 0.1rem;
        -webkit-line-clamp: 3; /* SPでは3行まで表示 */
    }

    /* SP用のタグとボタンエリア */
    .blogs-list-item-button {
        grid-area: tags;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
    }

    .blogs-list-item-button .blogs-list-item-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blogs-list-item-button .tag {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        padding: 0.125rem 0.5rem;
    }

    .blogs-list-item-button .blogs-list-item-read-more {
        padding: 0.5rem 1rem;
        height: 2.5rem;
    }

    .blogs-list-item-button .blogs-list-item-read-more a {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
}

#page_blogs42_detail .blog-description video {
    max-width: 100% !important;
}

/*
 * HELP BLOCK
*/
.help_container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.help_container .block {

}
.help_container .block:not(:last-child) {
    margin-bottom: 2.5rem;
}
.help_container .block .block-title {
    color: var(---color1, #005BAB);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    margin-bottom: 1.25rem;
}
.help_container .block .block-content {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-bottom: 1.25rem;
}
.help_container .block .block-content .block-content-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.help_container .block .block-content .indent,
.help_container .block .block-content .indent2 {
    display: flex;
    align-items: flex-start;
}
.help_container .block .block-content .indent {
    margin-left: 2rem;
}

.help_container .block .block-content .indent2 {
    margin-left: 4rem;
}

.help_container .block .block-content .number {
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.help_container .block .block-content .content {
    margin-bottom: 1.25rem;
}

.help_container .block .block-content .content {
    flex: 1;
}
.help_container .block .block-content .content p {
    margin-bottom: 0.75rem;
}
.help_container.privacy .block .block-content .content p {
    margin-bottom: 1.25rem;
}
.entry-pp .indent {
    display: flex;
    align-items: flex-start;
    margin-left: 1rem;
}
.entry-pp .indent2 {
    display: flex;
    align-items: flex-start;
    margin-left: 2rem;
}
.entry-pp .content p {
    margin-bottom: 0.75rem;
}
.entry-pp .content .block-content-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 0.75rem;
}
.entry-pp h5 {
    margin-top: 1.25rem;
}
@media(max-width: 768px) {
    .help_container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .help_container .block .block-title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .help_container .block .block-content {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .help_container .block .block-content .indent {
        margin-left: 1rem;
    }
    .help_container .block .block-content .indent2 {
        margin-left: 2rem;
    }
    .help_container .block .block-content .content {
        margin-bottom: 0.75rem;
    }
}

/*
 * NEWS BLOCK
*/
.news-index-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.news-index-container .news-role {
    margin-top: 2.5rem;
}
@media(max-width: 768px) {
    .news-index-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
}

/*
 * TRADELAW BLOCK
*/
.tradelaw-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
@media(max-width: 768px) {
    .tradelaw-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
}

/*
 * ABOUT BLOCK
*/
.about-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
@media(max-width: 768px) {
    .about-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
}

/*
 * SITEMAP BLOCK
*/
.sitemap-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.sitemap-content-wrapper {
    display: flex;
    gap: 2rem;
}
.sitemap-content-item {
    flex: 1;
}
.sitemap-content-item .title {
    color: var(--maincolor, #1D2129);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    padding-left: 0.75rem;
    margin-bottom: 1.25rem;
}
.sitemap-content-item .title.sample-title {
    border-left: 0.25rem solid var(---color1, #005BAB);
}
.sitemap-content-item .title.sds-title {
    border-left: 0.25rem solid var(--accentcolor, #DD2B1F);
}
.sitemap-content-item .title.chemsherpa-title {
    border-left: 0.25rem solid var(--accentcolor, #009178);
}
.sitemap-content-item .title:not(:first-child) {
    margin-top: 2.25rem;
}
.sitemap-content-item .title.column-title,
.sitemap-content-item .title.usage-title,
.sitemap-content-item .title.information-title {
    border-left: 0.25rem solid var(--accentcolor, #EEE);
}
.sitemap-content-item .first-list {
    margin-bottom: 2.25rem;
}
.sitemap-content-item .content-item-list {
    padding-left: 1rem;
}
.sitemap-content-item .content-item-list2 {
    padding-left: 0.5rem;
}
.sitemap-content-item .content-item-element {
    color: var(--maincolor, #1D2129);
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-bottom: 1.25rem;
    list-style: none;
    display: flex;
    align-items: center;
}
.sitemap-content-item .content-item-element::before {
    content: url('/html/user_data/assets/img/common/black-arrow-left.svg');
    width: 1.625rem;
    height: 1.625rem;
    transition: all 0.3s ease-out;
}
.sitemap-content-item .content-item-element:hover::before {
    content: url('/html/user_data/assets/img/common/grey-arrow-left.svg');
}
.sitemap-content-item .content-item-element2 {
    color: var(--maincolor, #1D2129);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 160%; /* 1.4rem */
    letter-spacing: 0.0875rem;
    margin-bottom: 1rem;
    list-style: none;
    display: flex;
    align-items: center;
}
.sitemap-content-item .content-item-element2::before {
    content: url('/html/user_data/assets/img/common/black-arrow-left-small.svg');
    width: 1.0625rem;
    height: 1.0625rem;
    transition: all 0.3s ease-out;
    display: flex;
}
.sitemap-content-item .content-item-element2:hover::before {
    content: url('/html/user_data/assets/img/common/grey-arrow-left-small.svg');
}
.sitemap-content-item .content-item-element a,
.sitemap-content-item .content-item-element2 a {
    color: var(--maincolor, #1D2129);
}
.sitemap-content-item .content-item-element a:hover,
.sitemap-content-item .content-item-element2 a:hover {
    color: #868686;
}
@media(max-width: 768px) {
    .sitemap-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
    .sitemap-content-wrapper {
        flex-wrap: wrap;
        gap: 0;
    }
    .sitemap-content-item {
        flex: 0 0 100%;
    }
    .sitemap-content-item .title:not(:first-child) {
        margin-top: unset;
    }
    .sitemap-content-item .title:not(.sample-title) {
        margin-top: 1.5rem;
    }
    .sitemap-content-item .title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .sitemap-content-item .first-list {
        margin-bottom: 1rem;
    }
    .sitemap-content-item .content-item-element {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        margin-bottom: 0.75rem;
    }
    .sitemap-content-item .content-item-element2 {
        font-size: 0.75rem;
        letter-spacing: 0.075rem;
        margin-bottom: 1rem;
    }
}

/*
 * FORGOT BLOCK
*/
.forgot-container {
    margin-top: 7rem;
    padding: 0 1rem;
    margin-bottom: 5rem;
}
.forgot-container .next-button-container {
    display: flex;
    justify-content: center;
}
.forgot-complete-warning {
    color: red;
    font-size:small;
    text-align: center;
}
.forgot-complete-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
}
@media(max-width: 768px) {
    .forgot-container {
        margin-top: 3rem;
        margin-bottom: 2.5rem;
    }
}

/*
 * PAYMENT BLOCK
*/
.payment-content-wrapper .ec-rectHeading h2 {
    margin-top: 0;
}
.payment-content-wrapper .payment-content-item {
    color: var(--maincolor, #1D2129);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 160%; /* 1.4rem */
    letter-spacing: 0.0875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.payment-content-wrapper .payment-content-item ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 0.2rem;
    list-style-position: inside;
}
.payment-content-wrapper .payment-content-item .furikomi {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}
.payment-content-item-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.payment-content-item-wrapper .payment-content-item-label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    width: 5rem;
}
.payment-content-item-wrapper .payment-content-item-colon {
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    width: 5rem;
    width: 1rem;
    text-align: center;
}
.payment-content-item-wrapper .payment-content-item-content {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    flex: 1;
}
.payment-content-item-wrapper .payment-content-item-price {
    display: inline-block;
    color: var(--SDS-color1, #DD2B1F);
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.175rem;
}
.payment-content-item-wrapper .payment-content-item-price span {
    font-size: 1.75rem;
}
.payment-content-item-wrapper .payment-content-item-content-bold {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.125rem;
}
@media(max-width: 768px) {
    .payment-content-wrapper .payment-content-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

}

/*
 * MEMBERSHIP BLOCK
*/
.membership-content-wrapper {
    margin-top: 2.5rem;
}
.registration-flow {
    max-width: 850px;
    margin: 0 auto;
}
.flow-step {
    position: relative;
    padding-left: 3.75rem;
    padding-bottom: 2.5rem;
}
.flow-step::before {
    content: '';
    position: absolute;
    left: 1.5625rem;
    top: 3.125rem;
    height: calc(100% - 3.125rem);
    width: 0.125rem;
    background-color: var(--subcolor, #E9F1F3);
}
.flow-step:last-child {
    padding-bottom: 0;
}
.flow-step:last-child::before {
    display: none;
}
.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(---color1, #E9F1F3);
    color: var(--basecolor, #005BAB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 160%;
    z-index: 1;
}
.step-title {
    color: var(--maincolor, #1D2129);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    padding-top: 0.5rem;
    margin-top: 0;
}
.registration-types {
    display: flex;
    gap: 2rem;
    margin-top: 1.25rem;
}
.registration-type-card {
    flex: 1;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    background: var(--subcolor, #EEE);
}
.registration-type-card .common-button {
    width: 100%;
}
.registration-type-card .icon-wrapper {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background-color: var(--basecolor, #FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.75rem;
}
.registration-type-card .icon-wrapper img {
    width: 4.375rem;
    height: 4.375rem;
    object-fit: contain;
}
.registration-type-card h3 {
    color: var(--maincolor, #005BAB);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.125rem;
    margin: 0;
    margin-bottom: 0.75rem;
}
.registration-type-card p {
    color: var(--maincolor, #005BAB);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.1rem;
    margin-bottom: 1.19rem;
}
.note {
    color: var(--maincolor, #1D2129);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.0875rem;
}
@media(max-width: 670px) {
    .registration-types {
        flex-direction: column;
    }
}
@media(max-width: 768px) {
    .membership-content-wrapper {
        margin-top: 1.5rem;
    }
    .flow-step {
        padding-left: 2.5rem;
        padding-bottom: 2rem;
    }
    .flow-step::before {
        left: 1.0625rem;
        top: 2.125rem;
        height: calc(100% - 2.125rem);
    }
    .step-number {
        width: 2.125rem;
        height: 2.125rem;
        font-size: 1rem;
    }
    .step-title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
        padding-top: 0.2rem;
    }
    .registration-types {
        /* flex-direction: column; */
        gap: 1rem;
    }
    .registration-type-card {
        padding: 1.5rem;
    }
    .registration-type-card .common-button {
        width: 15rem;
    }
    .registration-type-card .icon-wrapper {
        width: 4.5rem;
        height: 4.5rem;
    }
    .registration-type-card .icon-wrapper img {
        width: 3rem;
        height: 3rem;
    }
    .registration-type-card h3 {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }
    .registration-type-card p {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .registration-type-card a {
        width: 100%;
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
    }
    .note {
        font-size: 0.75rem;
        letter-spacing: 0.075rem;
    }
}

/*
 * Mypage/Download BLOCK
*/
@media(max-width: 768px) {
    #page_plg_dlc_mypage_downloads .ec-shelfRole {
        padding: 0;
    }
    #page_plg_dlc_mypage_downloads .ec-shelfRole .grid {
        padding: 0;
    }
    #page_plg_dlc_mypage_downloads .ec-shelfRole .grid .dlc-item {
        width: unset;
    }
}
/*
 * Mypage/History BLOCK
*/
#page_mypage .ec-pager {
    margin-bottom: 0;
}
.ec-para-normal {
    margin-bottom: 2.5rem;
}
.ec-mypageRole {
    color: var(--maincolor, #1D2129);
}
.ec-navlistRole .ec-navlistRole__navlist a {
    color: var(--maincolor, #1D2129);
}
.ec-welcomeMsg {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    border-bottom: unset;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}
.ec-historyRole .ec-historyRole__contents {
    color: var(--maincolor, #1D2129);
}
.ec-definitions dt, .ec-definitions--soft dt,
.ec-definitions dd, .ec-definitions--soft dd {
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.2rem */
    letter-spacing: 0.1rem;
}
.ec-definitions dt, .ec-definitions--soft dt {
    font-weight: 600;
}
.ec-definitions, .ec-definitions--soft {
    display: grid;
    grid-template-columns: max-content auto;
    gap: 1rem;
}
.ec-orderMail {
    border-bottom: unset;
}
.ec-orderMail .ec-orderMail__link {
    margin-bottom: 2rem;
}
@media(max-width: 768px) {
    .ec-historyRole .ec-historyRole__contents {
        border-top: 5px solid #ccc;
    }
    .ec-para-normal {
        margin-bottom: 1.5rem;
    }
}
/*
 * Mypage/Favorite BLOCK
*/
.ec-favoriteRole .ec-favoriteRole__header {
    margin-bottom: 2.5rem;
}
.ec-favoriteRole .ec-favoriteRole__itemList {
    flex-direction:column;
}
.ec-favoriteRole .ec-favoriteRole__item {
    width: 100%;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle{
    background: unset;
    position: unset;
    margin-right: 1rem;
}
.ec-favoriteRole .product-type-icons {
    width: 15%;
    margin-right: 0.5rem;
}
.ec-favoriteRole .ec-favoriteRole__itemTitle {
    margin-bottom: 0;
    width: 45%;
}
.ec-favoriteRole .ec-favoriteRole__itemPrice {
    width: 20%;
}
.ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle img{
    width: 1rem;
    height: 1rem;
}
.ec-favoriteRole .ec-favoriteRole__itemList a{
    color: white;
}
.ec-favoriteRole .ec-favoriteRole__item {
    margin-bottom: 0;
    padding: 1.5rem 0;
}
a.show-product-detail {
    border-radius: 0.3125rem;
    background: var(--accentcolor, #868686);
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1rem;
    border: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.1875rem;
    padding: 0.5rem 1.25rem;
    text-wrap: nowrap;
}
a.show-product-detail:hover {
    background: #1D2129;
}
#page_mypage_favorite .ec-pager {
    margin-bottom: 0;
}
@media(max-width: 550px) {
    .ec-favoriteRole .ec-favoriteRole__itemTitle {
        width: 70%;
    }
    .ec-favoriteRole .ec-favoriteRole__itemPrice {
        display: none;
    }
}
@media(max-width: 768px) {
    .ec-favoriteRole .ec-favoriteRole__header {
        margin-bottom: 1.5rem;
    }
    .ec-favoriteRole .ec-favoriteRole__item {
        padding: 1rem 0;
    }
    .ec-favoriteRole .ec-favoriteRole__item .ec-closeBtn--circle {
        margin-right: 0.2rem;
    }
    .ec-favoriteRole .ec-favoriteRole__itemList a {
        font-size: 13px;
    }
}
/*
 * Mypage/Change
*/
.common-button-container {
    display: flex;
    justify-content: center;
}
.change-warning {
    color:red;
    font-size:small;
    /* margin-bottom: 1rem; */
}
.change-contact {
    color:red;
    font-size:small;
    margin-bottom: 2.5rem;
}
@media(max-width: 768px) {
    .change-contact {
        margin-bottom: 1.5rem;
    }
}
/*
 * Mypage/Delivery
*/
.delivery-new-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
#page_mypage_delivery .ec-addressRole .ec-addressRole__actions {
    margin: 0;
}
a.show-delivery-edit {
    border-radius: 0.3125rem;
    background: var(--accentcolor, #868686);
    color: var(--basecolor, #FFF);
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.1rem;
    border: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.1875rem;
    padding: 0.5rem 1.25rem;
    text-wrap: nowrap;
}
a.show-delivery-edit:hover {
    background: #1D2129;
}
/*
 * Mypage/Withdraw
*/
.withdraw-box {
    margin: 0 auto;
    background: var(--SDS-color3, #FFF4F3);
    display: flex;
    padding: 2.5rem 0.625rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    max-width: 48rem;
    position: relative;
    z-index: 0;
}
.withdraw-box::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -65%);
    width: 7rem;
    height: 7rem;
    background-image: url('/html/user_data/assets/img/common/triangle-exclamation-solid.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7rem;
}
.withdraw-box.confirm::before {
    transform: translate(-50%, -100%);
}
.withdraw-box .ec-withdrawRole__title {
    color: var(--SDS-color1, #DD2B1F);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 160%; /* 2rem */
    letter-spacing: 0.125rem;
    text-align: center;
    margin-bottom: 1.25rem;
    z-index: 1;
}
.withdraw-box .ec-withdrawRole__description {
    color: var(--maincolor, #1D2129);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%; /* 1.6rem */
    letter-spacing: 0.1rem;
    margin-bottom: 1.25rem;
    z-index: 1;
}
@media(max-width: 768px) {
    .withdraw-box .ec-withdrawRole__description br.pc-only {
        display: none;
    }
}
.withdraw-box__button {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
    z-index: 1;
}
@media(max-width: 768px) {
    .withdraw-box {
        max-width: 100%;
    }
    .withdraw-box .ec-withdrawRole__title {
        font-size: 1rem;
        letter-spacing: 0.1rem;
        margin-bottom: 1rem;
    }
    .withdraw-box .ec-withdrawRole__description {
        font-size: 0.875rem;
        letter-spacing: 0.0875rem;
        margin-bottom: 1rem;
    }
}

/*
 * ダウンロードについて
*/
.screenshot-pc {
    margin-top: 1rem;
    max-width: 40rem;
}
.screenshot-sp {
    display: none;
    margin-top: 1rem;
    max-width: 20rem;
}
.screenshot-pc img, .screenshot-sp img {
    width: 100%;
    height: auto;
    border: 1px solid var(--accentcolor, #868686);
}
@media(max-width: 768px) {
    .screenshot-pc {
        display: none;
    }
    .screenshot-sp {
        display: block;
    }
}

.ec-navlistRole .dlc-navlistRole__item {
    background-color: #868686;
}
.ec-navlistRole .dlc-navlistRole__item:hover {
    background-color: #4D5259;
}
/* .ec-navlistRole .dlc-navlistRole__item.active {
    background-color: #4D5259;
} */
.ec-navlistRole .dlc-navlistRole__item.active:hover {
    background-color: #4D5259;
}
.ec-navlistRole .dlc-navlistRole__item a {
    color: #FFF;
}
.ec-navlistRole .dlc-navlistRole__item.active a {
    color: #FFF;
}
