@charset "UTF-8";
/*
    Template: hello-elementor
    Theme Name: Hello Elementor CHILD
*/



a,
button,
.hover {
    transition: all 300ms 0s ease;
}

a:hover,
button:hover,
.hover:hover {
    opacity: 0.6;
}

.sp-area {
    display: none;
}

.sp-area-inline {
    display: none;
}

@media screen and (min-width:641px) {
    .pc-area {
        display: block;
    }

    .pc-area-inline {
        display: inline-block;
    }

    .sp-area,
    .sp-area-inline {
        display: none !important;
    }
}

@media screen and (max-width:640px) {

    .pc-area,
    .pc-area-inline {
        display: none !important;
    }

    .sp-area {
        display: block;
    }

    .sp-area-inline {
        display: inline-block;
    }
}

#site {
    overflow: hidden;
}


.global-inner {
    position: relative;
    margin: 0 auto;
    width: 1000px;
    min-width: 1000px;
}
.global-inner-02 {
    position: relative;
    margin: 0 auto;
    width: 870px;
    min-width: 870px;
}


@media screen and (max-width:640px) {
.global-inner,
.global-inner-02 {
    margin: 0 5%;
    width: auto;
    min-width: auto;
}
}



/* ========================================
   Header
======================================== */
#global-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #EDE5DC;
    box-shadow: 0px 2px 5px #00000036;
    font-size: 16px;
}

#global-header .global-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    min-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
}

#global-header .header-left {
    width: 130px;
}

#global-header .header-logo .logo-sp {
    display: none;
}

#global-header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

#global-header .header-instagram {
    display: flex;
    align-items: center;
}

#global-header .header-instagram img {
    height: 28px;
    width: auto;
}

#global-header .header-nav-pc .header-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

#global-header .header-nav-pc .header-nav-list>li {
    position: relative;
}

#global-header .header-nav-pc .header-nav-list>li>a {
    display: block;
    padding: 10px 14px;
    color: #000000;
    text-decoration: none;
    position: relative;
}

#global-header .header-nav-pc .header-nav-list>li>a::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #C45A20;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#global-header .header-nav-pc .header-nav-list>li:hover>a::before {
    opacity: 1;
}

#global-header .header-nav-pc .header-nav-list>li>a:hover {
    opacity: 1;
}

#global-header .header-nav-pc .header-nav-list>li>ul {
    position: fixed;
    top: var(--header-height, 60px);
    left: auto;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 5px 5px -5px #00000036 inset;
    z-index: -1;
}

#global-header .header-nav-pc .header-nav-list>li:hover>ul {
    opacity: 1;
    visibility: visible;
}

#global-header .header-nav-pc .header-nav-list>li>ul>li {
    border-top: solid 1px #F5F5F5;
}

#global-header .header-nav-pc .header-nav-list>li>ul>li:first-child {
    border: none;
}

#global-header .header-nav-pc .header-nav-list>li>ul>li a {
    display: block;
    padding: 10px 15px;
    color: #5D4037;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

#global-header .header-nav-pc .header-nav-list>li>ul>li a:hover {
    opacity: 0.7;
}

#global-header .header-cart a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #C24A15;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
}

#global-header .header-cart img {
    height: 18px;
    width: auto;
}

#global-header .header-menu-btn {
    display: none;
    padding: 0;
    cursor: pointer;
}

#global-header .header-menu-btn img {
    height: 45px;
    width: auto;
}

#global-header .header-menu-btn .menu-close {
    display: none;
}

#global-header .header-menu-btn.is-open .menu-open {
    display: none;
}

#global-header .header-menu-btn.is-open .menu-close {
    display: block;
}

/* SP Menu Overlay */
.sp-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sp-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* SP Menu */
.sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #F5ECD8;
    z-index: 9999;
    padding: 30px 35px 50px;
    box-sizing: border-box;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.sp-menu.is-open {
    transform: translateX(0);
}

.sp-menu .sp-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    cursor: pointer;
}

.sp-menu .sp-menu-close img {
    width: 50px;
    height: 50px;
    display: block;
}

.sp-menu .sp-menu-list {
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
}

.sp-menu .sp-menu-list>li {
    margin-bottom: 40px;
}

.sp-menu .sp-menu-list>li>a {
    display: inline-block;
    padding-left: 25px;
    position: relative;
    color: #5D4037;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}

.sp-menu .sp-menu-list>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #C45A20;
    border-radius: 3px;
}

.sp-menu .sp-menu-sub {
    list-style: none;
    margin: 25px 0 0 40px;
    padding: 0;
}

.sp-menu .sp-menu-sub li {
    margin-bottom: 18px;
}

.sp-menu .sp-menu-sub li a {
    color: #5D4037;
    text-decoration: none;
    font-size: 17px;
}

.sp-menu .sp-menu-footer {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
}

.sp-menu .sp-menu-footer li {
    margin-bottom: 15px;
}

.sp-menu .sp-menu-footer li a {
    color: #5D4037;
    text-decoration: none;
    font-size: 14px;
}

.sp-menu .sp-menu-contact {
    margin-top: 30px;
    padding: 0 10px;
}

