/*
Theme Name: CONNECT-PRESS
Theme URI: https://connect-press.com
Author: Connect Press
Author URI: https://connect-press.com
Description: A modern experience design theme - Designing Edible Experiences
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: connect-press
*/

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #0c3b2e;
    --secondary-color: #ffffff;
    --accent-color: #0c3b2e;
    --text-color: #1f140f;
    --text-light: #4a4a4a;
    --text-muted: #888888;
    --bg-color: #eae8e3;
    --bg-light: #f5f3ef;
    --border-color: #d5d3ce;
    --max-width: 1400px;
    --header-height: 80px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

/* Typography - Bold Gothic Style */
h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 0.8rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    background: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    width: 100%;
    padding: 20px 40px;
}

.site-branding {
    text-align: left;
}

.site-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0;
    color: var(--primary-color);
}

.site-title a {
    color: var(--primary-color);
}

.site-description {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Navigation */
.main-navigation {
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation a {
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 10px 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 6px 0;
}

/* Hero Section - Front Page */
.hero-section {
    padding: 120px 40px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 232, 227, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-tagline {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-tagline-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.hero-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 15px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--primary-color);
}

.hero-title a {
    color: var(--primary-color);
}

/* Page Content Sections */
.page-section {
    padding: 120px 40px;
    border-bottom: 1px solid var(--border-color);
}

.page-section:last-child {
    border-bottom: none;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.1rem;
    line-height: 2.2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-lead p {
    margin-bottom: 1.5rem;
    font-weight: 900;
    font-family: "Noto Sans JP", sans-serif;
    color: var(--primary-color);
}

.section-lead strong {
    font-weight: 900;
    color: var(--primary-color);
}

.section-lead--large {
    max-width: 900px;
}

.section-lead--large p {
    font-size: 200%;
    line-height: 2.4;
}

/* Section Title */
.section-title {
    text-align: left;
    padding: 60px 0 40px;
}

.section-title h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* Content Lists */
.content-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.content-list li {
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.content-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

/* ============================
   EXPERIENCE Section - Full Width
   ============================ */

.page-section--experience {
    padding: 0;
}

.section-fullwidth-header {
    width: 100%;
    padding: 100px 40px 80px;
    background: var(--bg-color);
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title-xl {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--primary-color);
    margin: 0;
}

.page-section--experience .container {
    padding: 80px 40px 120px;
    max-width: 100%;
}

.page-section--experience .section-lead {
    margin: 0;
    padding-left: 0;
    max-width: none;
}

/* ===== POPEYE-style Card Grid ===== */
.page-section--popeye {
    padding: 80px 0 40px;
    background: var(--bg-color);
}

.popeye-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 40px;
    box-sizing: border-box;
}

.popeye-card {
    border-radius: 24px;
    overflow: hidden;
}

.popeye-card__link {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: inherit;
}

/* Image — fills full card */
.popeye-card__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.popeye-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.popeye-card__placeholder {
    width: 100%; height: 100%;
    background: #ddd;
    border-radius: 24px;
}

/* Text overlay — bottom-left of image */
.popeye-card__overlay {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 90%;
    z-index: 1;
}

/* Shared base for all text boxes */
.popeye-card__attr p,
.popeye-card__title,
.popeye-card__desc p {
    background-color: #fff;
    color: #343ec9;
    border: 1.5px solid #343ec9;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    margin: 0;
    line-height: 1.5;
}

/* Category badge — top box */
.popeye-card__attr p {
    border-radius: 5px 5px 0 0;
    border-bottom: none;
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 400;
    padding: 0.45rem 1rem;
    display: inline-block;
}

/* Title — middle box */
.popeye-card__title {
    display: block;
    border-radius: 0 5px 0 0;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 700;
    padding: 0.65rem 1rem;
}
.popeye-card__title.is-top    { border-radius: 5px 5px 0 0; }
.popeye-card__title.is-bottom { border-radius: 0 0 5px 5px; border-bottom-width: 1.5px; }
.popeye-card__title.is-top.is-bottom { border-radius: 5px; }

/* Description — bottom box */
.popeye-card__desc p {
    border-radius: 0 0 5px 5px;
    border-top: none;
    font-size: clamp(11px, 0.85vw, 13px);
    font-weight: 300;
    padding: 0.45rem 1rem;
    display: inline-block;
    max-width: calc(100% - 2rem);
}

/* Hover — invert colors */
.popeye-card__link:hover .popeye-card__attr p,
.popeye-card__link:hover .popeye-card__title,
.popeye-card__link:hover .popeye-card__desc p {
    background-color: #343ec9;
    color: #fff;
    border-color: #fff;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .popeye-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-section--popeye { padding: 60px 0 20px; }
    .popeye-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }
}

/* Experience List - Bold Typography */
.experience-list {
    list-style: none;
    padding: 0 40px;
    margin: 80px auto 0;
    max-width: 800px;
}

.experience-list li {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    padding: 30px 0;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    padding-left: 0;
}

.experience-list li:first-child {
    border-top: 2px solid var(--border-color);
}

.experience-list li::before {
    content: none;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.posts-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

/* Post Card */
.post-card {
    position: relative;
}

.post-card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 20px;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 0;
}

.post-card-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.post-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.post-card-title a {
    color: var(--text-color);
}

.post-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.post-card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Featured Post */
.featured-post {
    grid-column: span 2;
    grid-row: span 2;
}

.featured-post .post-card-image {
    aspect-ratio: 1/1;
}

.featured-post .post-card-title {
    font-size: 1.8rem;
}

/* Category Section */
.category-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.category-header h2 {
    font-size: 2rem;
    letter-spacing: 0;
}

.view-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Latest Section */
.latest-section {
    padding: 100px 0;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.newsletter-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.newsletter-section p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 18px 35px;
    background: white;
    color: var(--primary-color);
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* ============================
   Single Post - &Premium Style
   ============================ */

/* Article Header - &Premium Style */
.article-header {
    padding: 60px 40px 30px;
    background: #fff;
}

.article-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.article-categories {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--text-color);
    margin-bottom: 30px;
}

.article-category {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.02em;
}

.article-category:hover {
    opacity: 0.7;
}

.article-category + .article-category::before {
    content: "、";
    margin: 0 2px;
}

.article-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    padding-bottom: 30px;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 0;
}

.article-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--text-color);
}

