/*---------------------------------------------------------
                共通css
---------------------------------------------------------*/
@font-face {
    font-family: "Helvetica";
    src: url("../fonts/Helvetica.woff2") format("woff2"),url("../fonts/Helvetica.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    background-repeat: no-repeat;
}

:root {
    --font-sub: "Helvetica";
    --main-color: #69481F;
    --sub-color: #EADACA;
    --accent-color: #E77517;
    --accent-color-hover: #da690d;
    --text-color: #333;
    --bg-color: #F4F4F4;
    --bg-sub-color: #D3C8BA;
    --err-color: #EA4335;
}

html {
    color: var(--text-color);
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1.9;
    letter-spacing: 0.1em;
}

body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
    word-break: break-word;
}

a {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
    transition: .3s;
}

ul {
    list-style: none;
}

p {
    line-height: 1.9;
}

img,
iframe {
    vertical-align: bottom;
}

.container {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 100px;
}

.container.no_mg {
    margin-top: 0;
}

main {
    flex: 1;
}

.anchor {
    padding-top: 100px;
    margin-top: 100px;
}

.pc_show {
    display: block;
}
.sp_show {
    display: none;
}

@media screen and (max-width:768px) {
    .container {
        margin-top: 80px;
    }
    .pc_show {
        display: none;
    }
    .sp_show {
        display: block;
    }
    .sp_show .slider_product,
    .sp_show .slider_hidden {
        width: 100vw;
    }
}

/*---------------------------------------------------------
                AJAXローダー
---------------------------------------------------------*/
.ajax_loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: solid 4px;
    border-color: #000000 #00000010 #00000010;
    position: relative;
    animation-name: spin;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


/*---------------------------------------------------------
                ポップアップメッセージ
---------------------------------------------------------*/
.popup_message {
    position: fixed;
    top: -110vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 30px 50px;
    background: #fff;
    border: 1px solid var(--sub-color);
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 3px 0 rgba(51, 51, 51, .1);
    transition: .5s;
}
.popup_message .message {
    font-size: clamp(14px,1.4vw,18px);
    font-weight: 500;
    text-align: center;
}
.popup_message.active {
    top: 0;
}
@media screen and (max-width:500px) {
    .popup_message {
        width: 90%;
    }
}

/*---------------------------------------------------------
                フォント
---------------------------------------------------------*/
.ttl_main {
    max-width: 90%;
    margin: 150px auto 0;
    font-size: clamp(24px,3vw,30px);
    font-weight: 600;
    text-align: center;
}
.ttl_min {
    line-height: 1.6;
    font-size: clamp(20px,2vw,25px);
    font-weight: 600;
}
.ttl_min span {
    display: block;
    color: #CDCDCD;
    font-size: clamp(14px,1.5vw,18px);
    font-weight: 400;
}
.subfont {
    font-family: var(--font-sub);
    font-style: normal;
    letter-spacing: 0.15em;
}
.ttl_main.subfont {
    letter-spacing: 0.07em;
}
.ttl_main.subfont span {
    letter-spacing: 0.15em;
}
.ttl_flex {
    display: flex;
    align-items: center;
    gap: 15px;
}
.no_hit {
    font-size: 18px;
}
@media screen and (max-width:990px) {
    .ttl_main.right span {
        margin-right: -.5em;
    }
    .ttl_main.left span {
        margin-left: -.5em;
    }    
}
@media screen and (max-width:768px) {
    .no_hit {
        font-size: 16px;
        text-align: center;
    }    
}
/*---------------------------------------------------------
                ボタン
---------------------------------------------------------*/
.btn_main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 60px;
    margin: 0 auto;
    padding: 0 10px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    font-size: 15px;
    color: var(--text-color);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}
.btn_main:has(:disabled) {
    background: #9f9f9f;
    border-color: #9f9f9f;
    color: #fff;
    cursor: not-allowed;
}
.btn_main:has(:disabled):hover {
    border-color: #9f9f9f;
    color: #fff;
}
.btn_main:has(:disabled) input[type="button"] {
    cursor: not-allowed;
    pointer-events: none;
}
.btn_main.og {
    border-color: var(--accent-color);
    color: var(--accent-color);
}
/* hover */
@media (hover: hover) and (pointer: fine) {
    .btn_main:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }
}

.btn_group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px 32px;
    width: 80%;
    margin: 56px auto 0;
}
.btn_group a {
    width: calc((100% - 96px) / 4);
    margin: 0;
}
@media screen and (max-width:1200px) {
    .btn_group a {
        width: calc((100% - 32px) / 2);
    }
}
@media screen and (max-width:768px) {
    .btn_group {
        width: 90%;
        gap: 10px;
    }
    .btn_group a {
        width: calc((100% - 10px) / 2);
    }
}

/*---------------------------------------------------------
                テキストリンク
---------------------------------------------------------*/
.link_box {
    margin: 8px 5% 0 0;
    text-align: right;
}
.link_next {
    color: var(--text-color);
    font-size: clamp(12px,1.2vw,15px);
    text-align: right;
    transition: .3s;
}
.link_next::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: var(--text-color);
    line-height: 1;
    width: .5em;
    height: .5em;
    margin-left: 4px;
    border: 0.1em solid var(--text-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-2px) rotate(45deg);
    transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
    .link_next:hover {
        color: var(--accent-color);
    }
    .link_next:hover::after {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }
}
.link_txt {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}

/*---------------------------------------------------------
                サイドバー
---------------------------------------------------------*/
.btn_search,
.bg_search,
.btn_search_close {
    display: none;
}
aside {
    width: 240px;
    margin: 60px 15px;
}
aside .btn_main {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}
@media (hover: hover) and (pointer: fine) {
    aside .btn_main:hover {
        color: #fff;
        background: var(--accent-color-hover);
        border-color: var(--accent-color-hover);
    }
}
.search_list {
    padding: 50px 24px;
    border-top: 1px solid var(--sub-color);
}
.search_list:first-of-type {
    padding-top: 0;
    border: none;
}
.search_list .search_list_name {
    font-size: 18px;
    font-weight: 600;
}
.search_list .search_list_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}
.search_list .search_list_box .search_list_child {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
    padding: 10px 0 20px;
}
.search_list .color_picker {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-top: .3em;
    border-radius: 50%;
    border: 1px solid #e4e4e4;
}
.btn_shop_box {
    margin-top: 100px;
}
.btn_shop_box a {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 286 / 150;
    transition: .3s;
}
.btn_shop_box a + a {
    margin-top: 10px;
}
.btn_shop_box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
    border-radius: 5px;
}
@media (hover: hover) and (pointer: fine) {
    .btn_shop_box a:hover {
        opacity: .6;
    }
}
.btn_shop_box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.btn_shop_box a p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 90%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}
aside .menu_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 96%;
    margin: 40px auto 0;
}
aside .menu_box a {
    white-space: nowrap;
}
aside .menu_box .ic_box {
    display: flex;
    align-items: center;
}
aside .menu_box .ic_box a {
    padding: 10px 12px;
    border-right: 1px solid var(--sub-color);
}
aside .menu_box .ic_box a:last-of-type {
    padding-right: 0;
    border: none;
}
aside .menu_box .ic_box a svg {
    width: 46px;
    height: 46px;
}
aside .menu_box .ic_box a svg path {
    transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
    aside .menu_box .ic_box a:hover svg path {
        stroke: var(--accent-color);
    }
}
aside .menu_box .ic_box .ic_cart .cart_badge {
    top: 5px;
}
/* レンジスライダー */
.range_box {
    width: 100%;
}
.range_box .range_input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 24px;
}
.range_box .range_input input {
    flex: 1;
    background: #fff;
    border: 1px solid var(--sub-color);
}
.range_box .range_slider {
    height: 10px;
    margin-bottom: 40px;
}
.noUi-horizontal .noUi-handle {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    top: -8px;
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after  {
    content: none;
}
.noUi-connect {
    background: var(--accent-color);
}
.noUi-value-horizontal {
    font-size: 15px;
    color: var(--text-color);
}
.noUi-marker-horizontal.noUi-marker {
    width: 1px;
    background: var(--text-color);
}
.noUi-touch-area {
    cursor: grab;
}
.noUi-marker-sub {
    display: none;
}
.noUi-value-sub {
    display: none;
}
@media screen and (max-width:990px) {
    .btn_search {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 70;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--accent-color);
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        box-shadow: 0 4px 4px 0 rgba(51, 51, 51, .25);
        transition: .3s;
    }
    @media (hover: hover) and (pointer: fine) {
        .btn_search:hover {
            background: var(--accent-color-hover);
        }
    }
    .btn_search img {
        width: 40px;
    }
    .bg_search {
        position: fixed;
        left: 0;
        bottom: 0;
        opacity: 0;
        z-index: 80;
        display: block;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,.25);
        pointer-events: none;
        transition: .3s;
    }
    .bg_search.open {
        opacity: 1;
        pointer-events: all;
    }
    .btn_search_close {
        position: fixed;
        top: calc(120px + 20px);
        right: 20px;
        opacity: 0;
        z-index: 100;
        display: block;
        pointer-events: none;
        transition: .3s;
    }
    .btn_search_close.open {
        opacity: 1;
        pointer-events: all;
        cursor: pointer;
    }
    .btn_search_close svg path {
        transition: .3s;
    }
    @media (hover: hover) and (pointer: fine) {
        .btn_search_close:hover svg path {
            stroke: var(--accent-color);
        }
    }
    aside {
        position: fixed;
        left: 0;
        bottom: -150vh;
        z-index: 80;
        width: 100%;
        height: calc(100svh - 120px);
        margin: 0;
        border-radius: 10px 10px 0 0;
        background: #fff;
        transition: .5s;
    }
    aside.open {
        bottom: 0;
    }
    aside .sp_scroll_box {
        height: 100%;
        padding: 8% 5% 100px;
        overflow-y: scroll;
    }
    aside form {
        max-width: 600px;
        margin: 0 auto;
    }
    aside form .btn_box {
        position: fixed;
        bottom: -150vh;
        left: 50%;
        z-index: 99;
        transform: translateX(-50%);
        width: 50%;
        max-width: 500px;
        transition: .5s;
    }
    aside.open form .btn_box {
        bottom: 20px;
    }
    aside.open form .btn_box button {
        box-shadow: 0 4px 4px 0 rgba(51, 51, 51, .25);
    }
    aside .btn_shop_box {
        display: none;
    }
    aside .menu_box {
        display: none;
    }
}
@media screen and (max-width:500px) {
    .btn_search {
        width: 80px;
        height: 80px;
    }
    .btn_search img {
        width: 28px;
    }
    aside .sp_scroll_box {
        padding: 50px 5% 100px;
    }
    aside form .btn_box {
        width: 90%;
    }
}

