@charset "utf-8";
/*
Theme Name: wa-hibikian
Theme URI: https://wa-hibikian.com/
Description: wa-hibikian
Version: 1.0
Author: Webtry_Hachisuga
Author URI: https://webtry.net
*/
/*全体*/
img {
    width: 100%;
}
.name p{
    font-family: "Noto Serif JP", serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: .15em;
}
p {
    font-family: "Noto Serif JP", serif;
}
/*ヘッダー*/
header {
    position: relative;
}
.top-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;

    background: #5b3b1f;
    padding: 10px 20px;
}

.top-banner a {
    color: #fff;
    text-decoration: none;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    padding: 0 25px;

    transition: color .3s ease;
}

.top-banner a + a {
    border-left: 1px solid rgba(255,255,255,.3);
}

.top-banner a:hover {
    color: #d4b16b;
}

/* ロゴ＋店名 */
.name_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ロゴ */
.logo img {
    width: 107px;
    display: block;
    margin: 8px 0;
}

/* 店名 */
.name p {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

/* サブタイトル */
.name p span {
    margin-top: 5px;

    font-family: "Noto Serif JP", serif;
    font-size: 0.38em;
    font-weight: 400;
    letter-spacing: .35em;
    color: #8a6b43;
    line-height: 1;
}

/* SNS */
.sns_container {
    position: absolute;
    top: 5px;
    right: 20%;

    display: flex;
    align-items: center;
    gap: 12px;
}

.sns_container a {
    display: block;
    transition: opacity .3s ease, transform .3s ease;
}

.sns_container a:hover {
    opacity: .7;
    transform: translateY(-2px);
}

.sns_container a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/*メインメニュー*/
.main-menu {
    margin: 20px 0;
}
.main-menu nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.main-menu nav ul li {
    list-style: none;
    font-size: 0.9rem;
}
.main-menu nav ul li a {
    text-decoration: none;
    color: #555;
    display: inline-block; /* transformを効かせるため */
}
.main-menu nav ul li a:hover {
    color: #8a6b43;
    transform: scale(1.08);
}
/* ヒーロースライダー */
.hero {
    width: 100%;
}

.hero-swiper {
    width: 100%;
    height: 80vh;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 70%;
}

/* ページネーション */
.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .7;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 矢印 */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
}
/*キャッチコピー*/
.about {
    background: #111;
    color: #f8f4ed;
    padding: 100px 8%;
    text-align: center;
}

.about h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    color: #d4b16b;
    margin-bottom: 50px;
    letter-spacing: .15em;
}

.about p {
    max-width: 760px;
    margin: 0 auto 25px;
    line-height: 2.2;
    font-size: 17px;
}
/* こだわり */
.kodawari_container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 100px 8%;
    background-image: url(images/kodawari-back.jpg);
    background-size: 100vh;
}

/* 文章部分 */
.kodawari {
    padding: 0;
    text-align: left;

    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* タイトル */
.kodawari h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 0 40px;

    color: #2b2118;
    letter-spacing: .15em;
}

/* 小見出し */
.kodawari h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    color: #8a6b43;
    margin: 0 0 0 35px;
    letter-spacing: .15em;
    font-weight: 500;
}

/* 本文 */
.kodawari p {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 2.2;
    margin: 0 0 0 35px;

    max-width: none;
    color: #333;
    letter-spacing: .08em;
}

/* 画像 */
.kodawari-image {
    width: 45%;
    max-width: 600px;
}

.kodawari-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}
/* =========================
   スクロールアニメーション
========================= */

/* 背景は動かさない */
.about,
.kodawari_container {
    opacity: 1;
    transform: none;
}

/* aboutの中身だけふわっと表示 */
.about h2,
.about h3,
.about p {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

.about.is-visible h2,
.about.is-visible h3,
.about.is-visible p {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   こだわり
========================= */

/* 最初は右側に配置して透明にする */
.kodawari h3,
.kodawari p {
    opacity: 0;
    transform: translateX(60px);
    transition:
        opacity 1.2s ease,
        transform 1.2s ease;
}

/* 表示 */
.kodawari.is-visible h3,
.kodawari.is-visible p {
    opacity: 1;
    transform: translateX(0);
}

/* 1つ目 */
.kodawari.is-visible h3:nth-of-type(1),
.kodawari.is-visible p:nth-of-type(1) {
    transition-delay: 0.2s;
}

/* 2つ目 */
.kodawari.is-visible h3:nth-of-type(2),
.kodawari.is-visible p:nth-of-type(2) {
    transition-delay: 0.8s;
}
/**/
/* ショップ */
.shop {
    background: #f8f6f2;
    padding: 100px 8%;
    text-align: center;
}

.shop h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: 38px;
    color: #2b2118;
    margin-bottom: 20px;
}

.shop > p {
    font-family: "Noto Serif JP", serif;
    color: #555;
    line-height: 2;
    margin-bottom: 50px;
}

.shop-links {
    max-width: 1000px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    gap: 20px;
}

.shop-links a {
    flex: 1;
    max-width: 300px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100px;
    padding: 20px;

    background: #fff;
    border: 1px solid #d8cfc4;

    color: #2b2118;
    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.shop-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.shop-links span {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    color: #8a6b43;
    margin-bottom: 8px;
}

.shop-links strong {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 500;
}

/* =========================
   フッター
========================= */

.footer {
    background: #211810;
    color: #f8f4ed;
    padding-top: 70px;
}


/* =========================
   フッター全体
========================= */

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 8% 60px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 35px;
}


/* =========================
   ブランド
========================= */

.footer-brand {
    text-align: center;
}

.footer-name p {
    margin: 0 0 5px;

    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;

    letter-spacing: .15em;
}

.footer-name span {
    font-family: "Noto Serif JP", serif;
    font-size: 12px;

    color: #d4b16b;
    letter-spacing: .2em;
}


/* =========================
   メニュー
========================= */

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 25px;

    margin: 0;
    padding: 0;
}