.sp-menu .sp-menu-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border: 2px solid #C45A20;
    border-radius: 50px;
    color: #C45A20;
    text-decoration: none;
    font-size: 17px;
    background: #fff;
}

.sp-menu .sp-menu-contact .contact-icon {
    width: 18px;
    height: auto;
}

/* SP Icons (PC hidden) */
#global-header .header-icons-sp {
    display: none;
    align-items: center;
    gap: 15px;
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* Header padding for fixed header */
body {
    padding-top: 70px;
}

@media screen and (max-width:640px) {
    #global-header .global-header-inner {
        width: auto;
        min-width: auto;
        margin: 0 5%;
        padding: 6px 0;
    }

    #global-header .header-left {
        width: 37%;
    }

    #global-header .header-logo .logo-pc {
        display: none;
    }

    #global-header .header-logo .logo-sp {
        display: block;
        width: 100%;
        height: auto;
    }

    #global-header .header-instagram-pc {
        display: none;
    }

    #global-header .header-nav-pc {
        display: none;
    }

    #global-header .header-cart-pc {
        display: none;
    }

    #global-header .header-icons-sp {
        display: flex;
        width: 32%;
        justify-content: space-between;
    }

    #global-header .header-icons-sp .icon {
        display: flex;
    }

    #global-header .header-icons-sp .instagram {
        width: 26%;
    }

    #global-header .header-icons-sp .tel {
        width: 19%;
    }

    #global-header .header-icons-sp .cart {
        width: 24%;
    }

    #global-header .header-menu-btn {
        display: flex;
        margin-left: 3%;
        width: 14%;
    }

    #global-header .header-menu-btn img {
        width: 100%;
        height: auto;
    }

    body {
        padding-top: 65px;
    }
}



/* ========================================
   Footer
======================================== */

#global-footer a {
    color: #ffffff;
}

#global-footer ul {
    padding: 0;
}

#global-footer ul li {
    list-style: none;
}

#global-footer .tel-fixed {
    position: fixed;
    left: 30px;
    bottom: 30px;
    text-align: center;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
}

#global-footer .tel-fixed .text {
    font-size: 14px;
    color: #FF69B4;
}

#global-footer .tel-fixed .btn {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    background: #FF69B4;
    font-size: 18px;
    color: #ffffff;
}

#global-footer .tel-fixed .btn span {
    padding-left: 15px;
    background-image: url(images/0-icon-tel.png);
    background-size: 12px auto;
    background-position: left center;
    background-repeat: no-repeat;
}

#global-footer .pagetop {
    position: fixed;
    left: 10px;
    bottom: 10px;
    width: 15%;
}

#global-footer .global-footer-main {
    background: #582F0F;
}

#global-footer .global-footer-main .global-inner {
    display: flex;
    padding: 30px 0 50px;
}

#global-footer .global-footer-main .global-footer-main-left {
    width: 200px;
    text-align: center;
}

#global-footer .global-footer-main .global-footer-main-left .logo img {
    width: 50%;
}

#global-footer .global-footer-main .global-footer-main-left .tel a {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    background: #FF69B4;
    font-size: 18px;
    font-family: "Zen Maru Gothic", sans-serif;
}

#global-footer .global-footer-main .global-footer-main-left .tel a span {
    padding-left: 15px;
    background-image: url(images/0-icon-tel.png);
    background-size: 12px auto;
    background-position: left center;
    background-repeat: no-repeat;
    font-weight: bold;
}

#global-footer .global-footer-main .global-footer-main-right {
    flex: 1;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-pc {
    display: flex;
    margin: 10px 0 20px;
    justify-content: space-between;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-pc .instagram {
    width: 30px;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-pc>ul {
    text-align: right;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-pc>ul>li {
    display: inline-block;
    text-align: left;
    margin-left: 22px;
    vertical-align: top;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-pc>ul>li>ul {
    margin-top: 10px;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-pc>ul>li>ul>li {
    font-size: 14px;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-bottom {
    text-align: right;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-bottom ul li {
    display: inline-block;
    margin-left: 30px;
    font-size: 14px;
}

#global-footer .copyright p {
    padding: 8px 0;
    text-align: center;
    margin: 0;
}

#global-footer .copyright p small {
    font-size: 13px;
}


@media screen and (max-width:640px) {

#global-footer .global-footer-main .global-inner {
    display: block;
}

#global-footer .global-footer-main .global-footer-main-left {
    width: auto;
    border-bottom: solid 1px #ffffff;
    margin: 0 -8% 30px;
    padding-bottom: 30px;
}

#global-footer .global-footer-main .global-footer-main-left .logo img {
    width: 35%;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-sp {
    display: flex;
    gap: 20px;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-sp .global-footer-main-right-top-sp-item {
    flex: 1;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-sp .global-footer-main-right-top-sp-item ul li {
    margin-bottom: 30px;
    font-size: 18px;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-top .global-footer-main-right-top-sp .global-footer-main-right-top-sp-item ul li ul {
    margin-top: 30px;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-bottom {
    text-align: left;
}

#global-footer .global-footer-main .global-footer-main-right .global-footer-main-right-bottom ul li {
    display: block;
    margin: 0 0 30px;
    font-size: 18px;
}

}



#main {
    max-width: 1000px;
}



/*===================================================================
  breadcrumb
===================================================================*/

#breadcrumb-area {
    padding: 10px 0;
    border-bottom: solid 1px #DDDDDD;
}
#breadcrumb-area .global-inner > span::before {
	margin: 0 10px;
	content: ">";
	color: #333333;
}
#breadcrumb-area .global-inner > span:first-child::before {
	display: none;
}
#breadcrumb-area span {
    font-weight: normal;
	color: #333333;
}


@media screen and (max-width:640px) {

#breadcrumb-area {
    padding: 5px 0;
}

}
    


