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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}

.sp-only {
	display: none;
}

@media (max-width: 480px) {
	.sp-only {
		display: inherit;
	}
}

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

/* ヘッダー（上部固定） */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0));
    transition: all 0.3s ease;
}

.fixed-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ヘッダーセカンド以降（上部固定） */
body.second .fixed-header {
    background-color: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}



.fixed-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. ヒーローセクション（フルスクリーン） */
.hero-fullscreen {
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* 左半分の背景 */
.hero-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* 右半分の背景 */
.hero-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}



.hero-swiper-left .swiper-wrapper,
.hero-swiper-right .swiper-wrapper {
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    width: 100% !important;
    height: 100% !important;
    position: relative;
}

/* ヒーロースライダーのシンプル設定 */
.hero-swiper-left,
.hero-swiper-right {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-swiper-left .swiper-wrapper,
.hero-swiper-right .swiper-wrapper {
    height: 100%;
    overflow: hidden;
}

.hero-swiper-left .swiper-slide,
.hero-swiper-right .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    /*background-color: #644C49;*/
    color: white;
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    z-index: 10;
}

/* ヒーロースライダー2枚目以降のオーバーレイ */
.hero-slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    z-index: 1;
    pointer-events: none;
}

.hero-slide-overlay .hero-caption {
    z-index: 2;
}












/* ヒーローロゴ */
.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: heroFadeInUp 2s ease-out 0.5s forwards;
    max-height: 100vh;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-vertical-text {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: white;
    font-size: 2.85rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
    line-height: 1.5;
    text-shadow:
        -2px -2px 0 #B28146,
        2px -2px 0 #B28146,
        -2px 2px 0 #B28146,
        2px 2px 0 #B28146,
        -2px 0 0 #B28146,
        2px 0 0 #B28146,
        0 -2px 0 #B28146,
        0 2px 0 #B28146;
    z-index: 2;
    height: auto;
    min-height: 77.5vh;
}

.hero-vertical-text .text-space {
    display: inline-block;
    height: 0.5rem;
}

.main-logo {
    max-width: 1000px;
    width: 100%;
    height: auto;
    max-height: 52.5vh;
    transform: scale(1);
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.hero-catchphrase {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0 0 2rem 0;
    letter-spacing: 0.15em;
}

.hero-period {
    text-align: center;
    color: #644C49;
    background: #aec0c2ed;
    padding: 0.5rem 1rem 1rem;
    border-radius: 8px;
    backdrop-filter: none;
    box-shadow: none;
}

.hero-period p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    line-height: 1.8;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white,
        -1px 0 0 white,
        1px 0 0 white,
        0 -1px 0 white,
        0 1px 0 white;
}

.hero-date .date-number {
    font-size: 2.4rem;
}

.hero-period .hero-description {
    font-size: 1rem;
}

/* ヒーローキャッチコピー */
.hero-catchcopy {
    text-align: center;
    color: white;
    background: #9f9e9e99;
    padding: 1rem 2rem;
    /* border-radius: 0; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    margin-top: 1rem;
}

.hero-catchcopy .catchcopy-main {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    line-height: 1.6;
    text-shadow: none;
}

.hero-catchcopy .catchcopy-sub {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.4rem;
    line-height: 1.6;
    text-shadow: none;
}

.logo img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
	vertical-align: sub;
}

.fixed-header.scrolled .logo img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(15%) saturate(600%) hue-rotate(358deg) brightness(95%) contrast(90%);
}

body.second .fixed-header .logo img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(15%) saturate(600%) hue-rotate(358deg) brightness(95%) contrast(90%);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.nav-links a:hover {
    color: #B28146;
}

.fixed-header.scrolled .nav-links a {
    color: #333333;
}

.fixed-header.scrolled .nav-links a:hover {
    color: #B28146;
}

body.second .nav-links a {
    color: #333333;
}

.instagram-nav-link {
    color: white !important;
    font-size: 1.2rem !important;
    transition: transform 0.3s ease, color 0.3s ease;
}

.fixed-header.scrolled .instagram-nav-link:hover {
    color: #7dc383 !important;
    transform: scale(1.1);
}

.fixed-header.scrolled .instagram-nav-link {
    color: #333333 !important;
}

body.second .instagram-nav-link {
    color: #333333 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.fixed-header.scrolled .hamburger span {
    background: #644C49;
}

body.second .fixed-header .hamburger span {
    background: #644C49;
}

/* ハンバーガーメニューアニメーション */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* モバイルナビゲーション */
.nav-links {
    transition: all 0.3s ease;
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 70%);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    animation: slideInDown 0.3s ease;
}