/*---------------------------------------------------------
                swiper
---------------------------------------------------------*/
.swiper {
    position: relative;
    overflow: visible;
}
.swiper-fade .swiper-slide {
    transition-property: opacity !important;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(51,51,51,.25);
    cursor: pointer;
}
.swiper-button-prev::before,
.swiper-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    display: inline-block;
    vertical-align: middle;
    color: var(--main-color);
    line-height: 1;
    width: .8em;
    height: .8em;
    border: 1px solid var(--main-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-50%,-50%) rotate(45deg);
}
.swiper-button-prev {
    left: -30px;
}
.swiper-button-prev::before {
    left: 55%;
    transform: translate(-50%,-50%) rotate(-135deg);
}
.swiper-button-next {
    right: -30px;
}
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 80%;
    margin: 20px auto 0;
}
.swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
}
.swiper-pagination-bullet-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.thumb-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.thumb-wrapper .thumb-media {
    margin-top: 20px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}
.thumb-wrapper .thumb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (max-width:500px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 50px;
        height: 50px;
    }
}

/*---------------------------------------------------------
                list
---------------------------------------------------------*/
.normal_list {
    display: flex;
    gap: 20px;
    width: 95%;
    margin-top: 20px;
}
.normal_list li {
    position: relative;
    width: calc((100% - 60px) / 4);
}
.normal_list li .img_box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
.normal_list li .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
@media screen and (max-width:768px) {
    .normal_list {
        gap: 0;
    }
}

/*---------------------------------------------------------
                ページネーション
---------------------------------------------------------*/
.pagination {
    width: 90%;
    margin: 50px auto 150px;
}

.pagination .wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}

.pagination .wp-pagenavi a,
.pagination .wp-pagenavi span {
    color: var(--text-color);
    font-family: var(--font-sub);
    font-size: 22px;
    padding: 8px 15px;
    margin: 0;
    border: none;
    border-radius: 50%;
    transition: .5s;
}
.pagination .wp-pagenavi span.current {
    color: var(--accent-color);
}
@media (hover: hover) and (pointer: fine) {
    .pagination .wp-pagenavi a:hover {
        color: var(--accent-color);
    }
}
.nextpostslink,
.previouspostslink {
    padding: 0 !important;
    margin: 0 !important;
}
.prev_btn,
.next_btn {
    position: relative;
    width: 60px;
    height: 60px;
    border: 1px solid var(--main-color) !important;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
.pagination .wp-pagenavi .prev_btn {
    margin-right: 30px;
}
.pagination .wp-pagenavi .next_btn {
    margin-left: 30px;
}
.prev_btn::before,
.next_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    display: inline-block;
    vertical-align: middle;
    color: var(--main-color);
    line-height: 1;
    width: .8em;
    height: .8em;
    border: 1px solid var(--main-color);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-50%, -50%) rotate(45deg);
}
.prev_btn::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}
.next_btn::before {
    left: 40%;
}

@media screen and (max-width:768px) {
    .pagination .wp-pagenavi a,
    .pagination .wp-pagenavi span {
        font-size: 16px;
    }
}

/*---------------------------------------------------------
                レコメンドと閲覧
---------------------------------------------------------*/
.product_widget {
	width: 100%;
    margin-top: 180px;
    padding-top: 90px;
    border-top: 1px solid var(--sub-color);
}
.product_widget .slider_product .swiper {
    padding-right: 0;
}
.product_widget .slider_product .swiper-button-prev,
.product_widget .slider_product .swiper-button-next {
    display: none !important;
}
.sub_content {
    position: relative;
    padding: 70px 0;
}
.sub_content .ttl_min,
.sub_content .normal_list {
    width: 80%;
    margin: 0 auto;
}
.sub_content .normal_list {
    margin-top: 20px;
}
.sub_content .link_box {
    margin: 8px 10% 0 0;
}
.sub_content.recomend .normal_list {
    margin-top: 50px;
}
.sub_content.checked {
    background: var(--bg-color);
}
@media screen and (max-width:990px) {
    .sub_content .ttl_min,
    .sub_content .normal_list {
        width: 90%;
    }
}
@media screen and (max-width:768px) {
    .product_widget {
        margin-top: 120px;
        padding-top: 0;
    }
    .product_widget .slider_product .swiper {
        padding-right: 10%;
    }    
    .product_widget .slider_product .swiper-button-prev,
    .product_widget .slider_product .swiper-button-next {
        display: block !important;
    }
    .sub_content .ttl_min,
    .sub_content .normal_list {
        width: 95%;
        margin: 0 0 0 auto;
    }
}