.instagram-area h2 {
    margin-bottom: 30px;
    text-align: center;
}

.instagram-area h2 img {
    width: 180px;
}

.instagram-area .info {
    margin: 0 0 20px 1%;
}

.instagram-area .info a {
    display: flex;
    width: 200px;
    align-items: center;
    color: #582F0F;
}

.instagram-area .info .img {
    width: 80px;
    margin-right: 20px;
}

.instagram-area .info .text {
    flex: 1;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.instagram-area .instagram-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.instagram-area .instagram-list .instagram-item {
    margin: 0 1% 20px;
    width: 23%;
}

.instagram-area .instagram-list .instagram-item {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.instagram-area .instagram-list .instagram-item::before {
    content: "";
    display: block;
    padding-top: 140%;
}

.instagram-area .instagram-list .instagram-item img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    vertical-align: bottom;
}

.instagram-area .add-btn {
    text-align: center;
}

.instagram-area .add-btn a {
    display: inline-block;
    width: 150px;
    border-radius: 3px;
    padding: 6px;
    background: #FF69B4;
    color: #ffffff;
}


@media screen and (max-width:640px) {


    .instagram-area .info a {
        width: auto;
    }

    .instagram-area .info .img {
        width: 25%;
        margin-right: 5%;
    }

    .instagram-area .instagram-list .instagram-item {
        width: 48%;
    }

}



.entry-header {
    padding: 100px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}
.entry-header h1 {
    font-size: 42px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.4;
    color: #ffffff;
}
.entry-header-02 {
    padding: 80px 0 50px;
    text-align: center;
}
.entry-header-02 h1 {
    font-size: 38px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #582F0F;
}


@media screen and (max-width:640px) {

.entry-header {
    padding: 60px 0;
}

.entry-header h1 {
    font-size: 8vw;
}

}



.elementor-element-face712 {
    text-align: center;
}


.storage-method-icon-list .storage-method-icon-item {
    display: inline-block;
    border-radius: 5px;
    color: #ffffff;
    margin: 0 2px;
    padding: 5px 10px;
    line-height: 1;
    font-size: 16px;
    font-family: "Noto Sans JP", Sans-serif;
}

.storage-method-icon-list .storage-method-icon-item-01 {
    background: #F78E3E;
}

.storage-method-icon-list .storage-method-icon-item-02 {
    background: #428FDB;
}

.home .storage-method-icon-list-add h3,
.home .storage-method-icon-list-add-01 h3 {
    position: relative;
}

.home .storage-method-icon-list-add .storage-method-icon-list,
.home .storage-method-icon-list-add-01 .storage-method-icon-list {
    position: absolute;
    top: 0;
    right: 0;
}


.page-id-3730 .storage-method-icon-list {
    display: inline-block;
}




/*.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1000px;
}*/





/* ========================================
   OEM
======================================== */
#page-oem {
    line-height: 1.8;
    font-size: 16px;
}

#page-oem .entry-content {
    margin: 0;
    padding: 0;
}

/* OEM MV Area */
#page-oem .mv-area {
    background: url('images/oem-mv-01.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0 170px;
    min-height: 200px;
    display: flex;
    align-items: center;
}
#page-oem .mv-area .inner {
    margin: 0 auto;
    width: 1200px;
}
#page-oem .mv-area .mv-text {
    font-size: 42px;
    font-weight: bold;
    margin: 0;
    line-height: 2;
    font-family: "Zen Maru Gothic", sans-serif;
}
#page-oem .mv-area .mv-text .mv-text-line {
    display: inline-block;
    background: #fff;
    color: #5D4037;
    padding: 0.25em 0.5em;
    line-height: 1;
}

/* OEM First Area */
#page-oem .first-area {
    padding: 90px 0;
}

#page-oem .first-area .first-head {
    text-align: center;
}

#page-oem .first-area .first-head .label {
    font-size: 32px;
    font-weight: bold;
    color: #D35C1E;
    margin: 0 0 30px;
    line-height: 1.4;
    font-family: "Zen Maru Gothic", sans-serif;
}

#page-oem .first-area .first-head .text {
    font-size: 20px;
    font-weight: bold;
    line-height: 2.2;
    margin: 0;
    color: #582F0F;
    font-family: "Zen Maru Gothic", sans-serif;
}

/* OEM About Area */
#page-oem .about-area {
    padding: 130px 0 80px;
    background: #EDE5DC;
}