.footer-menu li {
    list-style: none;
}

.footer-menu a {
    color: #f8f4ed;

    text-decoration: none;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;

    transition:
        color .3s ease,
        transform .3s ease;
}

.footer-menu a:hover {
    color: #d4b16b;
}


/* =========================
   SNS
========================= */

.footer-sns {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 5px;
}

.footer-sns a {
    display: block;

    transition:
        opacity .3s ease,
        transform .3s ease;
}

.footer-sns a:hover {
    opacity: .7;
    transform: translateY(-2px);
}

.footer-sns img {
    width: 30px;
    height: 30px;

    object-fit: contain;

    display: block;
}


/* =========================
   コピーライト
========================= */

.footer-bottom {
    border-top: 1px solid rgba(212, 177, 107, .3);

    text-align: center;

    padding: 20px 8%;
}

.footer-bottom p {
    margin: 0;

    font-family: "Noto Serif JP", serif;

    font-size: 12px;

    color: #b9aea4;

    letter-spacing: .1em;
}

/* =========================
   会社概要
========================= */

main {
    background: #fff;
    color: #333;
}


/* ページタイトル */
.company-heading {
    position: relative;
    background: #f3eee5;
    overflow: hidden;
    padding: 25px 20px 25px;
}

.company-heading-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.company-title {
    position: relative;
    z-index: 2;
    text-align: center;
}

.company-title p {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: 0.25em;
    color: #8a6b43;
}

.company-title h1 {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #493b2d;
}

.company-image {
    width: 180px;
    margin-right: 5%;
}

.company-image img {
    width: 100%;
    display: block;
}

/* セクション共通 */
.greeting,
.company-info,
.business,
.event-info {
    padding: 100px 8%;
}

.greeting {
    background: #fff;
}

.company-info {
    background: #f8f6f2;
}

.business {
    background: #fff;
}

.event-info {
    background: #f8f6f2;
}


/* セクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .section-en {
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    color: #8a6b43;
    letter-spacing: .25em;
    margin-bottom: 10px;
}

.section-title h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: 38px;
    font-weight: 600;
    color: #2b2118;
    letter-spacing: .15em;
    margin: 0;
}


/* =========================
   代表挨拶
========================= */

.greeting-content {
    max-width: 800px;
    margin: 0 auto;
}

.greeting-text {
    text-align: center;
}

.greeting-text p {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 2.4;
    letter-spacing: .08em;
    margin: 0 0 35px;
    color: #444;
}


/* =========================
   会社概要
========================= */

.company-table {
    max-width: 900px;
    margin: 0 auto;
}

.company-table dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    margin: 0;
    border-top: 1px solid #d8cfc4;
}

.company-table dt,
.company-table dd {
    margin: 0;
    padding: 25px 30px;
    border-bottom: 1px solid #d8cfc4;
    font-family: "Noto Serif JP", serif;
    line-height: 1.9;
}

.company-table dt {
    background: #eee9e2;
    color: #5b3b1f;
    font-weight: 500;
}

.company-table dd {
    background: #fff;
    color: #444;
}

.company-table a {
    color: #8a6b43;
    text-decoration: none;
}

.company-table a:hover {
    text-decoration: underline;
}


/* =========================
   事業内容
========================= */

.business-content {
    max-width: 500px;
    margin: 0 auto;
}

.business-item {
    padding: 45px 35px;
    border: 1px solid #d8cfc4;
    text-align: center;
}

.business-item h3 {
    font-family: "Zen Old Mincho", serif;
    font-size: 24px;
    color: #5b3b1f;
    margin: 0 0 25px;
}

.business-item p {
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    margin: 0;
}


/* =========================
   催事・出店
========================= */

.event-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.event-text p {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 2.3;
    color: #444;
    margin-bottom: 30px;
}


/* Instagramボタン */
.instagram-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;

    background: #5b3b1f;
    color: #fff;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;

    text-decoration: none;
    letter-spacing: .08em;

    transition:
        background .3s ease,
        transform .3s ease;
}

.instagram-button:hover {
    background: #8a6b43;
    transform: translateY(-3px);
}

/* ========================================
   Coming Soon
======================================== */

.coming-soon-heading {
    position: relative;
    background: #f3eee5;
    overflow: hidden;
    padding: 25px 20px;
}

.coming-soon-heading-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coming-soon-heading-title {
    position: relative;
    z-index: 2;
    text-align: center;
}

.coming-soon-heading-title p {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: 0.25em;
    color: #8a6b43;
}

.coming-soon-heading-title h1 {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #493b2d;
}

.coming-soon-heading-image {
    width: 180px;
    margin-right: 5%;
    flex-shrink: 0;
}

.coming-soon-heading-image img {
    width: 100%;
    display: block;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 100px;
    background: #f8f5ef;
}