.article-meta {
    padding: 20px 0;
    border-bottom: 1px solid var(--text-color);
}

.article-date {
    font-size: 0.9rem;
    color: var(--text-color);
    letter-spacing: 0.02em;
}

/* Article Thumbnail */
.article-thumbnail {
    background: #fff;
    padding: 0 40px;
}

.article-thumbnail-inner {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Article Content */
.article-content {
    background: #fff;
    padding: 60px 40px 80px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-lead {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--text-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

/* Article Text */
.article-text {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--text-color);
}

.article-text p {
    margin-bottom: 2em;
}

.article-text h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #5a4a32;
    margin: 60px 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #a89878;
}

.article-text h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #5a4a32;
    margin: 50px 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #a89878;
}

.article-text img {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 6px;
}

.article-text figure {
    margin: 40px 0;
}

.article-text figure img {
    margin: 0;
    border-radius: 6px;
}

.article-text figcaption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

.article-text blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-size: 1rem;
    line-height: 2;
    color: var(--text-light);
}

.article-text ul,
.article-text ol {
    margin: 30px 0;
    padding-left: 25px;
}

.article-text li {
    margin-bottom: 12px;
    line-height: 2;
}

/* Shop Info Box */
.shop-info-box {
    margin-top: 60px;
    padding: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.shop-info-name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.shop-info-list {
    margin: 0;
}

.shop-info-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.shop-info-item:last-child {
    border-bottom: none;
}

.shop-info-item dt {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.shop-info-item dd {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

.shop-info-item dd a {
    color: var(--primary-color);
}

.shop-info-link {
    margin-top: 25px;
    text-align: center;
}

.shop-info-link a {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.shop-info-link a:hover {
    opacity: 0.8;
    color: #fff;
}

.link-arrow {
    margin-left: 8px;
}

/* Article Credit */
.article-credit {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Article Footer */
.article-footer {
    background: #fff;
    padding: 0 40px 60px;
}

.article-footer-inner {
    max-width: 680px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.article-tag {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.article-tag:hover {
    color: var(--primary-color);
    opacity: 1;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.share-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-button:hover {
    background: var(--text-color);
    border-color: var(--text-color);
    color: #fff;
    opacity: 1;
}

/* Article Related */
.article-related {
    background: var(--bg-light);
    padding: 80px 40px;
}

.article-related-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.related-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

.related-heading-jp {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card-link {
    display: block;
    color: var(--text-color);
}

.related-card-link:hover {
    opacity: 1;
}

.related-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card-link:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--border-color);
}

.related-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-color);
}

/* Shop Info Section (Bottom) */
.article-shop-info {
    background: #fff;
    padding: 80px 40px;
}

.article-shop-info-inner {
    max-width: 680px;
    margin: 0 auto;
}

.shop-info-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-color);
    margin-bottom: 40px;
}

.shop-info-heading-jp {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* Article Responsive */
@media (max-width: 768px) {
    .article-header {
        padding: 60px 20px 40px;
    }

    .article-title {
        font-size: 1.3rem;
    }

    .article-thumbnail {
        padding: 0 20px;
    }

    .article-content {
        padding: 40px 20px 60px;
    }

    .shop-info-box {
        padding: 25px;
    }

    .shop-info-item {
        grid-template-columns: 70px 1fr;
        gap: 10px;
    }

    .article-footer {
        padding: 0 20px 40px;
    }

    .article-related {
        padding: 60px 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .related-card-image {
        aspect-ratio: 16 / 9;
    }

    .article-shop-info {
        padding: 60px 20px;
    }
}

/* Legacy Single Styles (keep for compatibility) */
.single-header {
    width: 100%;
    padding: 100px 40px 80px;
    background: var(--bg-color);
}

.single-header-inner {
    max-width: 900px;
    margin: 0 auto;
}

.single-content .container-narrow {
    padding: 0 40px;
    max-width: 980px;
}

.entry-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 15px;
    margin-bottom: 25px;
}

.entry-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.entry-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 15px;
}

.entry-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
}

.meta-separator {
    margin: 0 10px;
}

.single-thumbnail {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.single-thumbnail img {
    width: 100%;
    height: auto;
}

.single-content {
    padding: 80px 0;
}

.entry-lead {
    font-size: 1.15rem;
    line-height: 2.2;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.entry-date-info {
    background: var(--bg-light);
    padding: 20px 25px;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.entry-date-info strong {
    color: var(--primary-color);
}

.entry-cta {
    margin-top: 60px;
    padding: 40px;
    background: var(--primary-color);
    text-align: center;
}

.btn-cta {
    background: white !important;
    color: var(--primary-color) !important;
}

.entry-credit {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Full Width Footer */
.single-footer {
    width: 100%;
    padding: 60px 0;
    background: var(--bg-light);
}

.single-footer .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.tag-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 8px 15px;
    background: white;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
    opacity: 1;
}

.share-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 0.85rem;
    font-weight: 700;
}

.share-btn {
    display: inline-block;
    padding: 8px 15px;
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
}

.share-btn:hover {
    opacity: 0.8;
    color: white;
}

/* Post Navigation - Full Width */
.single-navigation {
    width: 100%;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nav-prev,
.nav-next {
    display: block;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Related Posts - Full Width */
.single-related {
    width: 100%;
    padding: 80px 0;
}

.related-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 40px;
}

.post-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
}

/* ============================
   Featured Posts Layout
   ============================ */

.page-section--posts {
    padding: 80px 0;
}

.section-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.section-heading-jp {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

.posts-featured-layout {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Left: Featured Main Post */
.posts-featured-main {
    position: relative;
}

.featured-article-link {
    display: block;
}

.featured-article-image {
    position: relative;
    aspect-ratio: 14/9;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-article:hover .featured-article-image img {
    transform: scale(1.03);
}

.featured-article-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(0.91rem, 1.75vw, 1.26rem);
    font-weight: 900;
    line-height: 1.5;
    color: var(--text-light);
}

/* Right: Sidebar Post List */
.posts-featured-sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-article {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-article:first-child {
    padding-top: 0;
}

.sidebar-article:last-child {
    border-bottom: none;
}

.sidebar-article-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.sidebar-article-image {
    flex-shrink: 0;
    width: 160px;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-article:hover .sidebar-article-image img {
    transform: scale(1.05);
}

.sidebar-article-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-light);
    flex: 1;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 992px) {
    .posts-featured-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sidebar-article-image {
        width: 130px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .posts-featured-layout {
        gap: 30px;
    }

    .sidebar-article-link {
        gap: 15px;
    }

    .sidebar-article-image {
        width: 100px;
        height: 75px;
    }

    .sidebar-article-title {
        font-size: 0.9rem;
    }
}

.entry-content {
    font-size: 1.05rem;
    line-height: 2.2;
}

.entry-content p {
    margin-bottom: 2rem;
}

.entry-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 80px 0 30px;
}

.entry-content h2:first-child {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 15px;
}

.entry-content .content-lead {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 15px;
}

.entry-content h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: 60px 0 25px;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    margin: 50px 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

.entry-content img {
    margin: 50px 0;
    max-width: 100%;
    height: auto;
}

.entry-content figure.wp-block-image {
    margin: 50px 0;
}

.entry-content figure.wp-block-image img {
    width: 100%;
    margin: 0;
}

.entry-content figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

/* Image Slider */
.content-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.entry-content .content-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 20px 0 10px;
}

.entry-content .content-subtitle + p {
    margin-top: 0;
}

.slider-slide img {
    display: block;
    margin-bottom: 0;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    box-sizing: border-box;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: var(--primary-color);
}

/* Event Info Box */
.event-info-box {
    background: var(--bg-light);
    padding: 40px 50px;
    margin-top: 50px;
}

.event-info-list {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px 30px;
    margin: 0;
}

.event-info-list dt {
    font-weight: 700;
    color: var(--text-color);
}

.event-info-list dd {
    margin: 0;
    color: var(--text-color);
}

.entry-content ul,
.entry-content ol {
    margin: 30px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 15px;
}

/* Page Template */
.page-content {
    padding: 100px 40px;
}

.page-content .container-narrow {
    max-width: 900px;
}

.page-content h1 {
    margin-bottom: 40px;
}

.page-content h2 {
    margin-top: 80px;
    margin-bottom: 30px;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 1.8rem;
}

.page-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-content ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .site-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 2;
}

.footer-nav h4 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.footer-social a:hover {
    background: white;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Page Header */
.page-header {
    padding: 100px 40px 60px;
}

.page-title {
    font-size: clamp(3rem, 8vw, 6rem);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.8;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 80px;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 700;
}

.pagination .current {
    background: var(--primary-color);
    color: white;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 150px 40px;
}

.error-404 h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 1;
    margin-bottom: 30px;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 1200px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .posts-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .container,
    .container-narrow {
        padding: 0 30px;
    }

    .page-section {
        padding: 80px 30px;
    }

    /* Experience Section Responsive */
    .section-fullwidth-header {
        padding: 80px 30px 60px;
    }

    .page-section--experience .container {
        padding: 60px 30px 80px;
    }

    .experience-list li {
        padding: 25px 0;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        padding: 20px 30px;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .main-navigation {
        display: none;
        width: 100%;
        margin-top: 20px;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid var(--border-color);
    }

    .main-navigation a {
        display: block;
        padding: 15px 0;
    }

    .hero-section {
        padding: 80px 30px;
        min-height: 70vh;
    }

    .posts-grid,
    .posts-grid-4,
    .posts-grid-2 {
        grid-template-columns: 1fr;
    }

    .featured-post {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-title {
        padding: 40px 0 30px;
    }

    .page-section {
        padding: 60px 20px;
    }

    /* Experience Section Mobile */
    .section-fullwidth-header {
        padding: 60px 20px 40px;
    }

    .page-section--experience .container {
        padding: 40px 20px 60px;
    }

    .section-lead {
        padding: 0 20px;
    }

    .experience-list {
        margin: 50px auto 0;
        padding: 0 20px;
    }

    .experience-list li {
        padding: 20px 0;
    }

    .container,
    .container-narrow {
        padding: 0 20px;
    }

    .latest-section,
    .category-section {
        padding: 60px 0;
    }
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 2rem;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.gallery-item {
    margin: 0;
}

.gallery-icon img {
    width: 100%;
    height: auto;
}

/* Block Editor Styles */
.wp-block-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    color: var(--primary-color);
}

.wp-block-paragraph {
    line-height: 2.2;
}

/* ============================
   EVENT CALENDAR
   ============================ */

.event-calendar {
    background: #fff;
    margin: 60px 0;
}

/* Calendar Section Title */
.calendar-section-title {
    padding: 0 0 30px;
    text-align: center;
}

.calendar-section-title h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
}

.calendar-title-jp {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* Calendar Header */
.calendar-header {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 2px dashed var(--border-color);
}

.calendar-title {
    margin-bottom: 25px;
}

.calendar-month-year {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.calendar-nav-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.calendar-nav-btn:hover {
    opacity: 0.7;
}

.calendar-month-num {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-color);
}

/* Month Quick Links */
.calendar-months {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px 15px;
    padding-top: 20px;
    border-top: 2px dashed var(--border-color);
    margin-top: 20px;
}

.calendar-year-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--primary-color);
}

.calendar-month-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 5px 8px;
}

.calendar-month-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.calendar-month-link.active {
    background: var(--primary-color);
    color: #fff;
}

/* Calendar Grid */
.calendar-grid {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    border-bottom: 1px solid var(--border-color);
    min-width: 700px;
}

.calendar-weekdays .weekday {
    padding: 15px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-color);
    text-align: left;
    border-right: 1px solid var(--border-color);
    min-width: 0;
    overflow: hidden;
}

.calendar-weekdays .weekday:last-child {
    border-right: none;
}

.calendar-weekdays .weekday.saturday {
    color: #1565c0;
}

.calendar-weekdays .weekday.sunday {
    color: #e91e63;
}

/* Days Grid */
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    min-width: 700px;
}

.calendar-day {
    min-height: 140px;
    padding: 10px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day.empty {
    background: #f9f9f9;
}

.calendar-day.saturday .day-number {
    color: #1565c0;
}

.calendar-day.sunday .day-number {
    color: #e91e63;
}

.day-number {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.day-weekday {
    display: none; /* Hidden on desktop */
}

/* Day Events */
.day-events {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.day-event {
    display: block;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.day-event:hover {
    opacity: 0.8;
}

.event-title {
    display: block;
    font-weight: 700;
    color: var(--text-color);
}

.event-location {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.event-soldout {
    display: inline-block;
    background: #ff5722;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    margin-top: 3px;
    letter-spacing: 0.05em;
}

/* Calendar Responsive */
@media (max-width: 992px) {
    .calendar-weekdays .weekday {
        font-size: 0.65rem;
        padding: 10px 5px;
    }

    .calendar-day {
        min-height: 120px;
        padding: 8px;
    }

    .day-number {
        font-size: 1.2rem;
    }

    .day-event {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .calendar-months {
        display: none;
    }

    .calendar-grid {
        overflow-x: visible;
    }

    /* Hide weekday headers on mobile */
    .calendar-weekdays {
        display: none;
    }

    /* Vertical list layout */
    .calendar-days {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .calendar-day {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        min-height: auto;
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .calendar-day.empty {
        display: none;
    }

    .day-number {
        font-size: 1.5rem;
        margin-bottom: 0;
        min-width: 40px;
        text-align: right;
    }

    .day-weekday {
        display: block;
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--text-muted);
        min-width: 35px;
        padding-top: 8px;
    }

    .calendar-day.saturday .day-weekday {
        color: #1565c0;
    }

    .calendar-day.sunday .day-weekday {
        color: #e91e63;
    }

    .day-events {
        flex: 1;
        gap: 8px;
        padding-top: 5px;
    }

    .day-event {
        font-size: 0.8rem;
    }

    .event-title {
        white-space: normal;
        overflow: visible;
    }

    .event-location {
        display: block;
        font-size: 0.7rem;
    }

    .event-soldout {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .calendar-nav-btn {
        font-size: 0.75rem;
    }

    .calendar-month-num {
        font-size: 3rem;
    }

    .calendar-day {
        padding: 12px 10px;
        gap: 10px;
    }

    .day-number {
        font-size: 1.3rem;
        min-width: 35px;
    }

    .day-weekday {
        font-size: 0.65rem;
        min-width: 30px;
        padding-top: 6px;
    }

    .day-event {
        font-size: 0.75rem;
    }
}

/* ============================
   GINZA Magazine Style - Category Page
   ============================ */

/* Category Header */
.category-header {
    padding: 60px 0 40px;
    text-align: center;
    background: #fff;
}

.category-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.category-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Category Posts Section */
.category-posts {
    padding: 20px 0 100px;
    background: #fff;
}

.category-posts .section-heading {
    padding: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Category Section Title */
.category-section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.category-section-title-jp {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-top: 10px;
}

/* GINZA Grid - 3 Column Masonry Style */
.ginza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

/* GINZA Card */
.ginza-card {
    position: relative;
}

/* Alternate card heights for masonry effect */
.ginza-card:nth-child(3n+1) .ginza-card-image {
    aspect-ratio: 4 / 5;
}

.ginza-card:nth-child(3n+2) .ginza-card-image {
    aspect-ratio: 1 / 1;
}

.ginza-card:nth-child(3n+3) .ginza-card-image {
    aspect-ratio: 3 / 4;
}

.ginza-card-link {
    display: block;
    color: var(--text-color);
}

.ginza-card-link:hover {
    opacity: 1;
}

.ginza-card-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.ginza-card-link:hover .ginza-card-image {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ginza-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ginza-card-link:hover .ginza-card-image img {
    transform: scale(1.03);
}

.ginza-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 12px;
}

/* Category Badge */
.ginza-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 10px;
    border-radius: 4px;
}

/* Card Content */
.ginza-card-content {
    padding: 18px 5px 0;
    text-align: center;
}

.ginza-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ginza-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ginza-card-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 8px;
}

/* GINZA Pagination */
.ginza-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.ginza-pagination a,
.ginza-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.ginza-pagination a:hover {
    background: var(--primary-color);
    color: #fff;
    opacity: 1;
}

.ginza-pagination .current {
    background: var(--primary-color);
    color: #fff;
}

.ginza-pagination .prev,
.ginza-pagination .next {
    font-size: 0.8rem;
}

.ginza-pagination .dots {
    color: var(--text-muted);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 100px 0;
    color: var(--text-muted);
    font-size: 1rem;
}

/* GINZA Grid Responsive */
@media (max-width: 992px) {
    .ginza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .ginza-card:nth-child(2n+1) .ginza-card-image {
        aspect-ratio: 4 / 5;
    }

    .ginza-card:nth-child(2n+2) .ginza-card-image {
        aspect-ratio: 1 / 1;
    }

    .category-header {
        padding: 50px 0 30px;
    }

    .category-posts {
        padding: 20px 0 80px;
    }
}

@media (max-width: 600px) {
    .ginza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .ginza-card:nth-child(2n+1) .ginza-card-image,
    .ginza-card:nth-child(2n+2) .ginza-card-image {
        aspect-ratio: 3 / 4;
    }

    .ginza-card-image {
        border-radius: 8px;
    }

    .ginza-card-title {
        font-size: 0.85rem;
    }

    .ginza-card-subtitle {
        font-size: 0.7rem;
    }

    .ginza-card-content {
        padding: 12px 2px 0;
    }

    .category-header {
        padding: 40px 0 20px;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .ginza-pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .ginza-pagination a,
    .ginza-pagination span {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 0.8rem;
    }
}

/* ============================================
   RESERVATION FORM STYLES
   ============================================ */

.page-section--reservation {
    background: var(--bg-light);
}

.reservation-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    line-height: 2;
}

.reservation-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.reservation-error {
    background: #fee;
    color: #c00;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.reservation-complete {
    text-align: center;
    padding: 80px 0;
}

.reservation-complete h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.reservation-complete p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 20px;
}

.reservation-complete .btn {
    margin-top: 40px;
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-section h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.form-section--note {
    background: var(--bg-color);
}

.form-section--note ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.form-section--note li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-section--note p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-row {
    margin-bottom: 25px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.form-row .required {
    color: #c00;
    margin-left: 5px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn--large {
    padding: 20px 60px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .form-section {
        padding: 25px;
    }

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

    .reservation-intro br {
        display: none;
    }

    .btn--large {
        width: 100%;
        padding: 18px 30px;
    }
}

/* MAP Button */
.map-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    padding: 6px 12px;
    background: var(--primary-color);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    opacity: 1;
    visibility: visible;
}

.map-button:hover {
    background: var(--text-color);
    color: #fff !important;
}

.map-button svg {
    flex-shrink: 0;
    fill: #fff;
}

/* Reservation Notice Section */
.reservation-notice {
    margin-top: 80px;
    padding: 0;
    text-align: left;
}

.reservation-notice-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-color);
}

.reservation-notice p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.reservation-notice-link {
    margin-top: 40px;
}

.reservation-notice-link a {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
}

.reservation-notice-link a:hover {
    background: var(--text-color);
}

/* ============================
   CURATION Info Box - New Design
   ============================ */

.curation-info-wrapper {
    margin-top: 80px;
}

.curation-info-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.curation-info-box {
    padding: 30px;
    background: #F2A413;
    border-radius: 16px;
}

.curation-info-inner {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 30px;
    background: transparent;
}

.curation-info-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.curation-info-image {
    flex-shrink: 0;
    width: 180px;
}

.curation-info-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.curation-info-details {
    flex: 1;
}

.curation-info-name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.curation-info-meta {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 10px;
}

.curation-info-closed {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 20px;
}

.curation-info-link {
    margin-top: 15px;
}

.curation-info-link-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.curation-info-link a {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: underline;
    word-break: break-all;
}

.curation-info-link a:hover {
    opacity: 0.7;
}

.curation-info-address {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 10px;
}

.curation-map-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 10px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #fff;
}

.curation-map-button:hover {
    background: #fff;
    color: #41A8BF !important;
}

.curation-map-button svg {
    flex-shrink: 0;
    fill: currentColor;
}

/* Post ID 20 - Custom Orange Background */
.postid-20 .curation-info-box {
    background: #F27405;
}

.postid-20 .curation-map-button:hover {
    background: #fff;
    color: #F27405 !important;
}

/* CURATION Info Box Responsive */
@media (max-width: 768px) {
    .curation-info-wrapper {
        margin-top: 60px;
    }

    .curation-info-box {
        padding: 20px;
    }

    .curation-info-inner {
        padding: 20px;
    }

    .curation-info-content {
        flex-direction: column;
        gap: 20px;
    }

    .curation-info-image {
        width: 100%;
        max-width: 200px;
    }

    .curation-info-name {
        font-size: 1.2rem;
    }

    .curation-info-meta {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Products Page (tabi-labo style)
   ========================================================================== */

/* Page specific resets */
.page-id-26 .site-header {
    position: relative;
    background: transparent;
}

.page-id-26 .site-main {
    padding: 0;
    margin: 0;
}

.products-page {
    background: #fff;
}

/* Hero Section with Background */
.products-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #6b8e4e;
}

/* Logo - Centered, overlapping hero and content */
.products-logo {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.products-logo-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.05;
    letter-spacing: 0.12em;
    margin: 0;
}

.products-logo-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.3em;
    margin-top: 15px;
}

/* Content Wrapper - White box with side gaps showing bg */
.products-content-wrapper {
    position: relative;
    margin-top: -80px;
    padding: 0 80px;
    z-index: 5;
}

.products-content-box {
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 60px 60px;
}

.products-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.08em;
}

.products-description {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    line-height: 2;
    margin-bottom: 35px;
    text-align: justify;
}

/* Tags */
.products-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.products-tags li {
    margin: 0;
}

.products-tags a {
    display: inline-block;
    padding: 8px 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products-tags a:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.products-tags span {
    color: #999;
    margin-right: 3px;
}

/* Share buttons */
.products-share {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.share-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.share-circle:hover {
    opacity: 0.7;
}

.share-circle svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Articles Grid */
.products-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.products-article {
    position: relative;
}

.products-article-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 12px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: #d4a017;
    letter-spacing: 0.05em;
}

.products-article a {
    text-decoration: none;
    color: inherit;
}

.products-article-img {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    margin-bottom: 15px;
}

.products-article-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.products-article a:hover .products-article-img img {
    transform: scale(1.05);
}

.products-article-img .no-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eee;
}

.products-article h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 10px;
}

.products-article-excerpt {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

.products-article-date {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
}

/* Products Page - Mobile Responsive */
@media (max-width: 768px) {
    .products-content-box {
        padding: 30px 15px;
    }

    .products-title {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .products-description {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    /* Tags - horizontal scroll, no wrap */
    .products-tags {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 10px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .products-tags li {
        flex-shrink: 0;
    }

    .products-tags a {
        font-size: 0.7rem;
        padding: 6px 12px;
        white-space: nowrap;
    }

    /* Articles grid - reduce spacing */
    .products-articles {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-article-img {
        margin-bottom: 10px;
    }

    .products-article-cat {
        font-size: 0.55rem;
        padding: 3px 8px;
        top: 5px;
        left: 5px;
    }

    .products-article h3 {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .products-article-excerpt {
        font-size: 0.7rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .products-article-date {
        font-size: 0.65rem;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .products-content-box {
        padding: 25px 12px;
    }

    .products-tags a {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .products-articles {
        gap: 12px;
    }

    .products-article h3 {
        font-size: 0.75rem;
    }

    .products-article-excerpt {
        font-size: 0.65rem;
        -webkit-line-clamp: 2;
    }
}

/* ==========================================================================
   Article List (tabi-labo style)
   ========================================================================== */

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

.article-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-list-item {
    position: relative;
}

.article-category-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.article-category-label a {
    display: inline-block;
    padding: 4px 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.article-list-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-list-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.article-image-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.article-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-list-link:hover .article-image-wrapper img {
    transform: scale(1.05);
}

.article-no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
}

.article-list-text {
    padding: 0 5px;
}

.article-list-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-list-description {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.8;
    display: none;
}

.article-list-date {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Article List Responsive */
@media (min-width: 769px) {
    .article-list-description {
        display: block;
    }
}

@media (max-width: 1024px) {
    .feature-bg-column {
        width: 180px;
    }

    .feature-logo-text {
        font-size: 2.5rem;
    }

    .feature-logo-area,
    .feature-content-box,
    .article-list-inner {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .feature-layout {
        flex-direction: column;
        min-height: auto;
    }

    .feature-bg-column {
        width: 100%;
        height: 200px;
        flex-shrink: 0;
    }

    .feature-content-column {
        padding-top: 0;
    }

    .feature-logo-area {
        text-align: center;
        padding: 30px 20px 20px;
    }

    .feature-logo-text {
        font-size: 2rem;
    }

    .feature-logo-sub {
        font-size: 0.75rem;
    }

    .feature-content-box {
        padding: 20px 20px 30px;
    }

    .feature-main-title {
        font-size: 1.3rem;
    }

    .feature-main-description {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .feature-tags {
        gap: 8px;
    }

    .feature-tag a {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .feature-share-buttons {
        justify-content: center;
    }

    .share-btn {
        width: 40px;
        height: 40px;
    }

    .article-list-inner {
        padding: 20px 20px 40px;
    }

    .article-list-inner .article-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-list-container {
        padding: 30px 15px;
    }

    .article-list-grid {
        gap: 20px;
    }

    .article-list-title {
        font-size: 0.9rem;
    }

    .article-list-date {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   Journal Latest Section (yourcityisgood style)
   ========================================================================== */

.journal-latest {
    padding: 0;
    background: #fff;
}

.journal-latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.journal-card {
    position: relative;
    overflow: hidden;
}

.journal-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.journal-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.journal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.journal-card-link:hover .journal-card-image img {
    transform: scale(1.05);
}

.journal-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.journal-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.journal-card-category {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 2px;
}

.journal-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .journal-latest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .journal-latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .journal-latest-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-card-image {
        aspect-ratio: 4 / 3;
    }
    
    .journal-card-content {
        padding: 20px 15px;
    }
    
    .journal-card-title {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Journal Single Page (yourcityisgood style)
   ========================================================================== */

.journal-single {
    background: #fff;
}

/* Hero Section */
.journal-hero {
    position: relative;
    margin-bottom: 60px;
}

.journal-hero-image {
    width: 100%;
    padding: 20px 20px 0;
    overflow: hidden;
}

.journal-hero-image img {
    width: 100%;
    height: 50vh;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Header - Overlapping White Box */
.journal-header {
    position: relative;
    max-width: 800px;
    margin: -160px auto 0;
    padding: 0 20px;
    z-index: 10;
}

.journal-header-inner {
    background: #fff;
    padding: 40px 50px;
}

.journal-header-top {
    margin-bottom: 15px;
}

.journal-category {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #1a1a1a;
}

.journal-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.journal-header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
}

.journal-tags-wrap {
    flex: 1;
}

.journal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.journal-tag {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.journal-tag:hover {
    opacity: 0.6;
}

.journal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}

.journal-meta-category {
    font-weight: 500;
}

.journal-meta-separator {
    color: #ccc;
}

.journal-date {
    letter-spacing: 0.05em;
}

/* INDEX Section */
.journal-index {
    max-width: 720px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.journal-index-inner {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0 50px 22px;
}

.journal-index-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.journal-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.journal-index-item {
    margin-bottom: 14px;
}

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

.journal-index-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.journal-index-link:hover {
    opacity: 0.6;
}

.journal-index-dot {
    width: 14px;
    height: 14px;
    background: #037D67;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
}

.journal-index-number {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 10px;
}

.journal-index-separator {
    color: #ccc;
    margin-right: 10px;
}

.journal-index-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .journal-index {
        padding: 0 15px;
    }

    .journal-index-inner {
        padding: 15px 20px 18px;
        border-radius: 15px;
    }

    .journal-index-title {
        margin-bottom: 12px;
    }

    .journal-index-item {
        margin-bottom: 10px;
    }

    .journal-index-dot {
        width: 12px;
        height: 12px;
        margin-right: 10px;
    }

    .journal-index-number,
    .journal-index-text {
        font-size: 0.85rem;
    }
}

/* Content */
.journal-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.journal-body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    line-height: 2.2;
    color: #333;
}

.journal-body p {
    margin-bottom: 2em;
}

.journal-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 3em 0 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #1a1a1a;
}

.journal-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1em 0 0.8em;
}

.journal-body img {
    max-width: 100%;
    height: auto;
    margin: 2em 0;
}

.journal-body blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    background: #f8f8f8;
    border-left: 4px solid #037D67;
    font-style: italic;
}

.journal-body ul,
.journal-body ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.journal-body li {
    margin-bottom: 0.5em;
}

/* Share Buttons */
.journal-share {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.journal-share-inner {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.journal-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.journal-share-btn svg {
    width: 16px;
    height: 16px;
}

.journal-share-btn:hover {
    transform: scale(1.1);
}

.journal-share-twitter:hover {
    background: #000;
}

.journal-share-facebook:hover {
    background: #1877f2;
}

.journal-share-line:hover {
    background: #00b900;
}

/* Related Posts */
.journal-related {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.journal-related-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.journal-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.journal-related-card {
    position: relative;
}

.journal-related-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.journal-related-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 15px;
}

.journal-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.journal-related-link:hover .journal-related-image img {
    transform: scale(1.05);
}

.journal-related-placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
}

.journal-related-content {
    padding: 0 5px;
}

.journal-related-category {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #037D67;
    margin-bottom: 8px;
}

.journal-related-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .journal-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .journal-hero-image {
        padding: 10px 10px 0;
    }

    .journal-hero-image img {
        height: 35vh;
    }

    .journal-header {
        margin: -40px auto 0;
        padding: 0 10px;
    }

    .journal-header-inner {
        padding: 25px 20px;
    }

    .journal-title {
        font-size: 1rem;
    }

    .journal-header-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .journal-content {
        padding: 0 15px 40px;
    }

    .journal-body {
        font-size: 0.95rem;
        line-height: 2;
    }

    .journal-related-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journal-related-image {
        aspect-ratio: 4 / 3;
    }
}

/* ============================================
   CRISP STYLE - Front Page (Exact Match)
   ============================================ */

/* Google Fonts - Gilroy代替としてMontserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');

/* CRISP Color Variables - 完全一致 */
.crisp-style {
    --crisp-bg: #eae8e3;
    --crisp-text: #1f140f;
    --crisp-accent: #0c3b2e;
    --crisp-light: #e1dfd9;
    --crisp-white: #ffffff;
}

/* Base Styles - CRISPと同じ */
.crisp-style {
    background-color: var(--crisp-bg);
    color: var(--crisp-text);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    line-height: 2.5;
}

@media (max-width: 767px) {
    .crisp-style {
        font-size: 12px;
        line-height: 2.15;
    }
}

.crisp-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 80px;
}

@media (max-width: 767px) {
    .crisp-container {
        padding: 0 24px;
    }
}

/* Hero Section - CRISP完全一致 */
.crisp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    max-height: 900px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .crisp-hero {
        min-height: 600px;
        max-height: 700px;
    }
}

.crisp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.crisp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease;
}

.crisp-hero:hover .crisp-hero-bg img {
    transform: scale(1.06);
}

.crisp-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
}

.crisp-hero-content {
    position: absolute;
    bottom: 120px;
    left: 80px;
    z-index: 2;
    color: var(--crisp-white);
}

@media (max-width: 767px) {
    .crisp-hero-content {
        left: 24px;
        right: 24px;
        bottom: 80px;
    }
}

.crisp-hero-label {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .crisp-hero-label {
        font-size: 12px;
    }
}

.crisp-hero-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .crisp-hero-title {
        font-size: 24px;
    }
}

.crisp-hero-subtitle {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.95;
}

@media (max-width: 767px) {
    .crisp-hero-subtitle {
        font-size: 12px;
    }
}

/* Section Base - CRISPと同じ余白 */
.crisp-section {
    padding: 200px 0;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .crisp-section {
        padding: 100px 0;
    }
}

.crisp-section-label {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--crisp-accent);
    margin-bottom: 30px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .crisp-section-label {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

.crisp-section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 40px;
    letter-spacing: 1.55px;
}

@media (max-width: 767px) {
    .crisp-section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

.crisp-section-title-center {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    letter-spacing: 1.55px;
}

@media (max-width: 767px) {
    .crisp-section-title-center {
        font-size: 22px;
    }
}

.crisp-section-title-large {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 40px;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .crisp-section-title-large {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

.crisp-section-header {
    text-align: center;
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .crisp-section-header {
        margin-bottom: 50px;
    }
}

.crisp-section-header .crisp-section-label {
    margin-bottom: 15px;
}

.crisp-section-footer {
    text-align: center;
    margin-top: 60px;
}

/* Text Styles - CRISP完全一致 */
.crisp-text-block {
    max-width: 800px;
}

.crisp-lead-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 2.5;
    font-weight: 400;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .crisp-lead-text {
        font-size: 14px;
        line-height: 2.2;
    }
}

.crisp-lead-text strong {
    font-weight: 700;
    color: var(--crisp-accent);
}

.crisp-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 2.5;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .crisp-text {
        font-size: 14px;
        line-height: 2.2;
    }
}

.crisp-text-center {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 2.5;
    text-align: center;
    letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .crisp-text-center {
        font-size: 14px;
        line-height: 2.2;
    }
}

/* Grid Layout - CRISP同様 */
.crisp-grid {
    display: grid;
    gap: 100px;
    align-items: center;
}

@media (max-width: 767px) {
    .crisp-grid {
        gap: 50px;
    }
}

.crisp-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.crisp-grid-reverse .crisp-content-box {
    order: 1;
}

.crisp-grid-reverse .crisp-image-box {
    order: 2;
}

@media (max-width: 991px) {
    .crisp-grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .crisp-grid-reverse .crisp-content-box,
    .crisp-grid-reverse .crisp-image-box {
        order: unset;
    }
}

/* Image Box - CRISPと同じ高さ */
.crisp-image-box {
    position: relative;
    overflow: hidden;
    height: 600px;
    max-height: 675px;
    background: var(--crisp-light);
}

@media (max-width: 767px) {
    .crisp-image-box {
        height: 400px;
        max-height: 450px;
    }
}

.crisp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.crisp-image-box:hover img {
    transform: scale(1.04);
}

/* Content Box */
.crisp-content-box {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .crisp-content-box {
        padding: 20px 0;
    }
}

/* Link Style - CRISP完全一致 */
.crisp-link {
    display: inline-flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--crisp-text);
    text-decoration: none;
    margin-top: 40px;
    position: relative;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.crisp-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--crisp-text);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.crisp-link:hover {
    color: var(--crisp-accent);
}

.crisp-link:hover::after {
    background: var(--crisp-accent);
    transform: scaleX(0.3);
}

@media (max-width: 767px) {
    .crisp-link {
        font-size: 12px;
        margin-top: 30px;
    }
}

/* Button Style - CRISP同様 */
.crisp-btn {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--crisp-white);
    background: var(--crisp-accent);
    text-decoration: none;
    padding: 20px 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.crisp-btn:hover {
    background: var(--crisp-text);
}

@media (max-width: 767px) {
    .crisp-btn {
        font-size: 12px;
        padding: 16px 40px;
        margin-top: 30px;
    }
}

/* Posts Grid */
.crisp-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .crisp-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .crisp-posts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Post Card - CRISP同様 */
.crisp-post-card {
    background: transparent;
}

.crisp-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.crisp-post-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--crisp-light);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .crisp-post-image {
        height: 220px;
    }
}

.crisp-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.crisp-post-link:hover .crisp-post-image img {
    transform: scale(1.06);
}

.crisp-post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--crisp-light);
}

.crisp-post-content {
    padding: 0;
}

.crisp-post-date {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.crisp-post-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

@media (max-width: 767px) {
    .crisp-post-title {
        font-size: 14px;
    }
}

.crisp-post-link:hover .crisp-post-title {
    color: var(--crisp-accent);
}

/* Contact Section */
.crisp-contact {
    background: var(--crisp-light);
}

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

/* Mission Section - CRISP同様の大きな余白 */
.crisp-mission {
    padding-top: 270px;
    padding-bottom: 270px;
}

@media (max-width: 767px) {
    .crisp-mission {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

/* Animation - CRISPと同様 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crisp-section .crisp-container {
    animation: fadeInUp 1s ease forwards;
}

/* Smooth scroll */
.crisp-style {
    scroll-behavior: smooth;
}

/* OUR BUSINESS Section */
.our-business-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.our-business-header {
    margin-bottom: 40px;
}

.our-business-title {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.our-business-jp {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.our-business-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 900;
    line-height: 1.8;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.our-business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.our-business-card {
    background: #fff;
    overflow: hidden;
}

.our-business-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.our-business-img .post-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
}

.our-business-label {
    padding: 24px;
    text-align: center;
}

.our-business-en {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.our-business-ja {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.our-business-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.our-business-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.our-business-btn::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5l8 7-8 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .our-business-grid {
        grid-template-columns: 1fr;
    }
    .our-business-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* PLAYFUL DAYS Hero Section */
.playful-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.playful-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.playful-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.playful-hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
}

.playful-hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.playful-hero-sub {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.playful-hero-jp {
    display: inline-block;
    background: #fff;
    color: #111;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 900;
    padding: 4px 16px;
}

/* 3 Link Cards */
.playful-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.playful-link-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.playful-link-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.playful-link-card:hover .playful-link-card-bg {
    transform: scale(1.05);
}

.playful-link-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

.playful-link-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.playful-link-en {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.playful-link-jp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.playful-link-jp::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='white' stroke-width='2.5' fill='none'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .playful-links {
        grid-template-columns: 1fr;
    }
    .playful-hero-content {
        padding: 0 30px;
    }
}