/*---------------------------------------------------------
                トップページ
---------------------------------------------------------*/
.main_top section {
    position: relative;
}
.main_top section .ttl_flex {
    width: calc(100% - 140px);
}
.news_box {
    position: relative;
    width: 100%;
    height: 62px;
    background-image: url(../img/bg_news.png);
    background-repeat: repeat-x;
    background-size: auto 100%;
}
.news_box a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    max-width: 90%;
    color: #fff;
    font-weight: 500;
    text-decoration: underline;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: .5s;
    pointer-events: none;
}
.news_box a.show {
    opacity: 1;
    pointer-events: all;
}
.breadcrumb {
    width: 100%;
    padding: 16px 80px;
    background: var(--bg-sub-color);
    font-size: 13px;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.breadcrumb ul li a {
    text-decoration: underline;
}
.breadcrumb ul li + li::before {
    content: ">";
    display: inline-block;
    margin: 0 8px;
}
.top_content {
    width: 100%;
}
#banner_swiper .swiper-slide {
    position: relative;
    width: 100%;
    margin: 56px 0 0;
    aspect-ratio: 580 / 430;
    transition: .3s;
}
#banner_swiper .swiper-slide::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(51,51,51,.2);
    border-radius: 10px;
    pointer-events: none;
}
#banner_swiper .swiper-slide a {
    height: 100%;
}
#banner_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
@media (hover: hover) and (pointer: fine) {
    #banner_swiper .swiper-slide:has(a:hover) {
       opacity: .6;
    }
}
#banner_swiper .swiper-slide .txt_box {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 5%;
}
#banner_swiper .swiper-slide .txt_box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#banner_swiper .swiper-slide .txt_box .banner_ttl {
    color: #fff;
    font-size: clamp(16px,1.8vw,22px);
    font-weight: 500;
}
#banner_swiper .swiper-slide .txt_box .banner_txt {
    flex: 1;
    color: #fff;
    font-size: clamp(12px,1.2vw,15px);
}
#banner_swiper .swiper-button-prev {
    left: 27.5%;
    transform: translateY(0);
}
#banner_swiper .swiper-button-next {
    right: 27.5%;
    transform: translateY(0);
}
.main_top {
    width: calc(100% - 240px - 56px);
    margin-top: 60px;
}
.main_top .sub_content {
    position: relative;
    margin-top: 0;
}
.slider_product .swiper {
    padding-right: 5%;
}
.checked_content {
    width: 95%;
    margin: 0 0 0 auto;
}
.pickup_content {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    padding: 8% 5%;
    background: var(--bg-color);
}
.pickup_content::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 60%;
    max-width: 700px;
    height: auto;
    aspect-ratio: 688 / 385;
    background-image: url(../img/bg_pattern.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.pickup_content .pickup_list {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    max-width: 1600px;
    margin: 50px auto 0;
}
.pickup_content .pickup_list li {
    width: calc((100% - 40px) / 3);
}
.pickup_content .pickup_list li:last-of-type {
    padding-right: 0;
}
#pickup_swiper {
    padding-right: 0;
}
#pickup_swiper .swiper-button-prev,
#pickup_swiper .swiper-button-next {
    display: none;
}
.aboutpage_banner {
    position: relative;
    display: block;
    width: 90%;
    max-width: 1600px;
    height: auto;
    aspect-ratio: 989 / 400;
    margin: 100px auto;
    transition: .3s;
}
.aboutpage_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(0,0,0,.35);
}
@media (hover: hover) and (pointer: fine) {
    .aboutpage_banner:hover {
        opacity: .6;
    }
}
.aboutpage_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.aboutpage_banner .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.aboutpage_banner .txt h2 {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    color: #fff;
    font-size: clamp(18px,2.2vw,25px);
    font-weight: 500;
}
.aboutpage_banner .txt span {
    font-size: clamp(12px,1.5vw,15px);
    font-weight: bold;
}
.page_banner {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 90%;
    max-width: 1600px;
    margin: 150px auto 120px;
}
.page_banner .img_box {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 492 / 300;
}
.page_banner .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s;
}
.page_banner.separate .img_box {
    width: calc((100% - 4px) / 2);
}
@media (hover: hover) and (pointer: fine) {
    .page_banner a.img_box:hover img {
        opacity: .6;
    }
}
.page_banner.separate .img_box:nth-child(odd) img {
    border-radius: 10px 0 0 10px;
}
.page_banner.separate .img_box:nth-child(even) img {
    border-radius: 0 10px 10px 0;
}
.product_detail,
.product_detail a {
    position: relative;
    width: 100%;
}
.product_detail .badge.new {
    position: absolute;
    top: -20px;
    right: -10px;
    z-index: 5;
    width: 55px;
    height: 55px;
    background-image: url(../img/badge_new.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.product_detail .badge.sale {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 60px;
    height: 60px;
    background-image: url(../img/badge_sale.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.product_detail .img_box {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.product_detail .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s;
}
@media (hover: hover) and (pointer: fine) {
    .product_detail a:hover .img_box img {
        opacity: .6;
    }
}
.product_detail .txt_box {
    padding: 24px 20px;
}
.product_detail .txt_box .prod_name {
    font-size: 18px;
    font-weight: 500;
}
.product_detail .txt_box .shop_name {
    font-size: 15px;
    font-weight: 300;
}
.product_detail .txt_box .cate span {
    font-size: 14px;
    font-weight: 300;
}
.product_detail .txt_box .cate span + span::before {
    content: ",";
    margin-left: -.3em;
    margin-right: .2em;
}
.product_detail .txt_box .prod_txt {
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 15px;
    font-weight: 300;
}
.product_detail .txt_box .flex_box {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px 10px;
    margin-top: 5px;
}
.product_detail .txt_box .flex_box .colors {
    transform: translateY(-10px);
}
.product_detail .txt_box .price {
    font-size: 16px;
    font-weight: 500;
}
/* .product_detail .txt_box .price.sale_price {
    color: #DC3535;
} */
.product_detail .txt_box .price span {
    font-size: 35px;
}
.product_detail .txt_box .colors {
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
}
.slider_product,
.slider_hidden {
    overflow: hidden;
}
.slider_product .swiper-button-prev,
.slider_product .swiper-button-next {
    top: calc(calc(18vw / 2));
}
.slider_product .swiper-button-prev {
    left: 5px;
}
.slider_product .swiper-button-next {
    right: 7%;
}
.swiper-button-disabled:not(.production_detail .swiper-button-disabled) {
    display: none !important;
}
.slider_product ul {
    position: relative;
}
.slider_product ul li {
    padding-top: 20px;
}
.shop_content {
    width: 95%;
    margin: 0 0 0 auto;
}
.shop_content .shop_box + .shop_box {
    margin-top: 120px;
}
.shop_content .shop_box .ttl_flex .logo_mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #BEBEBE;
    border-radius: 50%;
}
.shop_content .shop_box .ttl_flex .logo_mark img {
    width: 40%;
    height: auto;
}
#ranking_swiper {
    padding-right: 0;
}
.ranking_content {
    margin-right: 5%;
    padding: 8% 5%;
    background: var(--bg-color);
}
.ranking_content .ttl_flex {
    align-items: flex-start;
}
.ranking_content .ttl_flex img {
    transform: translateY(.2em);
}
.ranking_content .normal_list {
    width: 100%;
    margin-top: 60px;
}
.ranking_content .normal_list li::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.ranking_content .normal_list li:nth-child(1)::before {
    background-image: url(../img/ic_ranking1.svg);
}
.ranking_content .normal_list li:nth-child(2)::before {
    background-image: url(../img/ic_ranking2.svg);
}
.ranking_content .normal_list li:nth-child(3)::before {
    background-image: url(../img/ic_ranking3.svg);
}
.ranking_content .normal_list li:nth-child(4)::before {
    background-image: url(../img/ic_ranking4.svg);
}
.ranking_content .slider_product .swiper-button-prev,
.ranking_content .slider_product .swiper-button-next {
    display: none;
}
@media screen and (max-width:1280px) {
    .slider_product .swiper-button-prev,
    .slider_product .swiper-button-next {
        top: calc(calc(23vw / 2));
    }
}
@media screen and (max-width:1200px) {
    .product_detail .txt_box {
        padding: 6% 4%;
    }    
    .product_detail a .badge.new {
        width: 45px;
        height: 45px;
    }
    .product_detail a .badge.sale {
        width: 50px;
        height: 50px;
    }    
}
@media screen and (max-width:990px) {
    #banner_swiper .swiper-button-prev {
        left: 12.5%;
    }
    #banner_swiper .swiper-button-next {
        right: 12.5%;
    }
    .slider_product .swiper-button-prev,
    .slider_product .swiper-button-next {
        top: calc(42vw / 2);
    }
    .ranking_content {
        margin-right: 0;
    }
    .aboutpage_banner .txt h2 {
        width: 90vw;
    }
}
@media screen and (max-width:768px) {
    .news_box {
        height: 50px;
    }
    .news_box a {
        font-size: 12px;
    }
    .breadcrumb {
        padding: 16px 5%;
    }
    #banner_swiper .swiper-button-prev {
        left: 3%;
    }
    #banner_swiper .swiper-button-next {
        right: 3%;
    }
    .slider_product ul li {
        padding-top: 32px;
    }    
    .pickup_content {
        padding: 8% 0;
    }
    .pickup_content .ttl_min {
        padding: 0 5%;
    }
    #pickup .slider_product {
        padding: 0 20%;
    }
    #pickup .slider_product .swiper-button-prev,
    #pickup .slider_product .swiper-button-next {
        display: block;
        top: calc(60vw / 2);
    }
    #pickup .slider_product .swiper-button-prev {
        left: -3%;
    }
    #pickup .slider_product .swiper-button-next {
        right: -3%;
    }
    .pickup_content .pickup_list {
        gap: 0;
    }
    .pickup_content .pickup_list li {
        width: 100%;
        padding-top: 0;
    }
    .slider_product .swiper-button-prev,
    .slider_product .swiper-button-next {
        top: calc(70vw / 2);
    }
    .ranking_content .normal_list {
        width: auto;
    }
	.page_banner {
		flex-direction: column;
	}
    .page_banner a {
        width: 100%;
        border-radius: 10px;
    }
	.page_banner.separate .img_box {
		width: 100%;
	}
    .page_banner.separate .img_box:nth-child(odd) img {
        border-radius: 10px 10px 0 0;
    }
    .page_banner.separate .img_box:nth-child(even) img {
        border-radius: 0 0 10px 10px;
    }
    .product_detail .txt_box .flex_box {
        flex-direction: column;
        align-items: flex-start;
    }
    .product_detail .txt_box .shop_name {
        font-size: 14px;
    }
    .product_detail .txt_box .prod_name {
        font-size: 16px;
    }
    .product_detail .txt_box .cate span {
        font-size: 13px;
    }
    .product_detail .txt_box .colors {
        font-size: 13px;
    }
    .product_detail .txt_box .price span {
        font-size: 28px;
    }
    .main_top section .link_box,
    .sub_content .link_box {
        position: absolute;
        top: 0;
        right: 5%;
        margin-right: 0;
    }
    .sub_content .link_box {
        position: absolute;
        top: 4em;
        right: 5%;
        margin-right: 0;
    }
    #ranking_swiper {
        padding-right: 10%;
    }    
    .ranking_content {
        padding-right: 0;
    }
    .ranking_content .slider_product .swiper-button-prev,
    .ranking_content .slider_product .swiper-button-next {
        display: block;
    }
}
@media screen and (max-width:500px) {
    .slider_product .swiper-button-prev,
    .slider_product .swiper-button-next {
        top: calc(82vw / 2);
    }
    #banner_swiper .swiper-slide .txt_box {
        margin: 5% 10%;
    }
    #pickup .slider_product {
        padding: 0 5%;
    }
    #pickup .slider_product .swiper-button-prev,
    #pickup .slider_product .swiper-button-next {
        top: calc(90vw / 2);
    }
}

