@charset "UTF-8";

/*
変数定義
----------------------------------------------------------- */
:root {
    /* カラー */
    --color-primary: #BDA673;
    --color-secondary: #373737;
    --color-accent: #c9a84c;
    --color-text: #373737;
    --color-link: #7eb8a8;
    --color-white: #f5f2ec;
    --color-footer: #0d0b0a;
    --color-card: #2a2420;
    --color-body: #ffffff;
    --color-gray: #999999;
    /* レイアウト */
    --width-mid: 1200px;
    --width-narrow: 770px;
    --space-unit: 10px;
    --space-box: 3px;
    --space-section: 50px;
    --header-height: 60px;
    /* その他 */
    --gap: 30px;
    --duration: 0.7s;
}

/*
ベース
----------------------------------------------------------- */
html {
    font-size: 100%;
    overflow-x: clip;
}
body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: width 100;
    padding-top: var(--header-height);
    background: var(--color-body);
    color: var(--color-text);
    text-align: center;
}
.item-txt {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.03em;
    text-align: center;
}
.item-txt span {
    font-size: 11px;
    color: #888;

}
.about-text {
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: left;
    line-height: 2.5;
    font-size: 14px;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.materials-title {
    font-family: "Source Serif 4", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-align: center;
}
.second-text {
    font-size: 16px;
    line-height: calc(28 / 16);
    text-align: center;
    padding-bottom: var(--space-section);
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/*
レイアウト
----------------------------------------------------------- */
.wrapper {
    width: 100%;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
.wrapper-mid {
    max-width: var(--width-mid);
    margin: 0 auto;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}
.wrapper-narrow {
    max-width: var(--width-narrow);
    margin: 0 auto;
    padding: 0 var(--space-unit);
    box-sizing: border-box;
}


/*
ユーティリティ - Flex
----------------------------------------------------------- */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap { gap: var(--gap); }

/*
ユーティリティ - Grid
----------------------------------------------------------- */
.grid { display: grid; }
.grid-3col { grid-template-columns: repeat(3, 1fr); }
.grid-2col { grid-template-columns: repeat(2, 1fr); }

/*
共通コンポーネント
----------------------------------------------------------- */
.sec-line {
    width: 0.5px;
    height: 113px;
    background-color: var(--color-text);
    margin: 0 auto var(--space-section) auto;
}
.sec-ttl {
    font-size: 40px;
    font-family: "Marcellus", serif;
    font-weight: 400;
    text-align: center;
    padding-bottom: var(--space-section);
}
.lead {
    font-size: 14px;
    line-height: calc(26 / 14);
    text-align: center;
    padding-bottom: var(--space-section);
}

/* ボタン共通 */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    transition: all var(--duration);
    margin: 0 auto;
}
/* プライマリーボタン */
.btn-primary {
    width: 290px;
    height: 50px;
    background: #fff;
    color: var(--color-primary);
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    font-family: 'Marcellus', serif;
    letter-spacing: 0.15em;
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
}
/* セカンダリーボタン */
.btn-secondary {
    width: 150px;
    height: 45px;
    line-height: 44px;
    border-radius: 5px;
    font-size: 15px;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    transition: background 0.3s, color 0.3s;
}

/* 戻るボタンエリア（一覧・TOPへ戻る導線の下余白） */
.back-btn-area {
    padding-bottom: var(--space-section);
}

/* ページトップボタン */
.pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background-image: url(../img/toppage.icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.5s, visibility 0.5s;
}
.pagetop.is-visible {
    opacity: 1;
    visibility: visible;
}
.pagetop:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    translate: 0 20%;
}

/* カード画像ズーム用 */
.card figure {
    overflow: hidden;
    margin-bottom: var(--space-unit);
}
.card figure img {
    transition: transform 0.4s ease;
}

/* ホバー制御（PCのみ） */
@media (hover: hover) and (pointer: fine) {
    .btn-primary:hover {
        background-color: #c5a880;
        color: #ffffff;
    }
    .btn-secondary:hover {
        background: #999999;
        color: #fff;
    }
    .card figure img:hover {
        transform: scale(1.08);
    }
    .pagetop:hover {
    filter: sepia(1);
    }
}

.pagetop:hover::before {
    border-color: var(--color-primary);
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.category-item:hover .image-wrapper img {
    transform: scale(1.08);
}

.sp-only {
    display: none;
}


/*
ローディング
----------------------------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-body);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}
#loading.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.loading-logo {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.loading-logo.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*
header
----------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header .wrapper {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}
/* ロゴ */
.logo img {
    margin: 0;
    height: calc(var(--header-height) - 20px);
    width: auto;
    max-width: none;
}
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}
.nav-list a {
    text-decoration: none;
    color: #c5a880;
    font-family: "Marcellus", serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-list a:hover {
    color: #333;
}
/* テキストリンクはpadding広め、アイコンのみ狭める */
.nav-link {
    display: block;
    padding: 0 12px;
    height: calc(var(--header-height) - 20px);
    line-height: calc(var(--header-height) - 20px);
    font-size: 15px;
    font-weight: bold;
    color: var(--color-text);
    position: relative;
}
.nav-link.icon-link {
    padding: 0 6px;
    font-size: 16px;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
    .nav-link:hover::after {
        width: 100%;
    }
}

/* オーバーレイ・ハンバーガーボタン（PCでは非表示） */
.nav-overlay,
.menu {
    display: none;
}

/*
main visual
----------------------------------------------------------- */
.slider {
    margin-bottom: var(--space-section);
}
.slider img {
    width: 100%;
}
.swiper-button-prev svg,
.swiper-button-next svg {
    display: none;
}
.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: var(--color-white);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    border-color: var(--color-secondary);
    color: #fff;
    background: rgba(201, 168, 76, 0.08);
}
.swiper-button-prev {
    left: 20px;
}
.swiper-button-next {
    right: 20px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 14px;
    content: "\f054";
}
.swiper-button-prev:after {
    content: "\f053";
}
.swiper-slide-duplicate #loading,
.swiper-wrapper + #loading ~ #loading {
    display: none !important;
}