#page-oem .about-area .about-main-title {
    font-size: 38px;
    font-weight: bold;
    color: #C24A15;
    margin: 0 0 30px;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.5;
}
#page-oem .about-area .about-sub-title {
    font-size: 24px;
    font-weight: bold;
    color: #582F0F;
    margin: 0 0 40px;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.5;
}
#page-oem .about-area .about-content {
    display: flex;
    gap: 30px;
    margin: 0 auto 80px;
    width: 750px;
}
#page-oem .about-area .about-left {
    flex: 1;
}
#page-oem .about-area .about-desc {
    margin: 0;
    line-height: 2;
}
#page-oem .about-area .about-right {
    width: 210px;
}

#page-oem .about-area .about-right img {
    width: 100%;
    height: auto;
}

#page-oem .about-area .about-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#page-oem .about-area .about-list li {
    text-align: center;
}

#page-oem .about-area .about-list li .img {
    margin-bottom: 15px;
}

#page-oem .about-area .about-list li .img img {
}

#page-oem .about-area .about-list li .label {
    font-size: 23px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    color: #582F0F;
    margin: 0;
}

/* OEM Example Area */
#page-oem .example-area {
    padding: 100px 0;
}

#page-oem .example-area .example-head {
    text-align: center;
    margin-bottom: 50px;
}

#page-oem .example-area .example-head .sub {
    font-size: 26px;
    color: #FF69B4;
    margin: 0 0 15px;
    letter-spacing: 3px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
}

#page-oem .example-area .example-head .title {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    color: #D35C1E;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

#page-oem .example-area .example-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0 0 60px;
    padding: 0;
}

#page-oem .example-area .example-list li {
    margin: 0 5% 50px;
    width: 40%;
    text-align: center;
}

#page-oem .example-area .example-list li .img {
    margin: 0 auto 20px;
}
#page-oem .example-area .example-list li .img img {
}

#page-oem .example-area .example-list li .text .label {
    font-size: 24px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #5D4037;
    margin: 0 0 15px;
}

#page-oem .example-area .example-list li .text .desc {
    font-size: 18px;
    color: #5D4037;
    width: 80%;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
}

/* OEM Example Sub Section */
#page-oem .example-area .example-sub {
    padding: 40px 0;
}

#page-oem .example-area .example-sub-title {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #5D4037;
    margin: 0 0 60px;
    line-height: 1.5;
    padding-top: 70px;
    background: url('images/oem-example-title-bg.png') no-repeat center top;
    background-size: 130px auto;
    text-align: center;
}

#page-oem .example-area .example-sub-list {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#page-oem .example-area .example-sub-list li .img {
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: flex-end;
}

#page-oem .example-area .example-sub-list li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

#page-oem .example-area .example-sub-list li .label {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #5D4037;
    margin: 0 0 10px;
}

#page-oem .example-area .example-sub-list li .desc {
    color: #5D4037;
    margin: 0;
    line-height: 1.8;
}

/* OEM Point Area */
#page-oem .point-area {
    padding: 100px 0;
    background: #EDE5DC;
}

#page-oem .point-area .point-card {
    background: #fff;
    border-radius: 20px;
    padding: 100px 100px;
}

#page-oem .point-area .point-head {
    text-align: center;
    margin-bottom: 40px;
}

#page-oem .point-area .point-head .sub {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 26px;
    color: #FF69B4;
    margin: 0 0 10px;
    letter-spacing: 3px;
    font-weight: bold;
}

#page-oem .point-area .point-head .title {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    color: #D35C1E;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

#page-oem .point-area .point-list {
    display: flex;
    justify-content: center;
    gap: 90px;
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
}

#page-oem .point-area .point-list li {
    text-align: center;
    flex: 1;
}

#page-oem .point-area .point-list li .label {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
    color: #5D4037;
}

#page-oem .point-area .point-notes {
    list-style: disc;
    margin: 0;
    padding: 40px 50px 40px 80px;
    background: #F5F5F5;
    border-radius: 15px;
}

#page-oem .point-area .point-notes li {
    margin-bottom: 10px;
    line-height: 1.6;
}

#page-oem .point-area .point-notes li:last-child {
    margin-bottom: 0;
}

/* OEM Flow Area */
#page-oem .flow-area {
    padding: 100px 0;
}

#page-oem .flow-area .flow-head {
    text-align: center;
    margin-bottom: 80px;
}

#page-oem .flow-area .flow-head .sub {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 26px;
    color: #FF69B4;
    margin: 0 0 15px;
    letter-spacing: 3px;
    font-weight: bold;
}

#page-oem .flow-area .flow-head .title {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    color: #D35C1E;
    letter-spacing: 0.15em;
}

#page-oem .flow-area .flow-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style: none;
    max-width: 650px;
    margin: 0 auto;
    padding: 0;
}

#page-oem .flow-area .flow-list li {
    background: #fff;
    border-radius: 15px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 3px solid #D35C1E;
}

#page-oem .flow-area .flow-list li .img {
    width: 23%;
}
#page-oem .flow-area .flow-list li .text {
    flex: 1;
}

#page-oem .flow-area .flow-list li .text .label {
    display: flex;
    align-items: center;
}
#page-oem .flow-area .flow-list li .text .label .label-1 {
    width: 40px;
    font-size: 57px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #D35C1E;
    margin-right: 10px;
}
#page-oem .flow-area .flow-list li .text .label .label-2 {
    flex: 1;
    font-size: 28px;
    font-weight: bold;
}