/*---------------------------------------------------------
                お知らせ詳細
---------------------------------------------------------*/
.news_detail {
    margin: 100px 0 0;
}
.news_detail .news_top .date {
    display: block;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: 300;
}
.news_detail .news_top .ttl_main {
    width: 90%;
    max-width: 750px;
    margin: 10px auto 0;
    font-size: 25px;
    text-align: left;
    color: var(--main-color);
}
.news_detail .news_txt_area {
    width: 90%;
    max-width: 750px;
    margin: 35px auto 0;
}
.news_detail .news_txt_area h1,
.news_detail .news_txt_area h2,
.news_detail .news_txt_area h3,
.news_detail .news_txt_area h4 {
    padding: 50px 0 30px;
}
.news_detail .news_txt_area h1,
.news_detail .news_txt_area h2 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
}
.news_detail .news_txt_area h1::before,
.news_detail .news_txt_area h2::before {
    content: "";
    transform: translateY(.5em);
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--main-color);
}
.news_detail .news_txt_area h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 50px;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
}
.news_detail .news_txt_area h3::before {
    content: "";
    transform: translateY(.7em);
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--main-color);
}
.news_detail .news_txt_area img {
    max-width: 100%;
}
.news_detail .link_box {
    width: 90%;
    margin: 100px auto 0;
    text-align: center;
}
.news_list_area {
    width: 90%;
    max-width: 1600px;
    margin: 80px auto 0;
    padding: 80px 5%;
    background: var(--bg-color);
}
.news_list_area .ttl_min {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news_list_area ul {
    max-width: 750px;
    margin: 50px auto 0;
}
.news_list_area ul li {
    padding: 20px 30px;
    background: #fff;
    border-radius: 10px;
    font-size: 15px;
}
.news_list_area ul li + li {
    margin-top: 10px;
}
.news_list_area ul li .date {
    font-size: 13px;
    margin-right: 20px;
    padding: 8px 20px 8px 0;
    border-right: 1px solid var(--text-color);
}
@media screen and (max-width:768px) {
    .news_list_area {
        width: 100%;
    }
    .news_detail .news_txt_area {
        margin: 20px auto 0;
    }
    .news_detail .news_txt_area h1,
    .news_detail .news_txt_area h2,
    .news_detail .news_txt_area h3,
    .news_detail .news_txt_area h4 {
        padding: 20px 0 30px;
    }
}
@media screen and (max-width:500px) {
    .news_list_area ul li {
        padding: 20px 15px;
    }
}



/*---------------------------------------------------------
                商品一覧
---------------------------------------------------------*/
.prod_container {
    width: 90%;
    margin: 60px auto 0;
}
.prod_container .shop_info {
    display: flex;
    align-items: stretch;
    padding-bottom: 80px;
}
.prod_container .shop_info .img_box {
    width: 30%;
    min-width: 180px;
    aspect-ratio: 1 / 1;
}
.prod_container .shop_info .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.prod_container .shop_info .txt_box {
    position: relative;
    overflow: hidden;
    flex: 1;
    padding: 48px 90px;
    border-radius: 0 10px 10px 0;
    background: var(--bg-color);
}
.prod_container .shop_info .txt_box::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 90%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 688 / 385;
    background-image: url(../img/bg_pattern.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.prod_container .shop_info .txt_box .shop_name,
.prod_container .shop_info .txt_box .shop_txt {
    position: relative;
    z-index: 1;
}
.prod_container .shop_info .txt_box .shop_name img {
    width: 175px;
}
.prod_container .shop_info .txt_box .shop_name span {
    display: block;
    margin-top: 5px;
}
.prod_container .shop_info .txt_box .shop_txt {
    margin-top: 24px;
    font-size: 15px;
}
.product_list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 80px 20px;
    margin: 50px auto 0;
}
.ttl_main + .product_list {
    margin: 100px auto 0;
}
.product_list li {
    width: calc((100% - 40px) / 3);
}
.order_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order_box .sort_txt {
    font-size: 15px;
}
.order_box .sort_box {
    display: flex;
    align-items: center;
    gap: 5px;
}
.order_box .sort_box span {
    padding-right: 15px;
    font-size: 15px;
}
.order_box .sort_box .btn_sort {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background: var(--bg-color);
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}
.ac_toggle {
    position: relative;
}
.ac_toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%) rotate(180deg);
    display: block;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: calc(tan(60deg) * 5px) solid var(--text-color);
    transition: .5s;
}
.ac_toggle.open {
    border-radius: 5px 5px 0 0 !important;
}
.ac_toggle.open::after {
    transform: translateY(-50%) rotate(0);
}
.ac_content {
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 20;
    display: none;
    width: 100%;
    background: var(--bg-color);
    border-radius: 0 0 5px 5px;
}
.ac_content a {
    display: block;
    padding: 10px 0;
    margin: 0 10px;
    border-top: 1px solid #ddd;
    text-align: center;
}