.coming-soon-inner {
    width: 100%;
    max-width: 700px;
    padding: 70px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #e2d8ca;
    box-shadow: 0 12px 40px rgba(73, 59, 45, 0.06);
    position: relative;
}

.coming-soon-inner::before,
.coming-soon-inner::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 1px;
    background: #8a6b43;
}

.coming-soon-inner::before {
    top: 25px;
}

.coming-soon-inner::after {
    bottom: 25px;
}

.coming-soon-lead {
    margin: 0 0 40px;
    color: #6c6258;
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 2.3;
    letter-spacing: 0.08em;
}

.coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.coming-soon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 48px;
    padding: 14px 28px;
    text-decoration: none;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    border: 1px solid transparent;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.coming-soon-button--primary {
    color: #fff;
    background: #8a6b43;
    border-color: #8a6b43;
}

.coming-soon-button--primary:hover {
    background: #6f5636;
    border-color: #6f5636;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 107, 67, 0.22);
}

.coming-soon-button--secondary {
    color: #493b2d;
    background: #fff;
    border-color: #c9b79f;
}

.coming-soon-button--secondary:hover {
    color: #fff;
    background: #8a6b43;
    border-color: #8a6b43;
    transform: translateY(-2px);
}

.coming-soon-button:focus-visible {
    outline: 2px solid #8a6b43;
    outline-offset: 3px;
}

.coming-soon-note {
    margin: 0;
    color: #8a7f74;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.coming-soon-note a {
    color: #8a6b43;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.coming-soon-note a:hover {
    color: #6f5636;
}

.coming-soon-note a:focus-visible {
    outline: 2px solid #8a6b43;
    outline-offset: 2px;
}

.pc-only {
    display: inline;
}

.shop-links a:focus-visible {
    outline: 2px solid #8a6b43;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon-button,
    .shop-links a {
        transition: none;
    }

    .coming-soon-button:hover,
    .coming-soon-button--primary:hover,
    .coming-soon-button--secondary:hover,
    .shop-links a:hover {
        transform: none;
    }
}

/* ハンバーガーボタン */ .hamburger { display: none; } 
/* モバイルメニュー */ .mobile-menu { display: none; }
.mb {display: none;}

/* ========================================
   index.php
======================================== */

.default-page {
    padding: 100px 20px;
}

.default-page__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.default-page__article {
    width: 100%;
}

.default-page__title {
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
}

.default-page__content {
    font-size: 16px;
    line-height: 2;
}

.default-page__content p {
    margin-bottom: 1.5em;
}

.default-page__message {
    text-align: center;
    font-size: 16px;
}


/* ========================================
   404ページ
======================================== */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.error-page__inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-page__number {
    margin: 0 0 10px;
    font-size: 80px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.error-page__title {
    margin: 0 0 30px;
    font-size: 28px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.error-page__text {
    margin: 0 0 40px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.05em;
}

.error-page__button {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.08em;
    transition: 0.3s;
}

.error-page__button:hover {
    background-color: #333;
    color: #fff;
}
/* ========================================
   本日の出店場所
======================================== */

.today-schedule {
    padding: 70px 20px;
    background: #f4f0e8;
}

.today-schedule-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 45px 40px;
    background: #fff;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #e5dfd4;
}

/* タイトル */
.today-schedule h2 {
    position: relative;
    margin: 0 0 35px;
    padding-bottom: 18px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #333;
}

.today-schedule h2 span {
    display: block;
    margin-bottom: 8px;
    font-family: serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 0.18em;
    color: #8b806f;
}

/* タイトル下の線 */
.today-schedule h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 45px;
    height: 1px;
    background: #8b806f;
    transform: translateX(-50%);
}

/* 日付 */
.today-date {
    margin: 0 0 18px;
    font-size: 17px;
    letter-spacing: 0.08em;
    color: #666;
}

/* 出店場所 */
.today-place {
    margin: 0 0 12px;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #333;
}

/* 営業時間 */
.today-time {
    margin: 0 0 28px;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #666;
}

/* Googleマップボタン */
.today-map {
    display: inline-block;
    min-width: 250px;
    padding: 14px 30px;
    box-sizing: border-box;

    background: #5c574e;
    color: #fff;

    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;

    transition: opacity 0.3s ease;
}

.today-map:hover {
    opacity: 0.75;
}

/* 出店予定がない場合 */
.today-none {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}
/* 次の出店場所 */
.next-schedule {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}
/* ========================================
   出店スケジュール 個別ページ
======================================== */

.schedule-single {
    background: #fff;
    color: #333;
}


/* ========================================
   ページタイトル
======================================== */

.schedule-single-header {
    background: #f3eee5;
    padding: 35px 20px;
    text-align: center;
}

.schedule-single-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-single-label {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: .25em;
    color: #8a6b43;
}

.schedule-single-header h1 {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .15em;
    line-height: 1.6;
    color: #493b2d;
}


/* ========================================
   出店詳細
======================================== */

.schedule-detail {
    padding: 80px 20px 100px;
    background: #f8f6f2;
}

.schedule-detail-inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}


/* ========================================
   出店情報カード
======================================== */

.schedule-detail-card {
    padding: 45px 50px;
    background: #fff;
    border: 1px solid #e2d8ca;
}


/* 日付 */

.schedule-detail-date {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #d8cfc4;
    text-align: center;
}