/*
about
----------------------------------------------------------- */
.about {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

/*
pickup
----------------------------------------------------------- */
.pickup {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}
.pickup-lead {
    padding-bottom: var(--space-section);
    font-size: 14px;
    line-height: 2;
    text-align: center;
}
.card.f-up {
    list-style: none;
    padding: 0;
    margin: 0;
}
.card-list {
    padding-bottom: var(--space-section);
}
.item-txt {
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: baseline;
    padding-top: 6px;
}

/*
category
----------------------------------------------------------- */
.category-section {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}
.category-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.category-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.category-item a {
    display: block;
    width: 100%;
}
.image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    filter: drop-shadow(8px 8px 0 var(--shadow-color, rgba(0, 0, 0, 0.2)));
}
.image-wrapper--pink {
    --shadow-color: #FBC3DE;
}
.image-wrapper--orange {
    --shadow-color: #DDE6A3;
}
.image-wrapper--blue {
    --shadow-color: #A8CCF0;
}
.image-wrapper--brown {
    --shadow-color: #B89A78;
}
.image-wrapper--red {
    --shadow-color: #FBADAE;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-txt {
    font-family: "Marcellus", serif;
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    line-height: 1.5;
        letter-spacing: 0.05em;
}

/*
materials
----------------------------------------------------------- */
.materials {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}
.materials-section {
    width: 100%;
}
.materials-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
.materials-row:last-child {
    margin-bottom: 0;
}
.materials-row:nth-child(even) {
    flex-direction: row-reverse;
}
.materials-image {
    flex: 1;
}
.materials-image img {
    width: 100%;
    height: auto;
    display: block;
}
.materials-content {
    flex: 1;
    padding: 0 60px;
    text-align: center;
}
.materials-title {
    font-size: 34px;
    color: #373737;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
}
.materials-text {
    font-size: 14px;
    color: #373737;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: left;
}

/*
information
----------------------------------------------------------- */
.information {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}
.info-column {
    flex: 1;
}

/* news */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.news-item {
    border-bottom: 1px dashed #ccc;
}
.news-item a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.3s, letter-spacing 0.3s;
}
.news-item a:hover {
    color: var(--color-accent);
    letter-spacing: 0.03em;
}
.news-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}
.news-date {
    color: var(--color-text);
    font-size: 13px;
    letter-spacing: 0.03em;
}
.news-title {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}
.new {
    display: inline-block;
    flex-shrink: 0;
    padding: 2px 12px;
    border: 1px solid var(--color-accent);
    border-radius: 4px;
    background: none;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

/* blog */
.blog-grid {
    display: flex;
    gap: 24px;
}
.blog-item {
    flex: 1;
}
.blog-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}
.blog-text {
    font-size: 13px;
    line-height: 1.7;
    color: #373737;
    text-align: left;
}
.blog-text a {
    color: var(--color-link);
    text-decoration: none;
}