/*---------------------------------------------------------
                商品詳細
---------------------------------------------------------*/
.production_detail {
    margin: 120px 0 0;
}
.production_detail .shop_name {
    width: 80vw;
    margin: 0 auto;
}
.production_detail .shop_name img {
    width: 200px;
    height: auto;
    margin-bottom: 5px;
}
.production_detail .shop_name span {
    display: block;
}
.production_detail .production_box {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: 80vw;
    margin: 80px auto 0;
}
.production_detail .production_box .slider_images {
    width: 50%;
}
.production_detail .production_box .production_info {
    flex: 1;
}
.production_detail .production_box .production_info h1 {
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}
.production_detail .production_box .production_info .cate {
    margin-top: 10px;
}
.production_detail .production_box .production_info .cate span {
    font-size: 15px;
    font-weight: 300;
}
.production_detail .production_box .production_info .cate span + span::before {
    content: ",";
    margin-left: -.3em;
    margin-right: .2em;
}
.production_detail .production_box .production_info .price_box {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--main-color);
}
.production_detail .production_box .production_info .price_box .price {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.production_detail .production_box .production_info .price_box .sale_price {
    color: var(--accent-color);
}
.production_detail .production_box .production_info .price_box .sale_min {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    margin-bottom: 4px;
    padding: 8px 0;
    background: var(--accent-color);
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}
.production_detail .production_box .production_info .price_box .price .number {
    font-size: 40px;
}
.production_detail .production_box .production_info .price_box .price .tax {
    margin-left: 5px;
    font-size: 15px;
    font-weight: 300;
}
.production_detail .production_box .production_info .price_box.sale {
    display: flex;
    flex-direction: column;
}
.production_detail .production_box .production_info .price_box.sale .normal_price {
    position: relative;
    font-size: 12px;
    width: fit-content;
    padding-top: 10px;
    color: #9a9a9a;
}
.production_detail .production_box .production_info .price_box.sale .normal_price::after {
    content: "";
    position: absolute;
    top: 1.5em;
    left: 0;
    display: inline-block;
    width: 100%;
    height: .5px;
    border: 1px solid #9a9a9a;
}
.production_detail .production_box .production_info .price_box.sale .normal_price .number {
    font-size: 16px;
}
.production_detail .production_box .production_info .price_box.sale .normal_price .tax {
    font-size: 12px;
}
.production_detail .production_box .production_info .price_box.sale .sale_price .tax {
    color: var(--text-color);
}
.production_detail .production_box .production_info .color {
    margin-top: 30px;
}
.production_detail .production_box .production_info .color .radio_box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.production_detail .production_box .production_info .color .radio_box input {
    display: none;
}
.production_detail .production_box .production_info .color .radio_box label {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
}
.production_detail .production_box .production_info .color .radio_box label::after {
    display: none;
}
.production_detail .production_box .production_info .color .radio_box label:has(:checked) {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #fff;
}
.production_detail .production_box .production_info .size {
    margin-top: 50px;
}
.production_detail .production_box .production_info .size .radio_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.production_detail .production_box .production_info .size .radio_box + .radio_box {
    margin-top: 10px;
}
.production_detail .production_box .production_info .shop_txt {
    margin-top: 30px;
    padding: 30px 50px;
    background: var(--bg-color);
    border-radius: 10px;
    color: #8A8A8A;
}
.production_detail .production_box .production_info .btn_main {
    width: 100%;
    margin-top: 50px;
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.production_detail .production_box .production_info .err {
    margin-top: 8px;
    font-size: 12px;
    color: var(--err-color);
}
.production_detail .production_box .product_detail .badge.new {
    width: 75px;
    height: 75px;
}
.production_detail .production_box .product_detail .badge.sale {
    width: 80px;
    height: 80px;
}
.production_detail .production_box .img_box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}
.production_detail .production_box .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.production_detail .production_box .img_box .image_color {
    display: block;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-weight: 300;
}
.production_detail .swiper-button-prev,
.production_detail .swiper-button-next {
    top: calc(43vw / 2);
    border: 1px solid var(--main-color);
    box-shadow: none;
}
.production_txt_area {
    margin-top: 120px;
    padding: 70px 0;
    background: var(--bg-color);
}
.production_txt_area .production_txt {
    width: 80vw;
    margin: 0 auto;
    padding: 70px 10%;
    background: #fff;
}
.production_txt_area .production_txt h1,
.production_txt_area .production_txt h2,
.production_txt_area .production_txt h3,
.production_txt_area .production_txt h4 {
    padding: 50px 0 30px;
}
.production_txt_area .production_txt h1,
.production_txt_area .production_txt h2 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
}
.production_txt_area .production_txt h1::before,
.production_txt_area .production_txt h2::before {
    content: "";
    transform: translateY(.5em);
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--main-color);
}
.production_txt_area .production_txt h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 50px;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
}
.production_txt_area .production_txt h3::before {
    content: "";
    transform: translateY(.7em);
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--main-color);
}
.production_txt_area .production_txt img {
    max-width: 100%;
    margin: 10px auto 0;
    border-radius: 10px;
}
.production_txt_area .production_txt p {
    margin-top: 10px;
}
.production_txt_area .link_box {
    margin: 50px 0 0;
    text-align: center;
}
.container:has(.production_detail) + .product_widget {
    margin-top: 0;
    padding: 0;
    border: none;
}
@media screen and (max-width:990px) {
    .prod_container .shop_info .txt_box {
        padding: 32px 40px;
    }
    .production_detail .production_box {
        flex-direction: column;
    }
    .production_detail .production_box {
        width: 80%;
    }
    .production_detail .production_box .slider_images {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .production_detail .production_box .production_info {
        width: 100%;
    }
    .production_detail .swiper-button-prev,
    .production_detail .swiper-button-next {
        top: 16em;
    }
}
@media screen and (max-width:768px) {
    .production_detail {
        width: 100%;
        margin-top: 100px;
    }
    .prod_container .shop_info {
        flex-direction: column;
        max-width: 450px;
        margin: 0 auto;
    }
    .prod_container .shop_info .img_box {
        width: 100%;
    }
    .prod_container .shop_info .img_box img {
        border-radius: 10px 10px 0 0;
    }
    .prod_container .shop_info .txt_box {
        border-radius: 0 0 10px 10px;
    }
    .order_box {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }
    .ac_content {
        top: 40px;
    }
    .product_list {
        gap: 32px 20px;
    }
    .product_list li {
        width: calc((100% - 20px) / 2);
    }
    .production_txt_area .production_txt {
        width: 90vw;
        padding: 50px 5%;
    }
    .production_txt_area .production_txt h1,
    .production_txt_area .production_txt h2,
    .production_txt_area .production_txt h3,
    .production_txt_area .production_txt h4 {
        padding: 20px 0 30px;
    }
    .production_detail .production_box {
        width: 80%;
    }
}
@media screen and (max-width:500px) {
    .prod_container {
        width: 100%;
        margin-top: 0;
    }
    .order_box {
        margin-top: 60px;
    }
    .order_box,
    .product_list {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
    }
    .order_box .sort_txt {
        font-size: 13px;
    }
    .order_box .sort_box .btn_sort {
        height: 40px;
        font-size: 13px;
    }
    .order_box .sort_box span {
        padding-right: 0;
        font-size: 12px;
    }
    .prod_container .shop_info {
        max-width: none;
        margin-top: 80px;
        padding-bottom: 0;
    }
    .prod_container .shop_info .img_box img {
        border-radius: 0;
    }
    .prod_container .shop_info .txt_box {
        border-radius: 0;
    }
    .prod_container .shop_info .txt_box .shop_name img {
        width: 140px;
    }
    .production_detail .production_box .production_info {
        width: 90%;
        margin: 0 auto;
    }
    .production_detail .shop_name img {
        width: 150px;
    }
    .production_detail .shop_name {
        width: 90%;
    }
    .production_detail .production_box {
        width: 100vw;
    }
    .production_detail .production_box .swiper {
        width: 90%;
    }
    .production_detail .swiper-button-prev,
    .production_detail .swiper-button-next {
        top: calc(95vw / 2);
    }
    .production_detail .swiper-button-prev {
        left: -3%;
    }
    .production_detail .swiper-button-next {
        right: -3%;
    }
    .production_detail .production_box .img_box .image_color {
        padding-left: 5%;
    }
    .thumb-wrapper {
        overflow-x: auto;
        display: flex;
        gap: 0;
        width: 100vw;
        margin-right: 5%;
        scroll-snap-type: x mandatory;
    }
    .thumb-wrapper .thumb-media {
        flex-shrink: 0;
        width: calc(100% / 3.5);
        height: calc(100% / 3.5);
        margin: 20px 8px 0;
        box-sizing: content-box !important;
        scroll-snap-align: start;
        cursor: pointer;
    }
    .thumb-wrapper .thumb-media:first-of-type {
        padding-left: 5%;
    }
    .thumb-wrapper .thumb-media:last-of-type {
        padding-right: 5%;
    }
    .production_detail .production_box .slider_images {
        max-width: none;
        padding: 0;
    }
}

/*---------------------------------------------------------
                閲覧した商品
---------------------------------------------------------*/
.checked_container {
    width: 90%;
    margin: 0 auto;
}
.checked_container h2 {
    margin-top: 60px;
}

@media screen and (max-width:500px) {
    .checked_container {
        width: 100%;
    }
}

/*---------------------------------------------------------
                カート
---------------------------------------------------------*/
.cart_container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}
.cart_container .ttl_main {
    margin-top: 60px;
}
.cart_message {
    margin-top: 80px;
    padding: 35px;
    border: 1px solid var(--text-color);
    border-radius: 10px;
    text-align: center;
}
.cart_wrapper {
    margin-top: 50px;
}
.cart_inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-top: 80px;
}
.cart_table {
    flex: 1;
    display: block;
}
.cart_table thead {
    display: block;
    border-bottom: 1px solid #111;
}
.cart_table thead tr {
    display: flex;
    gap: 20px;
}
.cart_table thead tr th {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
.cart_table tbody {
    display: block;
}
.cart_table tbody tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #d9d9d9;
}
.cart_table thead tr th:nth-child(1),
.cart_table tbody tr td:nth-child(1) {
    flex: 1;
}
.cart_table thead tr th:nth-child(2),
.cart_table tbody tr td:nth-child(2) {
    width: 100px;
}
.cart_table thead tr th:nth-child(3),
.cart_table tbody tr td:nth-child(3) {
    width: 120px;
}
.cart_table thead tr th:nth-child(4),
.cart_table tbody tr td:nth-child(4) {
    width: 32px;
}
.cart_table tbody tr:last-of-type {
    border-bottom: 1px solid var(--text-color);
}
.cart_table tr td.flex {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cart_table tr .img_box {
    width: 40%;
    max-width: 250px;
    min-width: 110px;
    aspect-ratio: 1 / 1;
}
.cart_table tr .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.cart_table tr .info p {
    font-size: 14px;
    font-weight: 300;
}
.cart_table tr .price {
    font-weight: 500;
}
.cart_table tr .price .number {
    font-size: 15px;
}
.cart_table tr .price .tax {
    font-size: 12px;
}
.cart_table tr .sale_min {
    margin-bottom: 4px;
    padding: 2px 10px;
    background: var(--accent-color);
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}
.cart_table tr .number_input {
    position: relative;
}
.cart_table tr .number_input input[type="number"] {
    border: none;
    text-align: center;
}
.cart_table tr .number_input .number_up,
.cart_table tr .number_input .number_down {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 30px;
    height: 30px;
    border: 1px solid var(--text-color);
}
.cart_table tr .number_input .number_up {
    right: 0;
}
.cart_table tr .number_input .number_down {
    transform: translateY(-50%) rotate(-180deg);
    right: unset;
    left: 0;
}
.cart_table tr .btn_remove {
    font-size: 13px;
    font-weight: 300;
    text-decoration: underline;
}
.cart_box {
    width: 280px;
}
.cart_box .cart_box_heading {
    padding: 5px;
    background: var(--accent-color);
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.cart_box .cart_box_txt {
    padding: 35px 24px;
    background: var(--bg-color);
    border-radius: 0 0 10px 10px;
}
.cart_box .btn_main {
    width: 100%;
}
.cart_box .total_count {
    font-size: 15px;
    font-weight: 300;
}
.cart_box .total_price {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.cart_box .total_price .number {
    font-size: 40px;
}
.cart_box .total_price .tax {
    margin-left: 5px;
    font-size: 15px;
    font-weight: 300;
}
.cart_box .shipping_link {
    margin-top: 15px;
    padding-bottom: 40px;
    font-size: 13px;
    font-weight: 300;
    text-decoration: underline;
}
.cart_box .shop_txt {
    padding-bottom: 30px;
    font-size: 14px;
    font-weight: 400;
}
.cart_box .btn_box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cart_box .link_box {
    margin: 30px 0 0;
    text-align: center;
}
.cart_table tr .sp_txt {
    display: none;
}
@media screen and (max-width:1024px) {
    .cart_inner {
        flex-direction: column;
    }
    .cart_table {
        width: 100%;
    }
    .cart_box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media screen and (max-width:768px) {
    .cart_table tbody tr {
        flex-direction: column;
        align-items: flex-start;
    }
    .cart_table tr td,
    .cart_table tr td.flex {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .cart_table tr .img_box {
        max-width: 150px;
    }
    .cart_table tr .sp_txt {
        display: block;
        width: 40%;
        max-width: 150px;
        font-weight: 500;
    }
    .cart_table tr td .info,
    .cart_table tr td .number_input,
    .cart_table tr td .price {
        flex: 1;
    }
    .cart_table tr td .number_input {
        max-width: 90px;
    }
    .cart_table tr .btn_remove {
        width: fit-content;
        margin: 0 0 0 auto;
    }
    .cart_table tbody tr {
        gap: 0;
        border: none;
    }
    .cart_table thead tr th:nth-child(2),
    .cart_table thead tr th:nth-child(3),
    .cart_table thead tr th:nth-child(4) {
        display: none;
    }
    .cart_table tbody tr td:nth-child(2),
    .cart_table tbody tr td:nth-child(3),
    .cart_table tbody tr td:nth-child(4) {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid #ddd;
    }
}

/*---------------------------------------------------------
                ショップについて
---------------------------------------------------------*/
.underpage_top {
    position: relative;
    width: 90%;
    height: auto;
    aspect-ratio: 1280 / 395;
    margin: 150px auto 0;
}
.underpage_top .img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.underpage_top .mark {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 2;
    width: 273px;
}
#about .ttl_main {
    margin-top: 100px;
}
#about .about_txt {
    width: 60%;
    margin: 50px auto 0;
}
#about .about_img_box .flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 80vw;
    margin: 80px auto 0;
}
#about .about_img_box .swiper {
    margin: 80px auto 0;
}
#about .about_img_box .swiper-wrapper {
    display: flex;
    gap: 10px;
}
#about .about_img_box .swiper-wrapper .img_box,
#about .about_img_box .flex .img_box {
    width: calc((100% - 20px) / 3);
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}
#about .about_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
#about .shop_content {
    width: 100%;
}
#about .shop_content .shop_box {
    position: relative;
    margin: 100px auto 0;
    padding-top: 130px;
}
#about .shop_content .shop_box + .shop_box {
    margin-top: 100px;
}
#about .shop_content .shop_box::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    display: block;
    width: 95%;
    height: auto;
    aspect-ratio: 1360 / 558;
    background: var(--bg-color);
}
#about .shop_content .shop_box:nth-child(odd):before {
    left: 0;
}
#about .shop_content .shop_box:nth-child(even):before {
    right: 0;
}
#about .shop_content .shop_box:first-of-type::before {
    transform: translateY(-240px);
    height: 100%;
    aspect-ratio: auto;
}
#about .shop_content .shop_box .ttl_flex {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
}
#about .shop_content .shop_box .shop_info {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    width: 80%;
    max-width: 1280px;
    margin: 50px auto 0;
}
#about .shop_content .shop_box:nth-child(even) .shop_info {
    flex-direction: row-reverse;
}
#about .shop_content .shop_box .shop_info .img_box {
    width: 48%;
    height: auto;
    aspect-ratio: 1 / 1;
}
#about .shop_content .shop_box .shop_info .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
#about .shop_content .shop_box .shop_info .txt_box {
    flex: 1;
}
#about .shop_content .shop_box .shop_info .txt_box p {
    font-size: 15px;
}
#about .shop_content .shop_box .shop_info .txt_box .btn_box .btn_main {
    margin: 60px auto 0 0;
}
@media screen and (max-width:990px) {
    .underpage_top {
        margin: 80px auto 0;
    }
    #about .shop_content .shop_box .shop_info {
        align-items: center;
        flex-direction: column;
        gap: 50px;
    }
    #about .shop_content .shop_box:nth-child(even) .shop_info {
        flex-direction: column;
    }
    #about .shop_content .shop_box .shop_info .img_box {
        width: 100%;
        max-width: 400px;
    }
    #about .shop_content .shop_box .shop_info .txt_box .btn_box .btn_main {
        margin: 60px auto 0;
    }
}
@media screen and (max-width:768px) {
    .underpage_top {
        aspect-ratio: 1280 / 500;
    }
    .underpage_top .mark {
        width: 33%;
        min-width: 200px;
    }
    #about .ttl_main {
        margin-top: 80px;
    }
    #about .about_txt {
        width: 90%;
        margin: 32px auto 0;
    }
    #about .about_img_box .swiper-wrapper {
        width: 100vw;
        transition-timing-function: linear;
    }
    #about .about_img_box {
        width: 100%;
    }
    #about .shop_content .shop_box {
        margin-top: 0;
    }
    #about .shop_content .shop_box::before {
        aspect-ratio: 1 / 1;
    }
    #about .shop_content .shop_box:first-of-type::before {
        transform: translateY(0);
        height: 57%;
    }
}
@media screen and (max-width:500px) {
    .underpage_top {
        width: 100%;
        margin: 100px auto 0;
        aspect-ratio: 1 / 1;
    }
    .underpage_top .img {
        border-radius: 0;
    }
    #about .shop_content .shop_box .ttl_flex {
        width: 90%;
    }
    #about .shop_content .shop_box::before {
        width: 100%;
    }
    #about .shop_content .shop_box .shop_info {
        width: 90%;
    }
}