.schedule-date-label,
.schedule-item-label {
    display: block;
    margin-bottom: 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    color: #8a6b43;
    letter-spacing: .15em;
}

.schedule-detail-date p {
    margin: 0;
    font-family: "Zen Old Mincho", serif;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: .08em;
    color: #493b2d;
}


/* 出店場所・営業時間 */

.schedule-detail-item {
    padding: 20px 0;
    border-bottom: 1px solid #e8e2d9;
}

.schedule-detail-item:last-of-type {
    border-bottom: none;
}

.schedule-detail-item p {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: .05em;
    color: #444;
}

.schedule-place {
    font-weight: 500;
}


/* ========================================
   Googleマップボタン
======================================== */

.schedule-map {
    margin-top: 30px;
    text-align: center;
}

.schedule-map a {
    display: inline-block;
    min-width: 250px;
    padding: 14px 30px;
    box-sizing: border-box;

    background: #5b3b1f;
    color: #fff;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: .08em;
    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;
}

.schedule-map a:hover {
    background: #8a6b43;
    transform: translateY(-2px);
}
/* ========================================
   出店先公式サイトボタン
======================================== */

.schedule-place-url {
    margin-top: 15px;
    text-align: center;
}

.schedule-place-url a {
    display: inline-block;
    min-width: 250px;
    padding: 13px 30px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #5b3b1f;
    color: #5b3b1f;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: .08em;
    text-decoration: none;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.schedule-place-url a:hover {
    background: #5b3b1f;
    color: #fff;
    transform: translateY(-2px);
}


/* ========================================
   アイキャッチ画像
======================================== */

.schedule-thumbnail {
    margin-top: 50px;
}

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


/* ========================================
   本文
======================================== */

.schedule-content {
    margin-top: 50px;
    padding: 0 10px;
}

.schedule-content p {
    margin: 0 0 1.8em;
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    line-height: 2.3;
    letter-spacing: .05em;
    color: #444;
}

.schedule-content h2,
.schedule-content h3 {
    font-family: "Zen Old Mincho", serif;
    color: #493b2d;
    letter-spacing: .1em;
}

.schedule-content h2 {
    margin: 50px 0 25px;
    font-size: 26px;
    font-weight: 500;
}

.schedule-content h3 {
    margin: 40px 0 20px;
    font-size: 21px;
    font-weight: 500;
}


/* ========================================
   今後の出店予定へ戻る
======================================== */

.schedule-back {
    padding: 0 20px 100px;
    background: #f8f6f2;
}

.schedule-back-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.schedule-back a {
    display: inline-block;
    min-width: 240px;
    padding: 14px 30px;

    border: 1px solid #8a6b43;
    color: #5b3b1f;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: .08em;
    text-decoration: none;

    transition:
        background .3s ease,
        color .3s ease;
}

.schedule-back a:hover {
    background: #8a6b43;
    color: #fff;
}
/* ========================================
   出店スケジュール 一覧ページ
======================================== */


/* ========================================
   ページタイトル
======================================== */

.schedule-archive-header {
    padding: 60px 20px 55px;
    background: #f3eee5;
    text-align: center;
}

.schedule-archive-header-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.schedule-archive-label {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: .25em;
    color: #8a6b43;
}

.schedule-archive-header h1 {
    margin: 0;
    font-family: "Zen Old Mincho", serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1.6;
    color: #493b2d;
}

.schedule-archive-lead {
    margin: 25px 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    line-height: 2;
    letter-spacing: .05em;
    color: #555;
}


/* ========================================
   出店予定一覧
======================================== */

.schedule-list {
    padding: 70px 20px 100px;
    background: #f8f6f2;
}

.schedule-list-inner {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}


/* ========================================
   出店カード
======================================== */

.schedule-list-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-card {
    display: flex;
    align-items: stretch;

    background: #fff;
    border: 1px solid #e2d8ca;
}


/* ========================================
   日付
======================================== */

.schedule-card-date {
    flex: 0 0 125px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #f3eee5;
    color: #5b3b1f;
}

.schedule-card-month {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: .1em;
}

.schedule-card-day {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    line-height: 1;
}

.schedule-card-week {
    margin-top: 5px;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
}


/* ========================================
   出店情報
======================================== */

.schedule-card-info {
    flex: 1;
    padding: 25px 30px;
}

.schedule-card-title {
    margin: 0 0 15px;

    font-family: "Zen Old Mincho", serif;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.6;

    color: #493b2d;
}

.schedule-card-place,
.schedule-card-time {
    margin: 0 0 8px;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .03em;
    color: #555;
}

.schedule-card-time {
    margin-bottom: 20px;
}


/* ========================================
   詳細ボタン
======================================== */

.schedule-card-link {
    display: inline-block;

    color: #5b3b1f;

    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    letter-spacing: .08em;

    text-decoration: none;

    border-bottom: 1px solid #8a6b43;

    transition:
        color .3s ease,
        border-color .3s ease;
}

.schedule-card-link span {
    margin-left: 8px;
    transition: margin-left .3s ease;
}

.schedule-card-link:hover {
    color: #8a6b43;
    border-color: #5b3b1f;
}

.schedule-card-link:hover span {
    margin-left: 13px;
}


/* ========================================
   予定がない場合
======================================== */

.schedule-none {
    padding: 60px 20px;

    background: #fff;
    border: 1px solid #e2d8ca;

    text-align: center;
}

.schedule-none p {
    margin: 0;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    line-height: 2;
    letter-spacing: .05em;
    color: #555;
}

.schedule-none p + p {
    margin-top: 10px;
}


/* ========================================
   Instagram
======================================== */

.schedule-instagram {
    padding: 80px 20px;
    background: #f3eee5;
    text-align: center;
}

.schedule-instagram-inner {
    max-width: 760px;
    margin: 0 auto;
}

.schedule-instagram-label {
    margin: 0 0 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: .25em;
    color: #8a6b43;
}

.schedule-instagram h2 {
    margin: 0;

    font-family: "Zen Old Mincho", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .08em;

    color: #493b2d;
}

.schedule-instagram p:not(.schedule-instagram-label) {
    margin: 20px 0 30px;

    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    line-height: 2;
    letter-spacing: .05em;
    color: #555;
}

.schedule-instagram-button {
    display: inline-block;

    padding: 13px 35px;

    background: #5b3b1f;
    color: #fff;

    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    letter-spacing: .08em;

    text-decoration: none;

    transition: background .3s ease;
}

.schedule-instagram-button:hover {
    background: #8a6b43;
}


/* ========================================
   PC
======================================== */

@media (min-width: 768px) {

    .schedule-archive-header {
        padding: 90px 20px 75px;
    }

    .schedule-archive-header h1 {
        font-size: 40px;
    }

    .schedule-archive-lead {
        font-size: 15px;
    }

    .schedule-list {
        padding: 90px 20px 120px;
    }

    .schedule-card-date {
        flex-basis: 140px;
    }

    .schedule-card-info {
        padding: 30px 40px;
    }

    .schedule-card-title {
        font-size: 23px;
    }

    .schedule-instagram {
        padding: 100px 20px;
    }

}

/* ========================================
   スマートフォン対応
======================================== */

@media (max-width: 767px) {


    /* =========================
       全体
    ========================= */

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
    }

    .main-menu {
        display: none;
    }
    .mb {display: initial;}


    /* =========================
       ショップバナー
    ========================= */

    .top-banner {
        width: 100%;
        padding: 8px 5px;
    }

    .top-banner a {
        font-size: 11px;
        padding: 0 10px;
        white-space: nowrap;
    }


    .top-banner a + a {
        border-left: 1px solid rgba(255,255,255,.3);
    }


    /* =========================
       ヘッダー
    ========================= */

    .header_container {
        position: relative;

        display: flex;
        justify-content: center;
        align-items: center;

        padding: 25px 20px 10px;
    }


    /* ロゴ＋店名 */

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


    .logo img {
        width: 60px;
        margin-bottom: 6px;
    }


    .name p {
        font-size: 27px;
        letter-spacing: .12em;
    }


    .name p span {
        font-size: .36em;
        letter-spacing: .25em;
        margin-top: 4px;
    }

    /* =========================
       SNS
    ========================= */
    
    .sns_container {
        position: static;
    
        width: 100%;
        height: 42px;
    
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
    
        background: #5b3b1f;
    
        transform: none;
    }
    
    .sns_container a {
        display: block;
        line-height: 0;
    
        transition: opacity .3s ease, transform .3s ease;
    }
    
    .sns_container a:hover {
        opacity: .7;
        transform: translateY(-2px);
    }
    
    .sns_container a img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
    }

    /* ハンバーガーボタン */ 
    .hamburger { 
        display: flex; 
        position: fixed; 
        top: 20px; 
        right: 20px; 
        width: 50px; 
        height: 50px; 
        padding: 0; 
        margin: 0; 
        border: 1px solid #8a6b43; 
        border-radius: 50%; 
        background: rgba(255, 255, 255, 0.9); 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 5px; 
        cursor: pointer; 
        z-index: 1001; 
    }
    /* 三本線 */ 
    .hamburger span { 
        display: block; 
        width: 22px; 
        height: 1px; 
        background: #8a6b43; 
        transition: all 0.3s ease; 
    }
    /* メニュー表示時：三本線 → × */ 
    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg); 
    } 
    .hamburger.active span:nth-child(2) {
        opacity: 0; 
        visibility: hidden;
        transform: scaleX(0);
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg); 
    } 
    /* ========================= メニュー本体 ========================= */ 
    .mobile-menu { 
        display: block; 
        position: fixed; 
        top: 0; 
        right: 0; 
        width: 85%; 
        max-width: 400px; 
        height: 100vh; 
        background: #f8f5ef; 
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1); 
        transform: translateX(100%); 
        transition: transform 0.4s ease; 
        z-index: 1000; 
        overflow-y: auto; 
    } 
    /* メニューを開いた状態 */ 
    .mobile-menu.active { 
        transform: translateX(0); 
    } 
    /* メニュー内部 */ 
    .mobile-menu-inner { 
        padding: 100px 30px 50px; 
    } 
    /* メニューリンク */ 
    .mobile-menu-inner > a { 
        display: block; 
        padding: 18px 0; 
        border-bottom: 1px solid rgba(138, 107, 67, 0.25); 
        color: #4d4033; 
        font-family: "Noto Serif JP", serif; 
        font-size: 15px; 
        letter-spacing: 0.12em; 
        text-decoration: none; 
        transition: 0.3s; 
    } 
    .mobile-menu-inner > a:hover { 
        color: #8a6b43; 
        padding-left: 8px; 
    } 
    /* オンラインショップ */ 
    .mobile-menu-shop {
        margin-top: 40px;
        padding-top: 5px;
    }
    
    .mobile-menu-shop p {
        position: relative;
        display: inline-block;
        margin-bottom: 18px;
        padding-left: 15px;
        color: #8a6b43;
        font-family: "Noto Serif JP", serif;
        font-size: 13px;
        letter-spacing: 0.15em;
    }
    
    .mobile-menu-shop p::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 5px;
        height: 5px;
        background: #8a6b43;
        transform: translateY(-50%) rotate(45deg);
    }
    .mobile-menu-shop a {
        display: block;
        position: relative;
        padding: 9px 0 9px 18px;
        color: #555;
        font-size: 13px;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .mobile-menu-shop a::before {
        content: "→";
        position: absolute;
        left: 0;
        color: #8a6b43;
        transition: 0.3s;
    }
    
    .mobile-menu-shop a:hover {
        color: #8a6b43;
    }
    
    .mobile-menu-shop a:hover::before {
        transform: translateX(4px);
    }

    /* =========================
       Hero
    ========================= */

    .hero {
        width: 100%;
    }


    .hero-swiper {
        width: 100%;
        height: 65vh;
        min-height: 400px;
        max-height: 650px;
    }


    .hero-swiper .swiper-slide {
        width: 100%;
        height: 100%;
    }


    .hero-swiper .swiper-slide img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }


    /* 矢印 */

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 30px;
        height: 30px;
    }


    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
        font-size: 18px;
    }


    /* =========================
       About
    ========================= */

    .about {
        padding: 70px 8%;
        text-align: center;
    }


    .about h2 {
        font-size: 31px;
        line-height: 1.6;
        margin-bottom: 15px;
    }


    .about h3 {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 40px;
        letter-spacing: .08em;
    }


    .about p {
        width: 100%;
        max-width: none;

        font-size: 14px;
        line-height: 2.2;

        margin-bottom: 28px;
    }


    .about p br {
        display: none;
    }


    /* =========================
       こだわり
    ========================= */

    .kodawari_container {
        display: flex;
        flex-direction: column;

        gap: 0;

        padding: 70px 8%;
        background-position: bottom;
        background-image: url(images/kodawari-back2.jpg);
        background-size: 100vw;
    }


    /*
       PCでは縦書きでも、
       スマホでは横書きに戻す
    */

    .kodawari {
        width: 100%;

        writing-mode: horizontal-tb;

        text-align: left;
        padding: 0;
    }


    .kodawari h2 {
        font-size: 30px;

        text-align: center;

        margin: 0 0 40px;

        letter-spacing: .1em;
    }


    .kodawari h3 {
        font-size: 18px;

        margin: 0 0 20px;

        letter-spacing: .08em;

        line-height: 1.8;
    }


    .kodawari p {
        font-size: 14px;

        line-height: 2.1;

        margin: 0 0 40px;

        letter-spacing: .04em;
    }


    .kodawari p br {
        display: none;
    }


    /* 画像 */

    .kodawari-image {
        width: 100%;
        max-width: none;

        margin-top: 20px;
    }


    .kodawari-image img {
        width: 100%;
        height: 400px;

        object-fit: cover;
    }


    /* =========================
       ショップ
    ========================= */

    .shop {
        padding: 70px 8%;
    }


    .shop h2 {
        font-size: 27px;

        line-height: 1.7;

        margin-bottom: 20px;
    }


    .shop > p {
        font-size: 14px;

        line-height: 2;

        margin-bottom: 35px;
    }


    .shop > p br {
        display: none;
    }


    .shop-links {
        display: flex;

        flex-direction: column;

        align-items: center;

        width: 100%;

        gap: 15px;
    }


    .shop-links a {
        width: 100%;
        max-width: 400px;

        min-height: 90px;

        padding: 18px;
    }


    .shop-links span {
        font-size: 12px;
    }


    .shop-links strong {
        font-size: 16px;
    }

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

    .footer {
        padding-top: 50px;
    }


    /* =========================
       フッター全体
    ========================= */

    .footer-container {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 30px;

        padding: 0 8% 40px;
    }


    /* =========================
       ブランド
    ========================= */

    .footer-brand {
        text-align: center;
    }

    .footer-name p {
        font-size: 28px;

        margin-bottom: 5px;
    }

    .footer-name span {
        font-size: 12px;
    }


    /* =========================
       SNS
    ========================= */

    .footer-sns {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 13px;

        margin-top: 0;
    }

    .footer-sns a {
        display: block;
    }

    .footer-sns img {
        width: 24px;
        height: 24px;

        object-fit: contain;
    }


    /* =========================
       メニュー
    ========================= */

    .footer-menu {
        width: 100%;

        margin-top: 5px;
    }

    .footer-menu ul {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 14px;

        padding: 0;
        margin: 0;
    }

    .footer-menu li {
        list-style: none;
    }

    .footer-menu li a {
        font-size: 13px;
    }


    /* =========================
       コピーライト
    ========================= */

    .footer-bottom {
        padding: 20px 10px;

        text-align: center;
    }

    .footer-bottom p {
        font-size: 11px;
    }
    