#page-oem .flow-area .flow-list li .text .desc {
    margin: 0;
    line-height: 2;
}

/* OEM Contact Area */
#page-oem .contact-area {
    background-image: url('images/oem-contact-01.png');
    background-position: center center;
    background-size: cover;
    position: relative;
    padding: 110px 0;
}

#page-oem .contact-area::before {
    content: "";
    /* Add overlay if needed for text readability, though design looks like the image itself is dark/filtered */
    /* Assuming image is already treated or we rely on text shadow/color */
}

#page-oem .contact-area .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

#page-oem .contact-area .contact-label {
    position: absolute;
    top: -80px;
    left: -80px;
    font-size: 107px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    margin: 0;
}

#page-oem .contact-area .contact-left {
    position: relative;
    z-index: 2;
    padding: 0;
}

#page-oem .contact-area .contact-left .text {
    font-size: 20px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #fff;
    margin: 0;
    line-height: 2;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#page-oem .contact-area .contact-right {
    position: relative;
    z-index: 2;
}

#page-oem .contact-area .contact-btn {
    display: inline-block;
    padding: 15px 80px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#page-oem .contact-area .contact-btn:hover {
    opacity: 1;
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* OEM Page SP */
@media screen and (max-width:640px) {
   
#page-oem .mv-area {
    width: auto;
    padding: 45vw 0 10vw;
}
#page-oem .mv-area .inner {
    margin: 0 5%;
}
#page-oem .mv-area .mv-text {
    font-size: 7vw;
}
#page-oem .first-area .first-head .text {
    text-align: left;
}
    
#page-oem .about-area {
    padding: 80px 0 40px;
}
#page-oem .about-area .about-main-title {
    font-size: 7.5vw;
}
#page-oem .about-area .about-sub-title {
    font-size: 6vw;
    margin: 0 0 40px;
    text-align: left;
}
#page-oem .about-area .about-img {
    margin-bottom: 30px;
    text-align: center;
}
#page-oem .about-area .about-img img {
    width: 70%;
}
#page-oem .about-area .about-content {
    display: block;
    margin: 0 auto 80px;
    width: auto;
}   
#page-oem .about-area .about-list {
    display: block;
}
#page-oem .about-area .about-list li {
    margin-bottom: 50px;
}
#page-oem .about-area .about-list li .label {
    font-size: 6vw;
}
#page-oem .example-area {
    padding: 100px 0 30px;
}
#page-oem .example-area .example-head {
    margin-bottom: 50px;
}
#page-oem .example-area .example-head .sub {
    font-size: 6vw;
}
#page-oem .example-area .example-head .title {
    font-size: 6.5vw;
}
#page-oem .example-area .example-list {
    display: block;
}
#page-oem .example-area .example-list li {
    margin: 0 0 50px;
    width: auto;
}
#page-oem .example-area .example-list li .img {
    margin-bottom: 10px;
}
#page-oem .example-area .example-list li .text .desc {
    width: auto;
}
#page-oem .example-area .example-sub-title {
    font-size: 7.5vw;
}
#page-oem .example-area .example-sub-list {
    display: block;
}
#page-oem .example-area .example-sub-list li {
    margin-bottom: 50px;
}
#page-oem .example-area .example-sub-list li .img {
    height: 55vw;
}
#page-oem .example-area .example-sub-list li .label {
    font-size: 7.5vw;
    margin: 0 0 20px;
}
#page-oem .example-area .example-sub-list li .desc {
    font-size: 18px;
}
#page-oem .point-area .point-card {
    padding: 60px 6%;
}
#page-oem .point-area .point-head {
    margin-bottom: 50px;
}
#page-oem .point-area .point-head .sub {
    font-size: 6vw;
}
#page-oem .point-area .point-head .title {
    font-size: 6.5vw;
}
#page-oem .point-area .point-list {
    display: block;
}
#page-oem .point-area .point-list li {
    margin-bottom: 60px;
}
#page-oem .point-area .point-list li .img {
    margin-bottom: 20px;
}
#page-oem .point-area .point-list li .img img {
    width: 80%;
}
#page-oem .point-area .point-list li .label {
    font-size: 7vw;
}
#page-oem .point-area .point-notes {
    padding: 30px 30px 30px 40px;
    font-size: 18px;
}
#page-oem .flow-area {
    padding: 60px 0;
}
#page-oem .flow-area .flow-head {
    margin-bottom: 50px;
}
#page-oem .flow-area .flow-head .sub {
    font-size: 6vw;
}
#page-oem .flow-area .flow-head .title {
    font-size: 8vw;
}
#page-oem .flow-area .flow-list li .text .label {
    padding-bottom: 3px;
    align-items: end;
    line-height: 1;
}
#page-oem .flow-area .flow-list li .text .label .label-1 {
    margin: 0;
    width: 12%;
    font-size: 14vw;
}
#page-oem .flow-area .flow-list li .text .label .label-2 {
    font-size: 6vw;
}
    