/*
footer
----------------------------------------------------------- */
.footer {
    width: 100%;
    color: #fff;
    background-image: url('../img/footer-img01.webp');
    background-size: cover;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 0;
}
.footer .wrapper-narrow {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}
.footer-ttl {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.12em;
    padding-bottom: var(--space-unit);
}
.footer-address {
    display: inline-block;
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
    font-style: normal;
}
.footer-address a {
    color: #fff;
    text-decoration: none;
}
.footer-address a:hover {
    color: var(--color-primary);
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}
.footer-sns {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}
.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-sns a:hover {
    color: var(--color-primary);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}
.footer-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.copyright {
    width: 100%;
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: #373737;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: var(--space-section);
    background-color: #fff;
}
small {
    font-size: 100%;
}

/*
フェードアップ
----------------------------------------------------------- */
.f-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.f-up.fadeup {
    opacity: 1;
    transform: translateY(0);
}

/*
レスポンシブ tablet
----------------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .split-layout {
        flex-direction: column;
    }
    .split-sticky {
        width: 100%;
    }
}

/*
レスポンシブ tablet + mobile 共通
----------------------------------------------------------- */
@media screen and (max-width: 1199px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--color-secondary);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        padding-top: var(--header-height);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }
    body.open .nav {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
    }
    .nav-link {
        height: 55px;
        line-height: 55px;
        padding: 0 var(--space-section);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-link.icon-link {
        padding: 0 var(--space-section);
    }
    .nav-link::after {
        display: none;
    }
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    body.open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    .menu {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        z-index: 1001;
    }
    .menu span {
        display: block;
        height: 3px;
        background: var(--color-primary);
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out;
        border-radius: 3px;
    }
    .menu span:nth-child(1) { top: 5px; }
    .menu span:nth-child(2) { top: 15px; }
    .menu span:nth-child(3) { top: 25px; }
    body.open .menu span:nth-child(1) { top: 12px; rotate: 135deg; }
    body.open .menu span:nth-child(2) { width: 0; left: 50%; }
    body.open .menu span:nth-child(3) { top: 12px; rotate: -135deg; }
}
/*SHOP*/
.card-list {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center; 
}
.card .item-info {
    text-align: center;
    margin-top: 15px;
    letter-spacing: 0.05em;
}

.item-title-en {
    font-family: "Marcellus", serif !important;
    font-size: 26px;
    justify-content: center; /* 商品情報全体が中央揃えの場合、ここも中央に寄せる */
    align-items: baseline;
    font-weight: normal;
    color: (var(--color-text));
    margin: 0 0 10px 0;
    letter-spacing: 0.1em;
}

.item-title-ja {
    font-family: "Marcellus", serif !important;
    font-size: 16px;
    color: (var(--color-text));
    margin: 0 0 6px 0;
    letter-spacing: 0.05em;
}
.item-price {
    font-family: "Noto Sans", sans-serif;
    font-size: 20px;
    color: (var(--color-text));
    margin: 0;
    letter-spacing: 0.05em;
}

.category-header h2 {
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    align-items: baseline;
    font-family: "Marcellus", serif;
    font-size: 45px;
    color:(var(--color-text));
    font-weight: 400;
    letter-spacing: 0.1em;
}
.category-header h2 span {
    font-size: 16px;
    color: #666666;
    margin-left: 10px;
    font-family: "Marcellus", serif;
}

.category-header h2::before {
    content: "";
    display: inline-block;
    width: 200px;
    height: 1px;
    background-color: #999999;
    margin-right: 20px;
}

.about-text-br {
    font-family: "Marcellus", serif !important;
    font-size: 25px;
    color: (var(--color-text));
    margin: 0 0 20px 0;
    letter-spacing: 0.1em;
    line-height: 5.0;
}

.mv {
    margin-bottom: var(--space-section);
    width: 100%;
}

.values-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.values-lead {
    font-size: 14px;
    line-height: 1.8;
    color: (var(--color-text));
    margin-bottom: 80px; 
}

.values-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .values-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    }

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px; 
}

.bg-blue {
    background-color: #E6F0FA;
}
.bg-blue i {
    color: (var(--color-text));
    font-size: 50px;
}

.bg-beige {
    background-color: #ECE3CF;
}
.bg-beige i {
    color: (var(--color-text));
    font-size: 50px;
}

.bg-pink {
    background-color: #F4DADA;
}
.bg-pink i {
    color: (var(--color-text));
    font-size: 50px;
}

.item-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: (var(--color-text));
}

.item-text {
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: (var(--color-text));
    text-align: left;
}

.step-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px; 
}


.step-box {
    display: flex;
    align-items: stretch;
}

.step-icon-zone {
    width: 150px;
    height: 150px;
    background-color: #F5F2EC;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px;
    box-sizing: border-box;
}