/* ========================================
   company.html スマートフォン対応
======================================== */

    .company-heading {
        padding: 10px 20px 20px;
        overflow: hidden;
    }

    .company-heading-inner {
        position: relative;
        min-height: 90px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-title {
        position: relative;
        z-index: 2;
        text-align: center;
        padding-right: 100px;
    }

    .company-title p {
        margin-bottom: 8px;

        font-family: "Noto Serif JP", serif;
        font-size: 10px;
        letter-spacing: .2em;
        color: #8a6b43;
    }

    .company-title h1 {
        margin: 0;

        font-family: "Zen Old Mincho", serif;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: .15em;
        color: #5b3b1f;
    }

    .company-image {
        position: absolute;

        right: -35px;
        bottom: -20px;

        width: 120px;

        opacity: .85;
        z-index: 1;
    }

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


    /* =========================
       共通セクションタイトル
    ========================= */

    .section-title {
        margin-bottom: 40px;
        text-align: center;
    }

    .section-title .section-en {
        margin-bottom: 5px;

        font-family: "Noto Serif JP", serif;
        font-size: 12px;
        letter-spacing: .18em;
        color: #8a6b43;
    }

    .section-title h2 {
        margin: 0;

        font-family: "Zen Old Mincho", serif;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: .12em;
        color: #5b3b1f;
    }


    /* =========================
       代表挨拶
    ========================= */

    .greeting {
        padding: 70px 20px;
    }

    .greeting-content {
        width: 100%;
    }

    .greeting-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .greeting-text p {
        margin: 0 0 30px;

        font-family: "Noto Serif JP", serif;
        font-size: 14px;
        line-height: 2.2;
        letter-spacing: .05em;
        color: #444;
    }

    .greeting-text p:last-child {
        margin-bottom: 0;
    }


    /* =========================
       会社概要
    ========================= */

    .company-info {
        padding: 70px 20px;
    }

    .company-table {
        width: 100%;
        max-width: none;
    }

    /*
       PCでは
       dt 220px + dd 1fr
       ↓
       スマホでは縦並び
    */

    .company-table dl {
        display: block;
        margin: 0;

        border-top: 1px solid #d8cfc4;
    }

    .company-table dt,
    .company-table dd {
        display: block;

        width: 100%;

        padding: 13px 15px;

        font-family: "Noto Serif JP", serif;
        font-size: 14px;
        line-height: 1.8;

        border-bottom: 0;
    }

    .company-table dt {
        background: #eee9e2;

        color: #5b3b1f;
        font-weight: 500;

        padding-bottom: 8px;
    }

    .company-table dd {
        background: #fff;

        color: #444;

        padding-top: 8px;
        padding-bottom: 18px;

        border-bottom: 1px solid #d8cfc4;
    }

    .company-table a {
        color: #8a6b43;
        word-break: break-all;
    }


    /* =========================
       事業内容
    ========================= */

    .business {
        padding: 70px 20px;
    }

    .business-content {
        width: 100%;
        max-width: none;
    }

    .business-item {
        padding: 35px 20px;

        border: 1px solid #d8cfc4;
    }

    .business-item h3 {
        margin: 0 0 20px;

        font-family: "Zen Old Mincho", serif;
        font-size: 20px;
        font-weight: 500;

        color: #5b3b1f;
        letter-spacing: .08em;
    }

    .business-item p {
        margin: 0;

        font-family: "Noto Serif JP", serif;
        font-size: 13px;
        line-height: 2.1;

        color: #555;
    }


    /* =========================
       催事・出店
    ========================= */

    .event-info {
        padding: 70px 20px;
    }

    .event-text {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .event-text p {
        margin-bottom: 25px;

        font-family: "Noto Serif JP", serif;
        font-size: 14px;
        line-height: 2.1;

        color: #444;
    }

    .instagram-button {
        display: inline-block;

        margin-top: 10px;
        padding: 13px 22px;

        background: #5b3b1f;
        color: #fff;

        font-family: "Noto Serif JP", serif;
        font-size: 13px;

        letter-spacing: .05em;
        text-decoration: none;

        transition:
            background .3s ease,
            transform .3s ease;
    }
    /****/
    /* 準備中ページ */
    .coming-soon-heading {
        padding: 10px 20px 20px;
    }

    .coming-soon-heading-inner {
        position: relative;
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .coming-soon-heading-title h1 {
        font-size: 24px;
    }

    .coming-soon-heading-image {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 90px;
        margin-right: 0;
        opacity: 0.35;
    }

    .coming-soon {
        padding: 60px 15px 70px;
    }

    .coming-soon-inner {
        padding: 55px 20px;
    }

    .coming-soon-inner::before {
        top: 20px;
    }

    .coming-soon-inner::after {
        bottom: 20px;
    }

    .coming-soon-lead {
        font-size: 13px;
        line-height: 2.2;
        letter-spacing: 0.05em;
        margin-bottom: 32px;
    }

    .coming-soon-lead .pc-only {
        display: none;
    }

    .coming-soon-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .coming-soon-button {
        width: 100%;
        min-width: 0;
        padding: 13px 20px;
        font-size: 12px;
    }

    .coming-soon-note {
        font-size: 12px;
    }
    /*index.php*/
    .default-page {
        padding: 70px 20px;
    }

    .default-page__title {
        margin-bottom: 35px;
        font-size: 26px;
    }

    .default-page__content {
        font-size: 15px;
    }
    /*404ページ*/
    .error-page {
        min-height: 65vh;
        padding: 70px 20px;
    }

    .error-page__number {
        font-size: 60px;
    }

    .error-page__title {
        margin-bottom: 25px;
        font-size: 22px;
    }

    .error-page__text {
        font-size: 14px;
        line-height: 1.9;
    }

    .error-page__button {
        padding: 14px 35px;
        font-size: 13px;
    }
    
/* ========================================
   本日の出店場所
======================================== */
    .today-schedule {
        padding: 45px 15px;
    }

    .today-schedule-inner {
        padding: 35px 20px;
    }

    .today-schedule h2 {
        font-size: 22px;
    }

    .today-schedule h2 span {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .today-date {
        margin-bottom: 15px;
        font-size: 15px;
    }

    .today-place {
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 1.7;
    }

    .today-time {
        margin-bottom: 25px;
        font-size: 14px;
    }

    .today-map {
        width: 100%;
        min-width: 0;
        padding: 14px 15px;
        font-size: 13px;
    }
    /* ========================================
       出店場所個別ページ
    ======================================== */

    .schedule-single-header {
        padding: 25px 20px 30px;
    }

    .schedule-single-label {
        margin-bottom: 5px;
        font-size: 11px;
        letter-spacing: .2em;
    }

    .schedule-single-header h1 {
        font-family: "Zen Old Mincho", serif;
        font-size: 22px;
        line-height: 1.7;
        letter-spacing: .1em;
    }


    /* ========================================
       出店詳細
    ======================================== */

    .schedule-detail {
        padding: 50px 20px 70px;
    }

    .schedule-detail-inner {
        width: 100%;
    }


    /* 情報カード */

    .schedule-detail-card {
        padding: 30px 20px;
    }


    /* 日付 */

    .schedule-detail-date {
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .schedule-date-label,
    .schedule-item-label {
        margin-bottom: 6px;
        font-size: 11px;
        letter-spacing: .12em;
    }

    .schedule-detail-date p {
        font-size: 20px;
        line-height: 1.7;
        letter-spacing: .05em;
    }


    /* 出店場所・営業時間 */

    .schedule-detail-item {
        padding: 18px 0;
    }

    .schedule-detail-item p {
        font-size: 15px;
        line-height: 1.9;
    }


    /* Googleマップ */

    .schedule-map {
        margin-top: 25px;
    }

    .schedule-map a {
        width: 100%;
        min-width: 0;
        padding: 13px 20px;
        font-size: 13px;
    }

    /* 出店先公式サイト */
    
    .schedule-place-url {
        margin-top: 12px;
    }
    
    .schedule-place-url a {
        width: 100%;
        min-width: 0;
        padding: 12px 20px;
        font-size: 13px;
    }


    /* ========================================
       アイキャッチ
    ======================================== */

    .schedule-thumbnail {
        margin-top: 35px;
    }


    /* ========================================
       本文
    ======================================== */

    .schedule-content {
        margin-top: 35px;
        padding: 0;
    }

    .schedule-content p {
        font-size: 14px;
        line-height: 2.2;
        letter-spacing: .03em;
    }

    .schedule-content h2 {
        margin: 40px 0 20px;
        font-size: 22px;
    }

    .schedule-content h3 {
        margin: 35px 0 15px;
        font-size: 19px;
    }


    /* ========================================
       戻るボタン
    ======================================== */

    .schedule-back {
        padding: 0 20px 70px;
    }

    .schedule-back a {
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
        padding: 13px 20px;
        font-size: 13px;
    }
    

/* ========================================
   出店場所一覧
======================================== */
    .schedule-archive-header {
        padding: 40px 20px 35px;
    }

    .schedule-archive-label {
        font-size: 11px;
        letter-spacing: .2em;
    }

    .schedule-archive-header h1 {
        font-size: 26px;
        letter-spacing: .08em;
    }

    .schedule-archive-lead {
        margin-top: 18px;
        font-size: 13px;
        line-height: 2;
    }


    /* 出店一覧 */

    .schedule-list {
        padding: 50px 20px 70px;
    }

    .schedule-list-items {
        gap: 15px;
    }


    /* カードを縦型にする */

    .schedule-card {
        display: block;
    }


    /* 日付 */

    .schedule-card-date {
        min-height: auto;
        padding: 12px 15px;

        flex-direction: row;
        justify-content: flex-start;
        gap: 5px;
    }

    .schedule-card-month {
        font-size: 13px;
    }

    .schedule-card-day {
        font-size: 28px;
    }

    .schedule-card-week {
        margin-top: 4px;
        font-size: 12px;
    }


    /* 情報 */

    .schedule-card-info {
        padding: 20px;
    }

    .schedule-card-title {
        margin-bottom: 12px;
        font-size: 19px;
        line-height: 1.7;
    }

    .schedule-card-place,
    .schedule-card-time {
        font-size: 13px;
        line-height: 1.8;
    }

    .schedule-card-time {
        margin-bottom: 18px;
    }


    /* 詳細リンク */

    .schedule-card-link {
        font-size: 12px;
    }


    /* 予定なし */

    .schedule-none {
        padding: 45px 20px;
    }

    .schedule-none p {
        font-size: 13px;
    }


    /* Instagram */

    .schedule-instagram {
        padding: 60px 20px;
    }

    .schedule-instagram-label {
        font-size: 11px;
    }

    .schedule-instagram h2 {
        font-size: 20px;
        line-height: 1.8;
    }

    .schedule-instagram p:not(.schedule-instagram-label) {
        font-size: 13px;
    }

    .schedule-instagram-button {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
        padding: 13px 20px;
    }
}