@charset "UTF-8";

/* --- Base & Reset --- */
:root {
    --color-bg: #f5f0e1;
    --color-text: #4a4a4a;
    --color-accent: #4A4343;
    /* 修正: フォント指定の変更 */
    --font-mincho: 'BIZ UDPMincho', 'Noto Serif JP', serif;
    --font-gothic: 'Noto Sans JP', sans-serif;
    --font-shippori: 'Shippori Mincho', serif;
    --font-script: 'Qwigley', cursive;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Header height */
}

body {
    font-family: var(--font-mincho);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 2;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main {
    margin-top: 80px;
}

ul {
    list-style: none;
}

/* --- Side Logo --- */
.l-side-logo {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    /* 必要に応じて調整 */
    z-index: 9999;
}

.l-side-logo img {
    width: 70% !important;
    height: auto;
    display: block;
}

/* --- Utilities --- */
.u-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* --- Header --- */
.l-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
    left: 0;
    height: 80px;
    transition: all 0.3s ease;
}

.l-header__logo {
    position: absolute;
    top: 0;
    left: 60px;
    z-index: 110;
    background-color: #fff;
    background-image: url('assets/img/common/logo_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.l-header__logo img {
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
}

/* Scrolled State */
.is-header-scrolled .l-header__logo img {
    height: 100px;
}

.l-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* 右寄せ */
    padding: 0 40px;
}

.l-header__right {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 4px;
}

.l-header__nav-list {
    display: flex;
    gap: 40px;
    /* ユーザー調整を維持 */
    margin-right: 20px;
}

.l-header__nav-item {
    color: #231815;
    font-family: var(--font-shippori);
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.l-header__cartBtn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-gothic);
    font-weight: 700;
}

.l-header__cartBtn img {
    width: 24px;
}


@media (min-width: 440px) {
    .l-header__cartBtn span {
        font-size: 1rem;
    }
}

.l-header__cartBtn {
    position: relative;
    width: 11.3636vw;
    text-align: center;
    margin-left: 2.27273vw;
}

@media (min-width: 440px) {
    .l-header__cartBtn {
        width: 50px;
        margin-left: 10px;
    }
}



.l-header__cartBtn span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 8px;
    min-width: 18px;
    height: 18px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    box-sizing: border-box;
    font-size: 14px;
    padding: 0px 0.3em;
    border-radius: 10px;
    background: rgb(217, 58, 20);
}



/* --- Footer --- */
.l-footer {
    color: #333;
}

.l-footer__top {
    position: relative;
    padding: 130px 0;
    text-align: center;

}

.l-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.l-footer__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.l-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.l-footer__logo img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 30px;
}

.l-footer__info {
    margin-bottom: 30px;
}

.l-footer__tel {
    font-size: 36px;
    font-family: var(--font-gothic);
    font-weight: 700;
    line-height: 20px;
    margin-top: 10px;
}

.l-footer__sns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.l-footer__sns img {
    width: 32px;
}

.l-footer__bottom {
    background-color: #F5ECD3;
    color: #333;
    text-align: center;
    padding: 20px 0;
}

.l-footer__nav {
    margin-bottom: 15px;
    font-family: var(--font-gothic);
    font-size: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.l-footer__legal {
    margin-bottom: 15px;
    font-family: var(--font-gothic);
    font-size: 11px;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.8;
}

.l-footer__copy {
    font-size: 10px;
    opacity: 0.6;
    font-family: var(--font-gothic);
}

/* --- Drawer (Base) --- */
.p-drawer {
    display: none;
}

/* --- Responsive --- */
@media screen and (max-width: 767px) {

    /* Header */
    .l-header__logo {
        left: 10px;
    }

    /* Side Logo */
    .l-side-logo {
        width: 40px;
    }

    .l-header__logo img {
        height: 100px;
    }

    .l-header__nav {
        display: none;
    }

    .l-header__inner {
        padding: 10px 20px;
    }

    /* Hamburger */
    .l-header__hamburger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 200;
        margin-left: 20px;
    }

    .l-header__hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: 0.3s;
    }

    .l-header__hamburger span:nth-child(1) {
        top: 0;
    }

    .l-header__hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .l-header__hamburger span:nth-child(3) {
        bottom: 0;
    }

    /* Drawer */
    .p-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(245, 236, 211, 0.95);
        /* #F5ECD3 ベース */
        z-index: 10000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .p-drawer.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .p-drawer__close {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .p-drawer__close span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333;
        top: 50%;
        left: 50%;
    }

    .p-drawer__close span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .p-drawer__close span:nth-child(2) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .p-drawer__nav {
        text-align: center;
    }

    .p-drawer__item {
        margin-bottom: 20px;
    }

    .p-drawer__item a {
        font-size: 20px;
        font-family: var(--font-shippori);
        font-weight: 500;
        color: #333;
    }

    /* Footer */
    .l-footer__nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* welcat   追加 */
#content {
    margin: auto;
    margin-top: 180px;
    padding: 0 .714286em 2.142856em;
    max-width: 1000px;
}

.new-entry {
    font-size: 15px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@media screen and (max-width: 767px) {
    #content {

        margin-top: 180px;

    }

    .cart_page_title {

        text-align: center;
    }
}

.skubutton {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-gothic);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
}

select {
    max-width: 100%;
    padding: .5714285em 2.14286em .5714285em .5714285em;
    background: url(images/select-arrow.gif) center right 10px no-repeat;
    border: 1px solid #bbb;
}

textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #bbb;
}






.snav .membership {
    float: left;
}

.snav .membership a {
    display: block;
}

.snav .membership ul {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 1.4286em .714286em .714286em;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    z-index: 2;
}

.snav .membership.On ul {
    display: block;
}

.snav .membership li {
    float: none;
    background: none;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 0 1.07143em .714286em;
    padding-bottom: .357143em;
}

.snav .membership li:first-child {
    margin-left: 0;
}

.snav .membership li:last-child {
    margin-bottom: 0;
    border: none;
}

/* -- .incart-btn -- */
.incart-btn {
    float: left;
}

.incart-btn a {
    display: block;
    color: #262626;
}



/* -- input,select,textarea -- */
input,
select,
textarea {
    font-size: 1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

select {
    max-width: 100%;
    padding: .5714285em 2.14286em .5714285em .5714285em;
    background: url(images/select-arrow.gif) center right 10px no-repeat;
    border: 1px solid #bbb;
}

textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #bbb;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"] {
    padding: .5714285em;
    border: 1px solid #bbb;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    padding: .714288em 1.42857em;
    background-color: #efefef;
    border: none;
    -webkit-transition: .3s ease all;
    -moz-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
    background-color: #ddd;
    cursor: pointer;
}

input[type="checkbox"] {
    border: 1px solid #ccc;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

input[type="radio"] {
    border: 1px solid #bbb;
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

input[type="file"] {
    border: none;
}


.error_message {
    color: #ff0000;
    font-size: 13px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: .384615em;
}

.wp-caption {
    margin: 10px 0;
    padding-top: 4px;
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.wp-caption img {
    margin: 0;
    padding: 0;
    border: 0 none;
}

.wp-caption p {
    font-size: 11px;
    margin: 0;
    padding: 0 4px 5px;
    line-height: 17px;
}