#page-oem .flow-area .flow-list li {
    display: block;
    padding: 35px 6%;
}
#page-oem .flow-area .flow-list li .img {
    width: auto;
    text-align: center;
}
#page-oem .flow-area .flow-list li .img img {
    width: 45%;
}
#page-oem .flow-area .flow-list li .text .desc {
    margin-left: 12%;
}
#page-oem .contact-area {
    padding: 30px 0 60px;
    background-image: url('images/oem-contact-01-sp.png');
}
#page-oem .contact-area  .contact-content {
    display: block;
}
#page-oem .contact-area .contact-left {
    margin-bottom: 20px;
}
#page-oem .contact-area .contact-left .text {
    font-size: 6vw;
}
#page-oem .contact-area .contact-label {
    position: static;
    margin-bottom: 10px;
    font-size: 18vw;
    text-align: center;
}
#page-oem .contact-area .contact-btn {
    display: block;
}


}



/* ========================================
   history
======================================== */

#page-history .entry-header {
    background-image: url('images/history-title-bg.png');
}
#page-history .first-area {
    padding: 80px 0;
}
#page-history .first-area p {
    margin: 0;
    text-align: center;
    color: #582F0F;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.6;
}
#page-history .history-area {
    padding: 100px 0 60px;
    background: #EDE5DC;
}
#page-history .history-area .history-list {
    position: relative;
}
#page-history .history-area .history-list::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 2px;
    height: calc(100% - 60px);
    background: #C24A15;
}
#page-history .history-area .history-list .history-item {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}
#page-history .history-area .history-list .history-item::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    background: #C24A15;
    z-index: 1;
}
#page-history .history-area .history-list .history-item:last-child::after {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
    height: 100%;
    background: #EDE5DC;
}
#page-history .history-area .history-list .history-item .year {
    position: relative;
    margin-bottom: 30px;
    float: left;
    width: 50%;
    font-size: 95px;
    font-weight: bold;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #D9AA87;
    line-height: 1;
}
#page-history .history-area .history-list .history-item-reverse .year {
    float: right;
    text-align: right;
}
#page-history .history-area .history-list .history-item-reverse-02 .year {
    float: right;
    text-align: right;
}
#page-history .history-area .history-list .history-item:last-child .year {
    color: #C24A15;
}
#page-history .history-area .history-list .history-item .year::before {
    content: "";
    position: absolute;
    top: 60px;
    right: 0;
    width: 60%;
    height: 2px;
    background: #C24A15;
}
#page-history .history-area .history-list .history-item-reverse .year::before {
    left: 0;
    right: inherit;
}
#page-history .history-area .history-list .history-item-reverse-02 .year::before {
    left: 0;
    right: inherit;
}
#page-history .history-area .history-list .history-item .text {
    float: left;
    width: 45%;;
}
#page-history .history-area .history-list .history-item-reverse .text {
    float: right;
}
#page-history .history-area .history-list .history-item .text .text-01 {
    margin-bottom: 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    color: #C24A15;
}
#page-history .history-area .history-list .history-item .text .text-02 {
    line-height: 2;
}
#page-history .history-area .history-list .history-item .text .text-03 {
    background-image: url(images/history-history-title-bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 130px auto;
    text-align: center;
    font-size: 24px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    color: #C24A15;
    padding-top: 50px;
    margin-bottom: 40px;
}
#page-history .history-area .history-list .history-item .img {
    float: right;
    width: 45%;
    min-height: 200px;
}
#page-history .history-area .history-list .history-item-reverse .img {
    float: left;
}
#page-history .history-area .history-list .history-item .img img {
    border-radius: 10px;
    overflow: hidden;
}
#page-history .history-area .history-list .history-item .img .img-01 {
    margin-bottom: 10px;
}
#page-history .history-area .history-list .history-item .img .img-02 {
    margin-bottom: 10px;
}
#page-history .history-area .history-list .history-item-reverse .img .img-02 {
    text-align: right;
}
#page-history .history-area .history-list .history-item .img .img-02 img {
    width: 60%;
}
#page-history .history-area .history-list .history-item .img .img-03 {
    display: flex;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 15px 4%;
}
#page-history .history-area .history-list .history-item .img .img-03 img {
    width: 48%;
}

#page-history .voice-area {
    padding: 100px 0;
    background: #C68A5D;
}
#page-history .voice-area .voice-head {
    margin-bottom: 50px;
    text-align: center;
}
#page-history .voice-area .voice-head h2 {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 38px;
    font-weight: bold;
    color: #ffffff;
}
#page-history .voice-area .voice-head p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
}
#page-history .voice-area .text-01 {
    text-align: center;
    font-size: 28px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Voice Content */
#page-history .voice-area .voice-conent {
    margin-top: 40px;
}

/* Voice Top Section */
#page-history .voice-area .voice-top {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}
#page-history .voice-area .voice-user-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0 0 15px;
    padding: 0;
}
#page-history .voice-area .voice-user-list li {
    width: 80px;
}
#page-history .voice-area .voice-top-bottom {
    display: flex;
    gap: 20px;
}
#page-history .voice-area .voice-top-images {
    width: 63%;
    display: flex;
    gap: 20px;
}
#page-history .voice-area .voice-top-images img {
    width: calc(50% - 10px);
    height: auto;
    border-radius: 10px;
}
#page-history .voice-area .voice-top-text {
    flex: 1;
}
#page-history .voice-area .voice-top-text p {
    margin: 0;
    line-height: 1.8;
}