/*---------------------------------------------------------
                配送・お支払いについて
---------------------------------------------------------*/
.other_txtlist {
    width: 60%;
    margin: 150px auto 0;
}
.other_txtlist li + li {
    margin-top: 100px;
}
.other_txtlist li h2 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
}
.other_txtlist li h2::before {
    content: "";
    transform: translateY(.5em);
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--main-color);
}
.other_txtlist li h2 + p {
    margin-top: 35px;
}
.other_txtlist li h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 50px;
    font-size: 20px;
    font-weight: 600;
}
.other_txtlist li h3::before {
    content: "";
    transform: translateY(.7em);
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--text-color);
}
.other_txtlist li h3 + p {
    margin-top: 20px;
}
.other_txtlist li p {
    font-size: 15px;
}
.other_txtlist li a {
    text-decoration: underline;
}
.other_txtlist li p .disc {
    position: relative;
    display: block;
    padding-left: 1em;
}
.other_txtlist li p .disc::before {
    content: "";
    position: absolute;
    top: .75em;
    left: .3em;
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--text-color);
}
.other_txtlist .notice_box {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin-top: 50px;
    padding: 30px 50px;
    background: var(--bg-color);
    border-radius: 10px;
}
.other_txtlist .notice_box p:first-of-type {
    padding-bottom: 10px;
}
.other_txtlist .notice_box a {
    text-decoration: none;
}
.box_txt {
    width: 80%;
    margin: 100px auto 0;
    padding: 50px 10%;
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

@media screen and (max-width:990px) {
    .other_txtlist {
        width: 80%;
        margin: 116px auto 0;
    }
}
@media screen and (max-width:500px) {
    .other_txtlist {
        width: 90%;
    }
    #shipping .btn_group a {
        width: 100%;
    }
    .box_txt {
        width: 90%;
        margin: 72px auto 0;
        padding: 50px 20px;
    }
}

/*---------------------------------------------------------
                プライバシーポリシー
---------------------------------------------------------*/
#privacy .other_txtlist {
    padding-bottom: 160px;
}

/*---------------------------------------------------------
                特定商取引法に基づく表記
---------------------------------------------------------*/
#terms .contact_content {
    width: 80%;
    max-width: 1200px;
    margin: 100px auto 0;
}
#terms .contact_content dl dd {
    font-size: 15px;
}
@media screen and (max-width:990px) {
    #privacy .ttl_main,
    #terms .ttl_main {
        margin-top: 100px;
    }
    #terms .contact_content {
        margin-top: 72px;
        padding: 0;
    }
}
@media screen and (max-width:600px) {
    #terms .contact_content dl dt br {
        display: none;
    }
}
@media screen and (max-width:500px) {
    #terms .contact_content {
        width: 90%;
    }
}


/*---------------------------------------------------------
                フォーム
---------------------------------------------------------*/
input {
    padding: 4px 8px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type="number"] {
    width: 90px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    -moz-appearance: textfield;
}
input::placeholder {
    font-size: 12px;
}
.number_box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.number_input {
    position: relative;
    width: 90px;
}
.number_input .number_up,
.number_input .number_down {
    position: absolute;
    right: 8px;
    z-index: 5;
    width: 12px;
    height: calc(tan(60deg) * 12px / 2);
    cursor: pointer;
}
.number_input .number_up .triangle,
.number_input .number_down .triangle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 12px;
    height: calc(tan(60deg) * 12px / 2);
    background: var(--text-color);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.number_input .number_up {
    top: 8px;
}
.number_input .number_down {
    bottom: 8px;
    transform: rotate(-180deg);
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--bg-color);
    background: var(--bg-color);
    font-size: 15px;
    border-radius: 5px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    font-size: 15px;
}
textarea {
    height: 300px;
}
input[name="address_code"] {
    width: 150px;
}
label {
    cursor: pointer;
}
input:-webkit-autofill {
    font-size: 15px;
    background-color: #fff !important; /* オートコンプリート時の背景色 */
    color: var(--text-color) !important; /* テキストの色 */
    transition: background-color 5000s ease-in-out 0s; /* 背景色を保持 */
}

/* チェックボックス */
.checkbox_box label {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: .3em;
    border: 1px solid var(--text-color);
    cursor: pointer;
}
.checkbox_box label::after,
.contact_content .consent_box span::after {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    transform: rotate(45deg);
    opacity: 0;
    width: 5px;
    height: 12px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transition: .3s;
}
.checkbox_box label:has(:checked)::after,
.contact_content .consent_box span:has(:checked)::after {
    opacity: 1;
}
/* ラジオボタン */
.radio_box label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
}
input[type="radio"] {
    position: relative;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
}
.radio_box label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    opacity: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text-color);
    transition: .3s;
}
.radio_box label:has(:checked)::after {
    opacity: 1;
}

.hidden_form {
    display: none;
}
/* リキャプチャ */
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha_txt {
    margin-top: 20px;
    text-align: center;
    font-size: 10px;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
    display: none;
}

/* contact form 7 */
.wpcf7-response-output {
    display: none;
}

/*エラーメッセージ*/
.wpcf7-not-valid-tip {
    display: none !important;
}
.err,
.err_kana,
.err_mail,
.err_tel {
    display: block;
    margin-top: 6px;
    font-size: 12px !important;
    color: #CA3D3D !important;
}
.checkbox_box + .err,
.radio_box + .err {
    width: calc(100% - 270px);
    margin: 0 0 0 auto;
}
/* スピナー */
.wpcf7-spinner {
    display: block !important;
    margin: 10px auto !important;
}
/*打ち消し*/
.wpcf7-form-control-wrap {
    flex: 1;
    width: 100%;
}
.wpcf7-checkbox,
.wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
}
.wpcf7-checkbox span,
.wpcf7-radio span {
    display: flex;
    align-items: flex-start;
    width: calc((100% - 40px) / 2);
    margin: -2px 0 0 0;
}
.wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 !important;
}
.wpcf7-list-item-label {
    flex: 1;
    margin: -2px 0 0 0 !important;
}
/* 確認ボタンを強制非表示 */
#btn_submit input[type="submit"] {
    display: none;
}

/*---------------------------------------------------------
                購入画面
---------------------------------------------------------*/
.contact_content {
    padding: 10%;
    border: 1px solid var(--text-color);
    border-radius: 10px;
}
.contact_content .form_txt {
    margin: 16px 0 0 0;
}
.contact_content dl {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 35px 0;
    border-bottom: 1px solid #F3F3F3;
}
.contact_content dl:last-of-type {
    border: none;
}
.contact_content dl dt {
    width: 200px;
    font-size: 15px;
    font-weight: 500;
}
.contact_content dl dd {
    flex: 1;
}
.contact_content dl dt.required::after {
    content: "*";
    display: inline-block;
    color: var(--err-color);
}
.contact_content .consent_box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 30px;
    border-radius: 10px;
    background: var(--bg-color);
    word-break: keep-all;
    text-align: center;
}
.contact_content .consent_box input {
    margin-right: 10px;
}
.contact_content .consent_box a {
    text-decoration: underline;
}
.contact_content .consent_box span {
    flex: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_content .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.contact_content .btn_box .btn_main {
    display: inline-block;
    margin-top: 32px;
}
.contact_content .btn_box .btn_main input {
    width: 100%;
    height: 100%;
    text-align: center;
}

.purchase_container .ttl_main {
    margin-top: 100px;
}
.purchase_container .cart_wrapper {
    background: var(--bg-color);
    padding: 5%;
}
.purchase_container .cart_inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 5%;
    border-radius: 10px;
    background: #fff;
}
.purchase_form {
    width: 80%;
    max-width: 1200px;
    margin: 100px auto;
}
.purchase_form .form_txt {
    margin-bottom: 24px;
}
.purchase_form .form_txt span,
.contact_content span.um-req {
    color: var(--err-color) !important;
}
.purchase_container .contact_content dl {
    border: none;
    padding: 15px 0;
}
.purchase_container .contact_content dl dt {
    margin-top: .5em;
}
@media screen and (max-width:1200px) {
    .purchase_container .cart_wrapper {
        padding: 80px 16px;
    }
    .purchase_container .cart_inner {
        padding: 50px 5%;
    }    
}
@media screen and (max-width:990px) {
    .contact_content {
        padding: 50px 0;
        border: none;
    }
    .purchase_form {
        width: 90%;
    }
}
@media screen and (max-width:600px) {
    .contact_content dl {
        flex-direction: column;
    }
    .contact_content dl dt,
    .contact_content dl dd {
        width: 100%;
    }
    .purchase_container .contact_content dl dt {
        margin-top: 0;
    }
}