.step-icon-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.step-text-zone {
    flex-grow: 1;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-title {
    font-size: 23px;
    font-weight: bold;
    margin: 0 0 12px 0;
    color: var(--color-text);
    text-align: left; 
}

.step-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    text-align: left;
}

.note {
    color: #DE5D5D;
    font-size: 12px;
}

.sec-line-head {
    padding-top: 60px;
}

.note-box {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.note-text {
    color: (var(--color-text));
    margin: 0 0 20px 0;
    letter-spacing: 0.1em;
    line-height: 4.0;
    text-align: left;
}

.news-container {
    max-width: 650px;
    width: 90%;
    margin: 60px auto;
}

.news-img-zone {
    width: 100%;
    margin-bottom: 30px;
}

.news-img-zone img {
    width: 100%;
    height: auto;
    display: block;
}

.news-body-zone {
    width: 100%;
    text-align: left;
    
}

.news-meta {
    margin-bottom: 24px;
}

.news-date {
    font-size: 18px;
    color: #666666;
    margin-right: 20px;
}

.news-title {
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    color: (var(--color-text));
    margin: 10px 0 0 0;
}

.news-text p {
    font-size: 12px;
    line-height: 2.0;
    color: (var(--color-text));
    margin: 0 0 16px 0;
    margin-bottom: 18px;
}
.news-text {
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    max-width: 450px;
    margin: 30px auto;
    margin-bottom: 60px;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.map-txt {
    font-size: 18px;
    line-height: 2.5;
    text-align: center;
}
.map-ttl {
    font-family: "Marcellus", serif;
    margin-top: 60px;
    margin-bottom: auto;
    font-size: 35px;
    line-height: 0.8;
}


.material-sec {
    padding: 60px 20px;
    background-color: var(--color-body); 
}

.mate-ttl-c {
    font-family: "Source Serif 4", serif;
    text-align: center;
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mate-ttl-c::before,
.mate-ttl-c::after {
    content: "";
    flex-grow: 1;
    max-width: 100px;
    height: 1px;
    background-color: var(--color-text);
}

.mate-ttl-c::before {
    margin-right: 20px;
}

.mate-ttl-c::after {
    margin-left: 20px;
}

.mate-intro-container {
    max-width: 800px;
    margin: 0 auto;
}

.mate-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mate-card-a {
    width: 45%;
    text-align: center;
}

.mate-card-a h3.mate-title-sub {
    font-family: "Marcellus", serif;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.mate-card-a img {
    width: 100%;
    height: auto;
    display: block;
}

.mate-cross {
    font-size: 60px;
    color: var(--color-text);
    font-family: serif;
    padding: 0 10px;
}

.mate-text-b {
    margin-top: 30px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-bottom: 60px;
    text-align: left;
}

.mate-features-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px; 
    padding: 0 20px;
}

.mate-box {
    display: flex;
    align-items: stretch;
    margin-bottom: 50px;
}

.mate-title {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: var(--color-text);
    text-align: left; 
    padding-left: 22px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
}

.mate-title::before {
    content: "";
    position: absolute;
    left: 0;
    width: 9px;
    height: 24px;
    background-color: #e6ca9d;
}

.mate-text {
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
    text-align: left;
}

.point-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.point-box {
    margin-bottom: 60px;
}

.mate-ttl-unused-sample {
    font-size: 40px;
    font-family: "Marcellus", serif;
    font-weight: 400;
    text-align: center;
    padding-bottom: 20px;
    margin-top: 60px;
}

.point-ttl {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    font-family: "Marcellus", serif;
}

.point-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.point-img {
    width: 55%;
    margin: 0;
}

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

.point-text {
    width: 40%;
    line-height: 1.8;
    letter-spacing: 0.03em;
    text-align: left;
}

@media (max-width: 768px) {
    .mate-flex {
        flex-direction: column;
        gap: 20px;
    }

    .mate-card-a {
        width: 100%;
    }

    .mate-cross {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
.re-txt-top {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    line-height: 2.5;
    font-size: 25px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.workshop-text-container {
    font-family: "Marcellus", serif;
    max-width: 900px; 
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
}
.workshop-text-container p {
    line-height: 2.5;
    margin-bottom: 15px;
}
.workshop-skj {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    line-height: 2.5;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 60px;
}
.workshop-skj p {
    line-height: 2.5;
    margin-bottom: 15px;
}
.re-img-zone {
    /* 親の箱を真ん中に寄せておく */
    text-align: center; 
    margin: 0 auto;
}

.re-img-zone img {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.shop-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-box {
    width: 100%;
}

.shop-flex {
    display: flex;
    justify-content: space-between; 
    align-items: center;           
}

.shop-flex {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.shop-img {
    width: 45%;
    margin: 0;
}
.shop-img img {
    width: 100%;
    height: auto;
    display: block;
}
.shop-text {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.shop-ttl {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    letter-spacing: 0.03em;
    font-family: "Marcellus", serif;
}
.shop-tti-s {
    text-align: center;
    font-size: 11px;
    margin-bottom: 30px;
    letter-spacing: 0.03em;
    font-family: "Marcellus", serif;
}
.shop-en {
    width: 100%;
    text-align: right;
    font-size: 26px;
    margin-bottom: 25px;
    letter-spacing: 0.03em;
    line-height: 1.0;
}
.shop-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px; 
    margin-bottom: 20px;
    text-align: center;
}

.shop-btn-group .btn-primary,
.shop-btn-group .btn-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1;
}
.btn-secondary {
    background-color: #ffffff;
    color: #4a3b32;
    border: 1px solid #4a3b32;
    cursor: pointer;
}

.shop-note {
    display: block;
    font-size: 11px;
    color: #666666;
    text-align: center;
    margin-top: 4px;
}
@media screen and (max-width: 767px) {
    :root {
        --header-height: 60px;
    }
    .sec-ttl {
        font-size: 20px;
        padding-bottom: 24px;
    }
    .lead {
        text-align: left;
    }
    .grid-3col,
    .grid-2col {
        grid-template-columns: 1fr;
    }
    .pagetop {
        bottom: 20px;
        right: 10px;
    }
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 11px;
    }
    .header .wrapper {
        padding: 10px var(--space-unit);
    }
    .logo img {
        max-height: calc(var(--header-height) - 20px);
        width: auto;
    }
    .pickup-list {
        padding: 0 15px var(--space-section);
    }
    .category-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 12px;
    }
    .category-item {
        flex: 0 0 calc((100% - 24px) / 3);
    }
    .image-wrapper {
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .category-txt {
        font-size: 11px;
    }
    .materials-row {
        flex-direction: column;
        margin-bottom: 50px;
    }
    .materials-row:nth-child(even) {
        flex-direction: column;
    }
    .materials-content {
        padding: 30px 20px 0;
    }
    .info-container {
        flex-direction: column;
        gap: 40px;
    }
    .info-column {
        width: 100%;
    }
    .blog-grid {
        flex-direction: column;
    }
    .blog-item {
        width: 100%;
    }
    .footer .wrapper-narrow {
        flex-direction: column;
        gap: var(--space-unit);
    }
    .footer-right {
        align-items: center;
    }
    .footer-sns {
        gap: 16px;
    }
    .about-text-br p {
        font-size: 20px;
        line-height: 3.5;
        text-align: center;
        margin-bottom: 40px;
    }
    .about-text p {
        font-size: 14px;
        line-height: 2.5;
        text-align: center;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: inline;
    }
    .values-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .note-box {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .note-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 0;
        margin-bottom: 0.8em;
        text-align: left;
    }
    .note-text p:last-child {
        margin-bottom: 0;
    }
    .sec-ttl {
        line-height: 1.5;
    }
    .news-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .news-date {
        font-size: 15px;
        margin-bottom: 18px;
    }
    .news-title {
        font-size: 20px;
        line-height: 1.8;
        margin-top: 0;
        margin-bottom: 10px;
    }
    .news-text p {
        font-size: 13px;
        line-height: 1.8;
    }
    .map-txt p {
        font-size: 15px;
        line-height: 1.8;
    }
    .category-header h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 28px; 
    align-items: center; 
    padding: 0 20px ;
    box-sizing: border-box;
    justify-content: flex-start;
    width: 100%;
    }

    .category-header h2 span {
        font-size: 11px;
        margin-left: 6px;
        white-space: nowrap;
    }
    .category-header h2::before {
        width: 80px; 
        margin-right: 15px;
    }
    .mate-ttl-c {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .mate-title {
        font-size: 17px;
    }
    .point-ttl {
        font-size: 17px;
    }
    .point-flex {
    gap: 15px; 
    align-items: flex-start;
    }
    .point-img {
        width: 45%; 
    }
    .point-img img {
        aspect-ratio: 3 / 4; 
        object-fit: cover; 
        object-fit-position: center; 
        height: 100%; 
    }
    .point-text {
        width: 50%; 
        font-size: 13px;
        line-height: 1.6;
    }
    .re-txt-top {
        font-size: 18px;
        line-height: 2.5;
    }
    .step-container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    }
    .step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .step-text {
        font-size: 12px;
        line-height: 1.6;
    }
}