/* Voice Card List */
#page-history .voice-area .voice-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
#page-history .voice-area .voice-card-list li {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
}
#page-history .voice-area .voice-card-list li .icon {
    width: 80px;
}
#page-history .voice-area .voice-card-list li .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#page-history .voice-area .voice-card-list li .text {
    flex: 1;
}
#page-history .voice-area .voice-card-list li .text p {
    color: #5D4037;
    margin: 0;
    line-height: 1.8;
}

#page-history .last-area {
    padding: 80px 0;
}
#page-history .last-area p {
    margin: 0;
    text-align: center;
    color: #582F0F;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
}



@media screen and (max-width:640px) {
    
 
#page-history .entry-header {
    background-image: url('images/history-title-bg-sp.png');
}
#page-history .first-area {
    padding: 30px 0;
}
#page-history .first-area p {
    font-size: 5vw;
    line-height: 1.8;
}
#page-history .history-area {
    padding: 50px 0;
    overflow: hidden;
}
#page-history .history-area .history-list::before {
    margin: 0;
}
#page-history .history-area .history-list .history-item {
    padding-bottom: 20px;
    overflow: initial;
}
#page-history .history-area .history-list .history-item::before {
    margin: 0;
    left: -15px;
}
#page-history .history-area .history-list .history-item:last-child::after {
    margin: 0;
}
#page-history .history-area .history-list .history-item .year {
    width: 100%;
    text-align: right;
    float: none;
    font-size: 17vw;
}
#page-history .history-area .history-list .history-item .year::before {
    right: auto;
    left: 0;
    width: 50%;
}
#page-history .history-area .history-list .history-item .year span {
    display: inline-block;
    padding-top: 15px;
}
#page-history .history-area .history-list .history-item .img {
    float: none;
    margin-left: 10%;
    width: auto;
    min-height: auto;
}
#page-history .history-area .history-list .history-item .img .img-02 {
    text-align: left;
}
#page-history .history-area .history-list .history-item .img .img-02 img {
    width: 80%;
}
#page-history .history-area .history-list .history-item .text {
    float: none;
    width: auto;
    margin-left: 10%;
}
#page-history .history-area .history-list .history-item .text .text-01 {
    font-size: 5vw;
}
#page-history .history-area .history-list .history-item .text .text-03 {
    font-size: 5vw;
    margin-bottom: 10px;
}
#page-history .voice-area {
    padding: 50px 0 80px;
}
#page-history .voice-area .voice-head {
    margin-bottom: 30px;
}
#page-history .voice-area .voice-head p {
    font-size: 5vw;
}
#page-history .voice-area .voice-head h2 {
    font-size: 7vw;
}
    
#page-history .voice-area .text-01 {
    font-size: 5.5vw;
    margin-bottom: 40px;
}
#page-history .voice-area .voice-user-list {
    gap: 10px;
}
#page-history .voice-area .voice-top-bottom {
    display: block;
}
#page-history .voice-area .voice-top-images {
    width: auto;
    display: block;
}
#page-history .voice-area .voice-top-images img {
    width: auto;
    margin-bottom: 10px;
}
    
#page-history .voice-area .voice-card-list li {
    margin: 0;
    width: auto;
    gap: 15px;
}
#page-history .voice-area .voice-card-list li .icon {
    width: 23%;
}
#page-history .last-area {
    padding: 40px 0;
}
#page-history .last-area p {
    font-size: 4vw;
}
    
    
}


/* ========================================
   order
======================================== */

#page-order .first-area {
    margin-bottom: 100px;
    text-align: center;
    font-size: 18px;
}
#page-order .order-list-area {
    margin-bottom: 100px;
}
#page-order .order-list-area .order-list {
    display: flex;
    width: 750px;
    margin: 0 auto;
    gap: 40px;
}
#page-order .order-list-area .order-list .order-item {
    flex: 1;
}
#page-order .order-list-area .order-list .order-item .img {
	position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
#page-order .order-list-area .order-list .order-item-01 .img {
    border: 5px solid #3E90C0;
}
#page-order .order-list-area .order-list .order-item-02 .img {
    border: 5px solid #C24A15;
}
#page-order .order-list-area .order-list .order-item .img::before {
	content: "";
	display: block;
	padding-top: 65%;
}
#page-order .order-list-area .order-list .order-item .img img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom;
}
#page-order .order-list-area .order-list .order-item .text {
    display: flex;
    justify-content: space-between;
}
#page-order .order-list-area .order-list .order-item .text .text-left {
    flex: 1;
}
#page-order .order-list-area .order-list .order-item .text .text-left h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding-bottom: 10px;
    font-size: 24px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    color: #582F0F;
}
#page-order .order-list-area .order-list .order-item .text .text-left h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 100px;
}
#page-order .order-list-area .order-list .order-item-01 .text .text-left h2::before {
    background: #3E90C0;
}
#page-order .order-list-area .order-list .order-item-02 .text .text-left h2::before {
    background: #C24A15;
}
#page-order .order-list-area .order-list .order-item .text .text-right {
    text-align: right;
    flex: 1;
}
#page-order .order-list-area .order-list .order-item .text .text-right p {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #333333;
}