/*---------------------------------------------------------
                購入完了画面
---------------------------------------------------------*/
#purchase_thanks .ttl_main {
    font-size: 25px;
    color: var(--main-color);
    text-wrap: balance;
    word-break: auto-phrase;
}
#purchase_thanks .thanks_txt {
    width: 90%;
    margin: 35px auto 0;
    text-align: center;
    text-wrap: balance;
    word-break: auto-phrase;
}
#purchase_thanks .contact_info {
    width: fit-content;
    margin: 50px auto 0;
    padding: 30px 50px;
    background: var(--bg-color);
    border-radius: 10px;
}
#purchase_thanks .link_box {
    margin: 100px 0 100px;
    text-align: center;
}
@media screen and (max-width:500px) {
    #purchase_thanks .contact_info {
        width: 90%;
        padding: 30px 20px;
    }
}

/*---------------------------------------------------------
                ログイン系
---------------------------------------------------------*/
.memberForm_container {
    width: 100%;
    margin: 0 auto;
}
.memberForm_container h1 {
    margin-top: 100px;
}
.memberForm_container .um-form .um-misc-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    margin-top: 30px;
}
.memberForm_container .um-form .um-misc-ul a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
}
.memberForm_container .um-field {
    padding: 0 8% !important;
    background: var(--bg-color);
}
.memberForm_container .um-col-alt .um-field {
    border-radius: 0 0 10px 10px !important;
}
.memberForm_container .um-field:first-of-type {
    padding-top: 50px !important;
    border-radius: 10px 10px 0 0 !important;
}
.memberForm_container .um-field:last-of-type {
    padding-top: 15px !important;
    padding-bottom: 20px !important;
}
.memberForm_container .um-field-label {
    margin: 0 !important;
    padding-bottom: 10px !important;
}
.memberForm_container .um-field-label label {
    color: var(--text-color) !important;
    font-weight: 500 !important;
}
.memberForm_container .um .um-form input[type=password]:focus,
.memberForm_container .um .um-form input[type=search]:focus,
.memberForm_container .um .um-form input[type=tel]:focus,
.memberForm_container .um .um-form input[type=text]:focus,
.memberForm_container .um .um-form textarea:focus {
    outline: none !important;
    border: none !important;
}
.memberForm_container .um-row {
    margin: 0 !important;
}
.memberForm_container .um-col-alt {
    margin: 0 !important;
}
.memberForm_container .um-field-checkbox {
    margin: 0 !important;
}
.memberForm_container .um-field-checkbox {
    margin: 0 auto !important;
}
.memberForm_container .um-field-checkbox-option,
.memberForm_container .um-field-radio-option {
    color: var(--text-color) !important;
    margin: 0 0 0 10px !important;
    padding-bottom: 50px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}
.memberForm_container .um-field-checkbox-state {
    display: none !important;
}
.memberForm_container .um-field-checkbox label {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
}
.memberForm_container .um-field-checkbox input[type="checkbox"] {
    position: relative;
    opacity: 1 !important;
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: .3em;
    border: 1px solid var(--text-color);
    cursor: pointer;
}
.memberForm_container .um-field-checkbox .um-field-checkbox-option {
    position: relative;
}
.memberForm_container .um-field-checkbox .um-field-checkbox-option::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: -1.45em;
    transform: rotate(45deg);
    opacity: 0;
    width: 4px;
    height: 11px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transition: .3s;
}
.memberForm_container .um-field-checkbox:has(:checked) .um-field-checkbox-option::after{
    opacity: 1;
}
.memberForm_container span.um-req {
    margin: 0 0 0 4px !important;
    color: #F1462F !important;
}
.memberForm_container input[type=submit].um-button {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 280px !important;
    height: 60px !important;
    line-height: 60px !important;
    margin: 60px auto 0 !important;
    padding: 0 10px !important;
    border: 1px solid var(--text-color) !important;
    border-radius: 5px !important;
    background: none !important;
    color: var(--text-color) !important;
    font-size: 15px !important;
    letter-spacing: 0.1em !important;
    cursor: pointer;
    transition: 0.3s;
}
.memberForm_container .um-link-alt {
    margin-top: 50px;
    color: var(--text-color) !important;
    font-size: 15px !important;
    font-weight: 400;
    text-decoration: underline !important;
}
.memberForm_container .select2-container
.memberForm_container .select2-choice,
.memberForm_container .select2-container-multi
.memberForm_container .select2-choices,
.memberForm_container .select2-drop,
.memberForm_container .select2-drop-active,
.memberForm_container .select2-drop.select2-drop-above,
.memberForm_container .um .um-form input[type=number],
.memberForm_container .um .um-form input[type=password],
.memberForm_container .um .um-form input[type=search],
.memberForm_container .um .um-form input[type=tel],
.memberForm_container .um .um-form input[type=text],
.memberForm_container .um .um-form textarea,
.memberForm_container .um .upload-progress {
    padding: 12px 10px !important;
    width: 100% !important;
    display: block !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 5px !important;
    outline: 0 !important;
    cursor: text !important;
    font-size: 16px !important;
    height: auto !important;
    border: none !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    margin: 0 !important;
    border-color: transparent !important;
    background: var(--bg-color) !important;
}
.memberForm_container .um-field + .um-field {
    padding-top: 30px !important;
}
.memberForm_container .um-field-checkbox {
    display: flex !important;
    justify-content: center;
    width: 100%;
    background: var(--bg-color);
}
.memberForm_container .um-notice {
    margin: 20px 0 !important;
}
.contact_content .um-7.um {
    max-width: 100% !important;
}
.contact_content .um-field {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 24px 0 !important;
}
.contact_content .um-field:last-of-type {
    border-bottom: none;
    padding: 0 !important;
}
.contact_content .um-field .um-field-label {
    width: 200px !important;
    margin-top: .5em !important;
}
.contact_content .um-field .um-field-label label {
    color: var(--text-color) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: auto !important;
}
.contact_content .um-field .um-field-area {
    flex: 1;
}
.contact_content .um .um-form input[type=password],
.contact_content .um .um-form input[type=search],
.contact_content .um .um-form input[type=tel],
.contact_content .um .um-form input[type=text],
.contact_content .um .um-form textarea {
    color: var(--text-color) !important;
}
.contact_content .um .um-form input:-webkit-autofill {
    -webkit-box-shadow: none !important;
    -webkit-text-fill-color: var(--text-color) !important;
}
.contact_content .um:not(.um-admin),
#login .um:not(.um-admin) {
    color: var(--text-color) !important;
    font-size: 16px !important;
    margin: 0 !important;
}
.contact_content .um:not(.um-admin):not(.um-directory) input,
.contact_content .um:not(.um-admin):not(.um-directory) select,
.contact_content .um:not(.um-admin):not(.um-directory) textarea {
    font-size: 16px !important;
}
.contact_content .um-field-error {
    width: calc(100% - 220px) !important;
    background: none !important;
    border-radius: 0 !important;
    color: var(--err-color) !important;
    box-sizing: border-box;
    position: relative;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: auto !important;
    margin: 10px 0 0 auto !important;
}
.contact_content .um-faicon-caret-up:before {
    display: none !important;
}
#um_field_7_building {
    border-bottom: none;
    padding-bottom: 0;
}
.contact_content .um-field-checkbox-state,
.contact_content .um-field-radio-state {
    position: relative;
    display: inline-block;
    width: 20px !important;
    height: 20px !important;
    margin: .2em 0 0 -20px;
}
.contact_content .um-field-checkbox-state i,
.contact_content .um-field-radio-state i {
    display: none;
}
.contact_content .um-field-checkbox-state::after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    transform: rotate(45deg);
    opacity: 0;
    width: 4px;
    height: 10px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transition: .3s;
}
.contact_content .um-field-checkbox label:has(:checked) .um-field-checkbox-state::after {
    opacity: 1;
}
.contact_content .um-field-checkbox-option,
.contact_content .um-field-radio-option {
    margin: 0 0 0 10px !important;
    color: var(--text-color) !important;
}
.contact_content .um-field-checkbox-option a,
.contact_content .um-field-radio-option a {
    text-decoration: underline;
}
.contact_content .um-field.um-field-consent {
    margin: 80px 0 0 0 !important;
    padding: 30px 20px !important;
    border-radius: 5px !important;
}