.nav-links.active li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links.active a {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    text-align: center;
    display: inline-block;
}

.nav-links.active li:nth-child(1) a { animation-delay: 0.1s; }
.nav-links.active li:nth-child(2) a { animation-delay: 0.2s; }
.nav-links.active li:nth-child(3) a { animation-delay: 0.3s; }
.nav-links.active li:nth-child(4) a { animation-delay: 0.4s; }
.nav-links.active li:nth-child(5) a { animation-delay: 0.5s; }
.nav-links.active li:nth-child(6) a { animation-delay: 0.6s; }

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}








/* 2. お知らせセクション（左右分割） */
.news-section {
    padding: 4rem 0;
    background: #F4F3EB;
}

.news-section .container {
    max-width: 100%;
    padding: 0;
}

.news-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

/* 左右分割コンテナ */
.news-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

/* 左側：ニュース */
.news-left {
    background: transparent;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-left h3 {
    color: #644C49;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.news-list {
    list-style: none;
    margin-bottom: 2rem;
}

.news-list-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.news-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-date {
    color: #B28146;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    flex-shrink: 0;
}

.news-content h4 {
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-content h4 a.news-link {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h4 a.news-link:hover {
    color: #B28146;
}

.news-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.news-content p > a.news-link {
    color: #B28146 !important;
    text-decoration: underline !important;
    transition: color 0.3s;
}

.news-content p > a.news-link:hover {
    color: #644C49 !important;
}

.news-more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.news-more-link:hover {
    color: #e5591e;
}

/* 右側：Instagram */
.news-right {
    background: transparent;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news-right h3 {
    color: #644C49;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.instagram-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
}


.instagram-thumbnail {
    width: 120px;
    height: 120px;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: block;
}

.instagram-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}





/* 3. 概要セクション */
.overview-section {
    padding: 4rem 0;
    background: #D9D1C5;
}

.overview-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
}

.overview-catch {
    font-size: 1.5rem;
    font-weight: 600;
    color: #B28146;
    margin-bottom: 2rem;
    line-height: 1.6;
    letter-spacing: 0.05rem;
    text-align: center;
}

.overview-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: left;
}

.overview-content p:last-child {
    margin-bottom: 0;
}

/* 東京都エコ農産物のキーワードセクション */
a.eco-links {
	font-size: 1.2rem;
	color: #B28146;
}

.eco-keywords-section {
    margin-top: 5rem;
    padding: 0 0 3rem 0;
    background: #FFFFFFCC;
    border-radius: 5px;
}

.eco-keywords-title {
    font-size: 1.2rem;
    font-weight: 600;
    background: #644C49;
    color: white;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
    letter-spacing: 0.05rem;
}

.eco-mark-info {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
    padding: 0 2rem;
}

.eco-mark-icon {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
}

.eco-mark-info p:first-of-type {
    font-size: 0.9rem;
    color: #4C4948;
    font-weight: 500;
    margin-bottom: 2rem;
}

.eco-mark-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.eco-levels {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

.eco-level-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    /* background: white; */
    /* padding: 2rem 1.5rem; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.eco-level-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4C4948;
    background: #AEC0C2;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.1;
    position: relative;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white,
        -1px 0 0 white,
        1px 0 0 white,
        0 -1px 0 white,
        0 1px 0 white;
}

.eco-level-item h4::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    z-index: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><circle cx="70" cy="70" r="67" fill="none" stroke="white" stroke-width="3" stroke-dasharray="5 6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.eco-level-item h4 > * {
    position: relative;
    z-index: 1;
}

.eco-level-item h4 .eco-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.eco-level-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 4. イベントセクション（固定背景画像） */
.events-section {
    min-height: 100vh;
    background: url('../images/img_event_bg.webp') center/cover fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.events-overlay {
    background: rgb(226 229 88 / 20%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
}

.events-overlay .container {
    background: rgb(244 243 235);
    padding: 4rem 3rem;
    border-radius: 20px;
    max-width: 1100px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.events-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #467c6d;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.events-section h2 img {
	max-width: 640px;
	filter:
    brightness(0) saturate(100%)
    invert(45%) sepia(20%) saturate(600%)
    hue-rotate(120deg) brightness(92%) contrast(90%);
}

/* イベントヘッダー */
.event-header {
    text-align: center;
    margin-bottom: 4rem;
}

.event-header h3 {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

/* 日時・場所ボックス */
.event-date-box {
    padding: 2rem 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    display: inline-block;
    min-width: 600px;
}

.event-date-main {
    display: flex;
	flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.date-text {
    font-size: 3.6rem;
    color: #644C49;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.date-text i {
	font-style: normal;
	font-size: 1.8rem;
}

.location-text {
    font-size: 2.25rem;
    color: #644C49;
    font-weight: 600;
}

.location-remark {
    font-size: 1rem;
    color: #B28146;
    font-weight: 600;
}

a.event-link {
	color: #B28146;
}

/* トークショーセクション */
.event-talk-section {
    margin-bottom: 4rem;
}

.section-title-large {
    font-size: 2.25rem;
    color: #467c6d;
    font-weight: 600;
    margin-bottom: 0;
    display: block;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    color: #467c6d;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.section-title2 {
    font-size: 1.5rem;
    color: #467c6d;
    font-weight: 600;
    margin-top: 2rem;
    display: block;
    text-align: center;
}

.talk-intro {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #333;
    text-align: center;
    margin: 2rem 0 3rem 0;
    font-weight: 500;
}

/* ゲストカード */
.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.guest-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.guest-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-info {
    padding: 1.5rem;
}

.guest-info h5 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.guest-title {
    font-size: 0.85rem;
    color: #B28146;
    font-weight: 500;
    margin-bottom: 1rem;
}

.guest-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* その他イベントメッセージ */
.event-other-section {
    background: linear-gradient(135deg, #467c6d 0%, #357a52 100%);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(66, 173, 109, 0.3);
}

.event-message {
    font-size: 1.15rem;
    color: white;
    line-height: 2;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* マルシェ・キッチンカー */
.event-additional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.additional-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.additional-content {
    text-align: center;
}

.additional-content img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.additional-content p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

/* キッチンカーグリッド */
.kitchen-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.kitchen-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.kitchen-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.kitchen-info {
    padding: 1rem;
}

.kitchen-name {
    font-size: 1rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.kitchen-menu {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* 4. 販売拠点セクション */
.locations-section {
    background: white;
}

/* フルスクリーンスライダー */
.locations-fullscreen-slider {
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.locations-swiper {
    width: 100%;
    height: 400px;
}

.location-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.slide-overlay {
    padding: 3rem;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.slide-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.05rem;
}

.slide-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.05rem;
}

.slide-overlay-brown h3,
.slide-overlay-brown p {
    color: #644C49;
}

/* Swiper Navigation for Image Slider */
.locations-swiper .swiper-button-next,
.locations-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    margin-top: -25px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

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

.locations-swiper .swiper-button-next:hover,
.locations-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    transform: scale(1.1);
}

.locations-swiper .swiper-pagination {
    bottom: 30px;
}

.locations-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.locations-swiper .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* 詳細情報エリア */
.locations-info-section {
    padding: 4rem 0 0 0;
    background: #F4F3EB;
}

.locations-info-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.locations-main-logo {
    display: block;
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 2rem auto 3rem;
}

.locations-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-catch {
    font-size: 2rem;
    font-weight: 600;
    color: #644C49;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0.05rem;
}

.intro-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #644C49;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1rem;
}

.locations-intro p {
    font-size: 1rem;
    line-height: 2;
    color: #666;
    text-align: left;
}

/* エリア紹介セクション */
.area-introduction {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.area-introduction > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #333333;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
}

.area-intro-title {
    font-size: 2rem;
    font-weight: 600;
    color: #644C49;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.area-item {
    background: white;
    padding: 0;
    border-radius: 10px;
    border: 2px solid #644C49;
    overflow: hidden;
}

.area-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #644C49;
    padding: 0.5rem;
    margin: 0 0 1rem 0;
    letter-spacing: 0.05rem;
    text-align: center;
}

.area-item p {
    font-size: 0.95rem;
    color: #644C49;
    line-height: 1.8;
    margin: 0;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ピックアップイベントセクション */
.pickup-events {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pickup-events-title {
    font-size: 2rem;
    font-weight: 600;
    color: #467C6D;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}

.pickup-events-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.15rem;
}

.pickup-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pickup-event-item {
    background: white;
    border-radius: 5px;
    border: 2px solid #467C6D;
    box-shadow: 0 2px 10px rgba(70, 124, 109, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
}

.pickup-event-image {
    grid-row: 1;
    grid-column: 1;
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.pickup-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-event-content {
    grid-row: 1;
    grid-column: 2;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pickup-event-date {
    background: #467C6D;
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
}

.pickup-event-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05rem;
}

.event-description {
    grid-row: 2;
    grid-column: 1 / 3;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 1.2rem;
}

.event-details {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #467C6D;
}

.event-date {
    font-size: 1.1rem;
    color: #467C6D;
    margin-bottom: 1rem;
}

.event-date strong {
    font-weight: 600;
}

.event-details p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.event-details p:not(.event-date) {
    margin-top: 0.5rem;
}

/* 加工品セクション */
.processed-foods {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.processed-foods-title {
    font-size: 2rem;
    font-weight: 600;
    color: #B28146;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
}

.processed-foods-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.15rem;
}

.processed-foods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.processed-food-item {
    background: white;
    border-radius: 5px;
    border: 2px solid #B28146;
    box-shadow: 0 2px 10px rgba(70, 124, 109, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
}

.processed-food-image {
    grid-row: 1;
    grid-column: 1;
    width: 200px;
    height: auto;
    overflow: hidden;
}

.processed-food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.processed-food-content {
    grid-row: 1;
    grid-column: 2;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.processed-food-date {
    background: #B28146;
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    width: fit-content;
}

.processed-food-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.05rem;
	line-height: 1.35;
}

.processed-food-description {
    grid-row: 2;
    grid-column: 1 / 3;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 1.2rem;
}

.processed-food-description span{
    font-size: 0.75rem;
	color: #B28146;
}

.processed-food-details p:not(.processed-food-date) {
    margin-top: 0.5rem;
}

/* メイン拠点情報レイアウト */
.main-location-info {
    width: 100%;
    margin: 3rem 0 0 0;
    padding: 3rem 0;
    background: white;
}

.main-location-info .location-info-card {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.location-info-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.location-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.location-info-header {
    padding: 2rem 2rem 1rem;
}

.location-info-header h2 {
    font-size: 2rem;
    color: #333333;
    margin-bottom: 1rem;
    text-align: center;
}

.location-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #7dc383;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-details {
    padding: 1.5rem 2rem;
    background: #ffffff;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: #333333;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.detail-item strong {
    display: block;
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.detail-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.85rem;
}

.period-date {
    font-size: 1.1rem;
    font-weight: 600;
}

.location-map-fullwidth {
    width: 100%;
    margin-left: 0;
}

.location-map-fullwidth iframe {
    display: block;
    width: 100%;
}

/* 5. カレンダーセクション */
.calendar-section {
    padding: 4rem 0;
    background: #F4F3EB;
}

.calendar-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.calendar-month {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.calendar-month h3 {
    font-size: 1.2rem;
    color: #333333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #467C6D;
}

.calendar-table {
    width: 100%;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-day {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    padding: 0.5rem 0;
}

.calendar-day:first-child {
    color: #c85a5a;
}

.calendar-day:last-child {
    color: #6b8ba8;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #333;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: default;
    position: relative;
}

.calendar-date:not(.empty):hover {
    background: #f0f0f0;
}

.calendar-date.empty {
    background: transparent;
}

/* イベント種別のカラー定義 */
.calendar-date.event-opening {
    background: #467C6D;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.calendar-date.event-opening:hover {
    background: #3a6a5c;
    z-index: 10;
}

.calendar-date.event-fair {
    background: #D9D1C5;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.calendar-date.event-fair:hover {
    background: #ccc3b5;
    z-index: 10;
}

.calendar-date.event-special {
    background: #B28146;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.calendar-date.event-special:hover {
    background: #a0723c;
    z-index: 10;
}

.calendar-date.event-experience {
    background: #AEC0C2;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.calendar-date.event-experience:hover {
    background: #9eafb1;
    z-index: 10;
}

.calendar-date.event-closed {
    background: #999999;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.calendar-date.event-closed:hover {
    background: #777777;
    z-index: 10;
}

/* ツールチップはJavaScriptで動的に生成（HTML対応） */
.calendar-tooltip {
    line-height: 1.5;
}

.calendar-tooltip img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 0.5rem 0;
}

.calendar-tooltip h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.calendar-tooltip p {
    margin: 0.25rem 0;
    font-size: 0.8rem;
}

.calendar-legend {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.event-opening {
    background: #467C6D;
}

.legend-color.event-fair {
    background: #D9D1C5;
}

.legend-color.event-special {
    background: #B28146;
}

.legend-color.event-experience {
    background: #AEC0C2;
}

.legend-color.event-closed {
    background: #999999;
}

/* 6. お問い合わせセクション */
.contact-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin: 0.5rem 0;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-button {
    background: white;
    color: #000000;
    padding: 30px 60px;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-button:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.location-poster-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.location-poster-container img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.online-store-button {
    background: white;
    color: #000000;
    padding: 30px 60px;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.online-store-button:hover {
    background: #f5f5f5;
}

/* 6. リンクセクション */
.links-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.links-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.link-item {
    display: block;
    overflow: hidden;
    transition: transform 0.3s;
}

.link-item:hover {
    transform: scale(1.05);
}

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

.links-footer-logo {
    text-align: center;
    margin-top: 3rem;
}

.links-footer-logo img {
    height: 24px;
    width: auto;
}

.links-operation-info {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}

.links-operation-info p {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 7. フッターセクション */
.footer-section {
    background: #D9D1C5;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main img {
    height: 18px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(30%) sepia(5%) saturate(1000%) hue-rotate(358deg) brightness(95%) contrast(85%);
}

.footer-main p {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #7dc383;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-links ul li a {
    color: #4C4948;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links ul li a:hover {
    color: #4C4948;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #644C49;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    font-weight: 300;
    color: #4C4948;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    margin: 0.5rem 0;
}

.footer-bottom .footer-operation-info {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
}

.privacy-link {
    color: #4C4948;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.privacy-link:hover {
    color: #4C4948;
    opacity: 0.7;
}

/* レスポンシブデザイン */
@media (max-width: 1440px) {
.hero-vertical-text {
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    line-height: 1.5;
    min-height: 70vh;
}
}


@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
	
    .fixed-header.scrolled .hamburger.active span {
        background: #644C49;
    }
	
    .fixed-header.scrolled .hamburger.active span {
        background: #FFF;
    }
	
    .second .fixed-header .hamburger.active span {
        background: #FFF;
    }
	
	.second .fixed-header .instagram-nav-link {
    color: #333333 !important;
	}
	
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
	/*
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
	*/

.fixed-header.scrolled .instagram-nav-link {
    color: #FFF !important;
}

	
/* ヒーローセクション */

	
.hero-period {
    text-align: center;
    padding: 0.5rem 1rem 1rem;
}

.hero-period p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    line-height: 1.8;
}

.hero-date .date-number {
    font-size: 1.2rem;
}

.hero-period .hero-description {
    font-size: 1rem;
}

.hero-catchcopy {
    text-align: center;
    padding: 1rem 1rem;
    margin-top: 1rem;
}

.hero-catchcopy .catchcopy-main {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.08rem;
    line-height: 1.6;
    text-shadow: none;
}

.hero-catchcopy .catchcopy-sub {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    line-height: 1.6;
    text-shadow: none;
}


    /* エコキーワードセクション */
    .eco-keywords-title {
        font-size: 1.2rem;
    }

    .eco-mark-icon {
		width: auto;
        height: 140px;
    }
	
	.eco-mark-info p {
		font-size: 0.85rem;
		max-width: inehrit;

	}

    .eco-levels {
        gap: 1.5rem;
    }

    .eco-level-item {
        min-width: 100%;
    }

    .eco-level-item h4 {
        font-size: 1.3rem;
    }
	
	.eco-level-item p {
		font-size: 0.85rem;
	}

    /* エリア紹介セクション */
	
	
    .area-intro-title {
        font-size: 1.2rem;
    }
	
	.area-introduction > p {
		font-size: 0.85rem;
	}

    .area-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-item h4 {
        font-size: 1.2rem;
    }

    /* ピックアップイベント */
    .pickup-events-title {
        font-size: 1.2rem;
    }
	
	.pickup-events-subtitle {
		font-size: 0.85rem;
	}

    .pickup-events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pickup-event-image {
        height: 125px;
    }

    .pickup-event-content {
        padding: 1rem;
    }

    .pickup-event-item h4 {
        font-size: 1.2rem;
		line-height: 1.25;
    }

	.event-description {
		padding: 0.75rem;
		font-size: 0.85rem;

	}
	
    /* 加工品 */
    .processed-foods-title {
        font-size: 1.2rem;
    }
	
	.processed-foods-subtitle {
		font-size: 0.85rem;
	}

    .processed-foods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .processed-food-image {
        height: 125px;
    }

    .processed-food-content {
        padding: 1rem;
    }

    .processed-food-item h4 {
        font-size: 1.2rem;
		line-height: 1.25;
    }

	.processed-food-description {
		padding: 0.75rem;
		font-size: 0.85rem;

	}
	
    /* スライドオーバーレイ */
	.slide-overlay {
		padding: 2rem 1.5rem;
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: left;
	}

    .slide-overlay h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .slide-overlay p {
        font-size: 0.85rem;
    }
	
    /* スライダーサイズ調整 */
    .locations-fullscreen-slider {
        margin: 2rem 0;
    }

    .locations-swiper {
        height: 150px;
    }

    .location-slide {
        //justify-content: center;
        align-items: flex-end;
    }

    /* 縦書きテキスト非表示 */
    .hero-vertical-text {
        display: none;
    }

    /* モバイルでは縦に分割 */
    .hero-bg-left {
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
    }

    .hero-bg-right {
        width: 100%;
        height: 50%;
        top: 50%;
        right: 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .news-split-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-left,
    .news-right {
        padding: 2rem;
    }

    .instagram-thumbnail {
        width: 100px;
        height: 100px;
    }


    .events-overlay .container {
        padding: 2.5rem 1.5rem;
    }

    .events-section h2 {
        font-size: 1.85rem;
        line-height: 1.3;
    }

    .event-header h3 {
        font-size: 1.5rem;
    }

    .event-date-box {
        min-width: auto;
        width: 100%;
        padding: 1.5rem 1rem;
    }
	
	.section-title-large {
		font-size: 1.5rem;
	}
	
	.guest-description {
		font-size: 0.75rem;
	}
	
	.event-other-section {
		padding: 1rem;
		
	}
	
	.event-message {
		font-size: 0.85rem;
	}
	
	.section-title2 {
		font-size: 1.2rem;
	}
	
	.additional-content p {
		font-size: 0.85rem;
		font-weight: 500;
	}

    .date-text {
        font-size: 1.8rem;
    }

    .location-text {
        font-size: 1.2rem;
    }

    .date-icon,
    .location-icon {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .talk-intro {
        font-size: 1rem;
    }

    .guests-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guest-image {
        height: 200px;
    }

    .event-additional {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .additional-content img {
        max-width: 100%;
    }

    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }

    .locations-swiper .swiper-button-next,
    .locations-swiper .swiper-button-prev {
        display: none;
    }


    .location-info-content {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

}

@media (max-width: 480px) {
	
	.main-logo {
		max-width: 480px;
		width: 100%;
		height: auto;
		max-height: 40vh;
		transform: scale(1);
		object-fit: contain;
		margin-bottom: 1.5rem;
	}
	
	.hero-logo {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
		text-align: center;
		opacity: 0;
		animation: heroFadeInUp 2s 
	ease-out 0.5s forwards;
		max-height: 100vh;
		width: 90%;
		display: flex
	;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
    .hero-period p {
        margin: 0;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.4;
    }
	
	.hero-date .date-number {
		font-size: 0.95rem;
	}

	.hero-period .hero-description {
		font-size: 0.75rem;
		line-height: 2;
	}

	.hero-catchcopy {
		text-align: center;
		padding: 1rem 1rem;
		margin-top: 1rem;
	}

	.hero-catchcopy .catchcopy-main {
		margin: 0;
		font-size: 0.75rem;
		font-weight: 500;
		letter-spacing: 0.05rem;
		line-height: 1.6;
		text-shadow: none;
	}

	.hero-catchcopy .catchcopy-sub {
		margin: 0;
		font-size: 0.65rem;
		font-weight: 500;
		letter-spacing: 0.05rem;
		line-height: 1.6;
		text-shadow: none;
	}
	
	
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .news-section h2,
    .locations-section h2,
    .contact-section h2,
    .links-section h2 {
        font-size: 2rem;
    }
	
	.locations-info-section h2 {
		font-size: 1.2rem;
	}
	
	h3.intro-catch {
		font-size: 1.2rem;
	}
	
	.locations-intro p {
		font-size: 0.85rem;
	}

    .news-left,
    .news-right {
        padding: 1.5rem;
    }

    .news-left h3,
    .news-right h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .news-list-item {
        padding: 1rem 0;
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-date {
        min-width: auto;
        font-size: 0.8rem;
    }

    .news-content h4 {
        font-size: 1rem;
    }

    .instagram-item {
        gap: 0.8rem;
    }

    .instagram-thumbnail {
        width: 80px;
        height: 80px;
    }
	
	/* 3. 概要セクション */
	.overview-section {
		padding: 4rem 0;
		background: #D9D1C5;
	}

	.overview-section h2 {
		font-size: 2rem;
		text-align: center;
		margin-bottom: 3rem;
		color: #333333;
		font-weight: 500;
		letter-spacing: 0.25rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.overview-content {
		max-width: 900px;
		margin: 0 auto;
		line-height: 2;
	}

	.overview-catch {
		font-size: 1rem;
		line-height: 1.6;
		letter-spacing: 0.05rem;
	}

	.overview-content p {
		font-size: 0.75rem;
	}

	.overview-content p:last-child {
		margin-bottom: 0;
	}
	
    /* スライドオーバーレイ */
	.slide-overlay {
		padding: 0.5rem 0.5rem;
		width: 50%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: left;
	}

    .slide-overlay h3 {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .slide-overlay p {
        font-size: 0.5rem;
    }
	
    /* スライダーサイズ調整 */
    .locations-fullscreen-slider {
        margin: 1rem 0;
    }

    .locations-swiper {
        height: 150px;
    }

    .location-slide {

        align-items: flex-end;
    }
	
	.footer-bottom .footer-operation-info {
		font-size: 0.5rem;
	}

    .links-grid {
        grid-template-columns: 1fr 1fr;
    }


    .main-location-info {
        margin: 2rem 10px 0;
    }

    .location-info-content {
        grid-template-columns: 1fr;
    }


    .location-info-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .location-details {
        padding: 1rem 1.5rem 1.5rem;
    }

    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calendar-month {
        padding: 1rem;
    }
}

/* セカンド共通 */

.second-header {
	margin: 0 0 3rem 0;
	padding: 6rem 0 3rem;
	background-color: #F4F3EB;
}

.second-header h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333333;
    font-weight: 500;
    letter-spacing: 0.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.second-section a {
	color: #B28146;
}

/* プライバシーポリシー */

.privacypolicy-content {
    max-width: 900px;
    margin: 0 auto 8rem;
    line-height: 2;
}

.privacypolicy-content .update {
	margin-bottom: 1rem;
	text-align: right;
}

.privacypolicy-content h2 {
	margin: 0 0 2rem 0;
	text-align: center;
}

.privacypolicy-content h3 {
	margin-top: 2rem;
}

.privacypolicy-content h4 {
	margin-top: 2rem;
}

.privacypolicy-content h5,.privacypolicy-content h6 {
	font-size: 1rem;
	margin-top: 1rem;
}

.privacypolicy-content ul li {
	list-style-position: inside;
}

/* ページトップへ戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #644C49;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #B28146;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* MailtoUI カスタマイズ */
a#mailtoui-button-3,
a#mailtoui-modal-close {
    display: none !important;
}