@media screen and (max-width:640px) {
    

#page-order .order-list-area .order-list {
    display: block;
    width: auto;
}
#page-order .order-list-area .order-list .order-item {
    margin-bottom: 50px;
}
    
        
}




/* ========================================
   product
======================================== */

.cart-btn-list .cart-btn-item {
    display: inline-block;
    margin-right: 8px;
    text-align: center;
    border-radius: 5px;
}
.cart-btn-list .cart-btn-item a {
    display: flex;
    padding: 15px 25px;
    border: solid 1px #C24A15;
    border-radius: 5px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #C24A15;
    opacity: 1;
}
.cart-btn-list .cart-btn-item-01 a {
    border-color: #428FDB;
    color: #428FDB;
}
.cart-btn-list .cart-btn-item-02 a {
    border-color: #EB7C27;
    color: #EB7C27;
}
.cart-btn-list .cart-btn-item a:hover {
    color: #ffffff;
}
.cart-btn-list .cart-btn-item-01 a:hover {
    background: #428FDB;
}
.cart-btn-list .cart-btn-item-02 a:hover {
    background: #EB7C27;
}
.cart-btn-list .cart-btn-item a::before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 28px;
    height: 28px;
    background-position: center center;
    background-size: 100% auto;
}
.cart-btn-list .cart-btn-item-01 a::before {
    background-image: url(images/0-icon-cart-04.png),url(images/0-icon-cart.png);
}
.cart-btn-list .cart-btn-item-02 a::before {
    background-image: url(images/0-icon-cart-05.png),url(images/0-icon-cart.png);
}
.cart-btn-list .cart-btn-item a:hover::before {
}
.cart-btn-list .cart-btn-item-01 a:hover::before {
    background-image: url(images/0-icon-cart.png),url(images/0-icon-cart-04.png);
}
.cart-btn-list .cart-btn-item-02 a:hover::before {
    background-image: url(images/0-icon-cart.png),url(images/0-icon-cart-05.png);
}


@media screen and (max-width:640px) {
    
.cart-btn-list .cart-btn-item a {
    padding: 10px 15px;
    text-align: left;
    line-height: 1.6;
}

}




/* ========================================
   product
======================================== */

.woocommerce div.product .product_meta {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: none;
}
.woocommerce div.product .woocommerce-Tabs-panel#tab-description {
    display: block !important;
}

/* ========================================
   woocommerce
======================================== */


.woocommerce-page #global-footer {
    margin-top: 100px;
}
.woocommerce-page #breadcrumb-area {
    margin-bottom: 50px;
}
.woocommerce-page #content {
    max-width: 1000px;
}


/* ========================================
   shop
======================================== */

#site .woocommerce-products-header__title {
    padding: 50px 0;
    text-align: center;
    font-size: 38px;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #582F0F;
}
#site ul.products {
    padding-top: 50px;
}
#site ul.products li {
    margin-bottom: 60px;
    color: #582F0F;
    
}
#site ul.products li .woocommerce-loop-product__title {
    font-size: 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.6;
    color: #582F0F;   
}
#site ul.products li .price {
    font-size: 24px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    line-height: 1.6;
    color: #582F0F; 
}
#site ul.products li .price .woocommerce-price-suffix {
    font-size: 16px;
}


@media screen and (max-width:640px) {

#site .woocommerce-products-header__title {
    font-size: 9vw;
}
#site ul.products li .woocommerce-loop-product__title {
    font-size: 5vw;
    line-height: 1.4;
}
#site ul.products li .price {
    font-size: 6.5vw;
}
#site ul.products li .price .woocommerce-price-suffix {
    font-size: 4vw;
}
        
}




/* ========================================
   product
======================================== */
/*
.single-product #site .single_add_to_cart_button {
    display: flex;
    min-width: 200px;
    padding: 15px 5px;
    border: solid 1px #C24A15;
    border-radius: 5px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #C24A15;
}
.single-product #site .single_add_to_cart_buttonn::before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 28px;
    height: 28px;
    background-image: url(images/0-icon-cart-03.png);
    background-position: center center;
    background-size: 100% auto;
}*/



/* ========================================
   cart
======================================== */

.wc-continue-shopping-fixed {
  text-align:right;
  margin: 0 0 25px;
}
.wc-mobile-qty-select {
    display: inline-block;
    width: 100px;
    color: #333;
}
.woocommerce ul.products li.product .button {
    display: flex;
    padding: 15px 5px;
    border: solid 1px #C24A15;
    border-radius: 5px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #C24A15;
    opacity: 1;
}
.woocommerce ul.products li.product .button:hover {
    background: #C24A15;
    color: #ffffff;
}
.woocommerce ul.products li.product .button::before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 28px;
    height: 28px;
    background-image: url(images/0-icon-cart-03.png),url(images/0-icon-cart.png);
    background-position: center center;
    background-size: 100% auto;
}
.woocommerce ul.products li.product .button:hover::before {
    background-image: url(images/0-icon-cart.png),url(images/0-icon-cart-03.png);
    background-size: 100% auto;
}
.woocommerce-message a.button {
    display: none;
}


@media screen and (max-width:640px) {
    
.woocommerce ul.products li.product .button {
    padding: 12px 5px;
}
.woocommerce ul.products li.product .button::before {
    width: 20px;
    height: 20px;
}

}