/* ログイン画面 */
#login .um .um-form input[type=password],
#login .um .um-form input[type=search],
#login .um .um-form input[type=tel],
#login .um .um-form input[type=text],
#login .um .um-form textarea,
#account .um .um-form input[type=password],
#account .um .um-form input[type=search],
#account .um .um-form input[type=tel],
#account .um .um-form input[type=text],
#account .um .um-form textarea {
    background: #fff !important;
}
#login .um-login.um-logout {
    max-width: 100% !important;
}
#login .um-form {
    width: 90%;
    max-width: 800px;
    margin: 100px auto 0;
}
#login p {
    text-align: center;
}
#login .um-field:last-of-type {
    padding-bottom: 0 !important;
    border-radius: 0 !important;
}
#login .um-col-alt .um-field {
    padding-top: 20px !important;
    border-radius: 0 0 10px 10px !important;
}
#login .register_box {
    margin: 120px 0;
    padding-top: 120px;
    border-top: 1px solid #ddd;
}
#login .register_box .ttl_main {
    margin-top: 0;
}
#login .register_box .btn_main {
    margin-top: 80px;
}
#login .link_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 90%;
    margin: 20px auto 0;
}

/* 新規会員登録画面 */
#register .purchase_form {
    margin-top: 80px;
}
#register .um-field:not(.um-field-consent) {
    padding-bottom: 0 !important;
    background: none !important;
}
#register .um-field:first-of-type {
    padding-top: 0 !important;
}
#register .um-field-checkbox-option {
    padding-bottom: 0 !important;
}
#register .link_box {
    margin: 120px auto 0;
    text-align: center;
}
#register .um-field-checkbox .um-field-area {
    padding: 0 !important;
}

/* パスワードリセット画面 */
#pass_reset {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 100px;
}
#pass_reset .um-field-block {
    margin-bottom: 32px !important;
    background: none !important;
}
#pass_reset .um-field-block {
    color: var(--text-color) !important;
    font-size: 15px !important;
}
#pass_reset .um-field-block > div {
    text-wrap: balance;
    word-break: auto-phrase;
}
#pass_reset .um-um_password_id.um {
    max-width: 600px !important;
}
#pass_reset .um-field input {
    background: #fff !important;
}
#pass_reset .um-field:has(#username_b) {
    padding-bottom: 30px !important;
    border-radius: 10px !important;
}
#pass_reset .um-field:has(#user_password) {
    margin-top: 50px !important;
}
#pass_reset .um-field:has(#confirm_user_password) {
    padding-bottom: 50px !important;
    border-radius: 0 0 10px 10px !important;
}

/* アカウント画面 */
.um-account:has(a.current[data-tab="general"]) .um-account-tab-general {
    display: flex !important;
    flex-wrap: wrap !important;
}
.um-account-main {
    width: calc(70% - 15px) !important;
    padding: 0 5% 0 5% !important;
}
.um-account-name a:not(.um-link) {
    pointer-events: none !important;
}
.um-account-meta-img {
    display: none !important;
}
.um-account-name .um-account-profile-link a {
    color: var(--text-color) !important;
    text-decoration: underline !important;
}
.um-account-side ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    border: none !important;
}
.um-account-side ul li a {
    display: flex !important;
    align-items: center !important;
    height: 50px !important;
    padding: 0 10px !important;
    background: #fff !important;
    border: 1px solid var(--text-color) !important;
    border-radius: 5px !important;
    color: var(--text-color);
}
.um-account-side ul li a.current {
    border-color: var(--accent-color) !important;
}
.um-account-side ul li a.current .um-account-title {
    color: var(--accent-color) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}
.um-account-side ul li a.current[data-tab="general"] .um-faicon-user {
    background-image: url(../img/ic_mypage_active.svg);
}
.um-account-side ul li a.current[data-tab="password"] .um-faicon-asterisk {
    background-image: url(../img/ic_password_active.svg);
}
.um-account-side ul li a.current[data-tab="delete"] .um-faicon-trash-o {
    background-image: url(../img/ic_delete_active.svg);
}
.um-account-side li a span.um-account-title {
    padding-left: 5px !important;
}
.um-account-arrow {
    display: none !important;
}
.um-account-icon {
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: none !important;
}
.um-faicon-user,
.um-faicon-asterisk,
.um-faicon-trash-o {
    display: inline-block !important;
    width: 46px !important;
    height: 46px !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.um-faicon-user::before,
.um-faicon-asterisk::before,
.um-faicon-trash-o::before {
    display: none !important;
}
.um-faicon-user {
    background-image: url(../img/ic_mypage.svg);
}
.um-faicon-asterisk {
    background-image: url(../img/ic_password.svg);
}
.um-faicon-trash-o {
    background-image: url(../img/ic_delete.svg);
}
.um-account-side {
    margin-left: 15px !important;
}
.um-account-side  {
    padding: 40px 32px !important;
    border-radius: 10px !important;
    background: var(--bg-color) !important;
}
#account .um-account {
    margin: 100px 0 160px !important;
}
#account .um-account-main p {
    margin: 0 !important;
    padding-bottom: 50px !important;
    color: var(--text-color) !important;
}
#account .um-account-main div.um-account-heading.uimob340-hide.uimob500-hide {
    order: 1;
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    padding-bottom: 35px !important;
    color: var(--text-color) !important;
    font-size: clamp(22px,3vw,30px) !important;
    font-weight: 600 !important;
}
#account .um-field-user_login,
#account #um_field_0_current_user_password {
    width: 100% !important;
    padding-top: 50px !important;
    border-radius: 10px 10px 0 0 !important;
}
#account .um-field-user_email,
#account #um_field_0_confirm_user_password {
    width: 100% !important;
    order: 5;
    padding-bottom: 50px !important;
    border-radius: 0 0 10px 10px !important;
}
#account #um_field_0_single_user_password {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    border-radius: 10px !important;
}
#account .um-field-user_login {
    order: 2;
}
#account .um-field-last_name,
#account .um-field-first_name {
    display: inline-block;
    width: 50% !important;
}
#account .um-field-last_name {
    order: 3;
    padding-right: 25px !important;
}
#account .um-field-first_name {
    order: 4;
    padding-left: 25px !important;
}
#account .um-col-alt {
    order: 6;
    width: 100% !important;
}
#account .um-left {
    float: none !important;
}
#user .um-header {
    display: none !important;
}
#user .um-profile .um-profile-body {
    max-width: 1200px !important;
    padding: 80px 0 0 !important;
}
#user .um-field:last-of-type {
    padding-bottom: 50px !important;
    border-radius: 0 0 10px 10px !important;
}
#user .um-field input {
    background: #fff !important;
}
#user .link_box {
    margin: 80px auto 100px;
    text-align: center;
}
#members {
    width: 90% !important;
    margin: 100px auto !important;
}
#members .um .um-button {
    background: var(--accent-color) !important;
}
#members .login_box p {
    padding-bottom: 80px;
    text-align: center;
}
.um-directory .um-members-wrapper .um-members.um-members-list .um-member {
    border-radius: 10px;
    border-color: var(--sub-color);
}
.um-directory .um-member-directory-header {
    padding-bottom: 50px !important;
}

@media screen and (max-width:990px) {
    #login .um-form {
        margin: 50px auto 0;
    }
    .um-account-side {
        display: block !important;
        float: none !important;
        width: 90% !important;
        margin: 0 auto !important;
    }
    #account .um-account-main {
        float: none !important;
        width: 100% !important;
        max-width: none !important;
        margin-top: 80px !important;
    }
    .um-account-side ul {
        flex-direction: row !important;
    }
    #account .um-account-side li {
        flex: 1 !important;
        width: 100% !important;
        min-width: 200px !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    .um-account-meta-img-b{
        display: none !important;
    }
    .um-account-name {
        display: none !important;
    }
    .um-account-name.uimob800-hide {
        display: block !important;
    }
    #account .um-account-meta {
        margin-bottom: 20px !important;
    }
    .um-account-meta a {
        border: none !important;
    }
    .um-account-title {
        display: block !important;
    }
    .um-account-icontip {
        width: auto !important;
    }
    .um-account-nav.uimob340-show,
    .um-account-nav.uimob500-show {
        display: none !important;
    }
    div.uimob340 .um-account-tab,
    div.uimob500 .um-account-tab {
        border: none !important;
    }
}
@media screen and (max-width:768px) {
    .um-account-side ul {
        flex-direction: column !important;
    }
    div.uimob800 .um-account-side li a span.um-account-icontip {
        display: block !important;
    }
}
@media screen and (max-width:600px) {
    .contact_content .um-field {
        flex-direction: column !important;
    }
    .memberForm_container .um-field-label,
    .um-field-area {
        width: 100% !important;
    }
    .memberForm_container .um-field-label {
        margin-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .memberForm_container#login .um-field-label,
    .memberForm_container#account .um-field-label,
    .memberForm_container#pass_reset .um-field-label {
        padding-bottom: 10px !important;
    }
    .memberForm_container .um-field {
        padding: 0 5% !important;
    }
}
@media screen and (max-width:500px) {
    .um-account-side {
        padding: 32px 20px !important;
    }
    .memberForm_container .um-field-checkbox.um-field-consent label {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .memberForm_container .um-field-checkbox.um-field-consent .um-field-checkbox-option::after {
        top: -1.1em;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
    #account .um-field-last_name {
        width: 100% !important;
        padding-right: 5% !important;
    }
    #account .um-field-first_name {
        width: 100% !important;
        padding-left: 5% !important;
    }
    #register .um-field-checkbox-option {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
    }
}

/*---------------------------------------------------------
                404
---------------------------------------------------------*/
.notfound_content {
    width: 80%;
    margin: 100px auto 0;
}
.notfound_content p {
    text-align: center;
}
.notfound_content .btn_box {
    margin-top: 50px;
    text-align: center;
}