/*
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;
    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: clamp(1.2rem, 2.5vw, 1.5rem);
    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;
}

/* 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(3, 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(1.3rem, 2.5vw, 1.8rem);
    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
   ============================================ */

/* CRISP Color Variables */
.crisp-style {
    --crisp-bg: #eae8e3;
    --crisp-text: #1f140f;
    --crisp-accent: #0c3b2e;
    --crisp-light: #f5f4f2;
}

/* Base Styles */
.crisp-style {
    background-color: var(--crisp-bg);
    color: var(--crisp-text);
}

.crisp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

/* Hero Section */
.crisp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.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 8s ease;
}

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

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

.crisp-hero-content {
    position: absolute;
    bottom: 15%;
    left: 60px;
    z-index: 2;
    color: #fff;
}

.crisp-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.5);
}

.crisp-hero-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
}

.crisp-hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

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

    .crisp-hero-title {
        font-size: 2rem;
    }
}

/* Section Base */
.crisp-section {
    padding: 150px 0;
}

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

.crisp-section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--crisp-accent);
    margin-bottom: 30px;
}

.crisp-section-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 40px;
    letter-spacing: 0.02em;
}

.crisp-section-title-center {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.crisp-section-title-large {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 40px;
    letter-spacing: 0.02em;
}

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

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

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

/* Text Styles */
.crisp-text-block {
    max-width: 800px;
}

.crisp-lead-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 2.2;
    font-weight: 400;
    letter-spacing: 0.05em;
}

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

.crisp-text {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

.crisp-text-center {
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
    letter-spacing: 0.05em;
}

/* Grid Layout */
.crisp-grid {
    display: grid;
    gap: 80px;
    align-items: center;
}

.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-image-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--crisp-light);
}

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

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

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

/* Link Style */
.crisp-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--crisp-text);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--crisp-text);
    transition: all 0.3s ease;
    margin-top: 30px;
}

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

/* Button Style */
.crisp-btn {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #fff;
    background: var(--crisp-accent);
    text-decoration: none;
    padding: 18px 50px;
    transition: all 0.3s ease;
    margin-top: 40px;
}

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

/* 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-post-card {
    background: transparent;
}

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

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

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

.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 5px;
}

.crisp-post-date {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 10px;
}

.crisp-post-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.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: 700px;
    margin: 0 auto;
}

/* Mission Section */
.crisp-mission {
    padding-top: 180px;
    padding-bottom: 180px;
}

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

/* Animation on Scroll - Optional */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* =====================================================
   CRISP Style - Top Page
   ===================================================== */

/* Hero Section */
.crisp-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.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;
}

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

.crisp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.crisp-hero-lead {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.crisp-hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.crisp-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.2em;
}

.crisp-hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: #fff;
    margin: 15px auto 0;
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Section Common */
.crisp-section {
    padding: 120px 0;
}

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

.crisp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #333;
    margin-bottom: 30px;
}

.crisp-title-large {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.crisp-title-medium {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.crisp-text-block p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
}

.crisp-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.crisp-btn:hover {
    background: #333;
    color: #fff;
}

.crisp-btn-light {
    background: #fff;
    color: #1a1a1a;
}

.crisp-btn-light:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

.crisp-btn-text {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid #1a1a1a;
}

/* Mission Section */
.crisp-mission {
    background: #f8f8f8;
    position: relative;
}

.crisp-mission-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 40px;
}

.crisp-mission-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Service Section */
.crisp-service {
    background: #fff;
    text-align: center;
}

/* Restaurant Section */
.crisp-restaurant {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
}

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

.crisp-restaurant-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crisp-restaurant-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.crisp-restaurant .crisp-container {
    position: relative;
    z-index: 2;
}

.crisp-restaurant .crisp-label,
.crisp-restaurant .crisp-title-medium {
    color: #fff;
}

/* Careers Section */
.crisp-careers {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.crisp-careers .crisp-label,
.crisp-careers .crisp-title-medium {
    color: #fff;
}

.crisp-careers-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
}

.crisp-careers-link {
    text-decoration: none;
    color: #fff;
    text-align: center;
}

.crisp-careers-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    opacity: 0.7;
}

.crisp-careers-text {
    display: block;
    font-size: 18px;
    font-weight: 500;
}

.crisp-careers .crisp-btn {
    background: #fff;
    color: #1a1a1a;
}

/* News Section */
.crisp-news {
    background: #fff;
}

.crisp-news-list {
    margin: 40px 0;
}

.crisp-news-item {
    border-bottom: 1px solid #eee;
}

.crisp-news-link {
    display: flex;
    align-items: center;
    padding: 25px 0;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s ease;
}

.crisp-news-link:hover {
    opacity: 0.6;
}

.crisp-news-date {
    font-size: 13px;
    color: #999;
    width: 100px;
    flex-shrink: 0;
}

.crisp-news-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 5px 15px;
    background: #f5f5f5;
    margin-right: 20px;
    flex-shrink: 0;
}

.crisp-news-title {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

/* Learn Section */
.crisp-learn {
    background: #f8f8f8;
    padding: 80px 0;
}

.crisp-learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.crisp-learn-item {
    text-decoration: none;
    color: #1a1a1a;
}

.crisp-learn-thumb {
    overflow: hidden;
    margin-bottom: 15px;
}

.crisp-learn-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.crisp-learn-item:hover .crisp-learn-thumb img {
    transform: scale(1.05);
}

.crisp-learn-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Newsletter Section */
.crisp-newsletter {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.crisp-newsletter .crisp-label {
    color: #fff;
}

.crisp-newsletter-text {
    font-size: 14px;
    margin: 20px 0 30px;
    opacity: 0.8;
}

.crisp-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.crisp-newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    font-size: 14px;
}

.crisp-newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.crisp-newsletter .crisp-btn {
    background: #fff;
    color: #1a1a1a;
}

/* Responsive */
@media (max-width: 768px) {
    .crisp-section {
        padding: 80px 0;
    }
    
    .crisp-container {
        padding: 0 20px;
    }
    
    .crisp-mission-images {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .crisp-mission-images img {
        height: 200px;
    }
    
    .crisp-careers-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .crisp-news-link {
        flex-wrap: wrap;
    }
    
    .crisp-news-date {
        width: auto;
        margin-right: 15px;
    }
    
    .crisp-news-title {
        width: 100%;
        margin-top: 10px;
    }
    
    .crisp-learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .crisp-newsletter-form {
        flex-direction: column;
    }
}

/* CRISP Header */
.crisp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

.crisp-header.scrolled {
    background: rgba(255,255,255,0.95);
}

.crisp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.crisp-header-left,
.crisp-header-right {
    display: flex;
    gap: 30px;
}

.crisp-nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.crisp-header.scrolled .crisp-nav-link {
    color: #1a1a1a;
}

.crisp-nav-link:hover {
    opacity: 0.6;
}

.crisp-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.crisp-logo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    text-decoration: none;
}

.crisp-header.scrolled .crisp-logo a {
    color: #1a1a1a;
}

.crisp-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.crisp-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.crisp-header.scrolled .crisp-menu-toggle span {
    background: #1a1a1a;
}

.crisp-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    padding: 100px 40px;
    flex-direction: column;
    gap: 25px;
}

.crisp-mobile-menu.active {
    display: flex;
}

.crisp-mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .crisp-header-left,
    .crisp-header-right {
        display: none;
    }
    
    .crisp-menu-toggle {
        display: block;
    }
    
    .crisp-logo {
        position: relative;
        left: auto;
        transform: none;
    }
    
    .crisp-header-inner {
        justify-content: space-between;
    }
}

/* Body padding for fixed header */
body.home {
    padding-top: 0;
}

body:not(.home) {
    padding-top: 80px;
}

/* CRISP Footer */
.crisp-footer {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 60px 0;
}

.crisp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.crisp-footer-links,
.crisp-footer-services {
    display: flex;
    gap: 30px;
}

.crisp-footer-links a,
.crisp-footer-services a {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.crisp-footer-links a:hover,
.crisp-footer-services a:hover {
    color: #1a1a1a;
}

.crisp-footer-social {
    display: flex;
    gap: 20px;
}

.crisp-footer-social a {
    color: #666;
    transition: color 0.3s ease;
}

.crisp-footer-social a:hover {
    color: #1a1a1a;
}

.crisp-footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.crisp-footer-copyright p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

@media (max-width: 768px) {
    .crisp-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .crisp-footer-links,
    .crisp-footer-services {
        flex-direction: column;
        gap: 15px;
    }
}

/* Base font family */
body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Fix Hero Text Visibility */
.crisp-style .crisp-hero .crisp-hero-content {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    color: #fff !important;
    padding: 0 20px !important;
    left: auto !important;
    bottom: auto !important;
    right: auto !important;
}

.crisp-style .crisp-hero .crisp-hero-lead {
    font-size: clamp(28px, 5vw, 48px) !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    letter-spacing: 0.05em !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.crisp-style .crisp-hero .crisp-hero-sub {
    font-size: clamp(16px, 2.5vw, 22px) !important;
    font-weight: 400 !important;
    letter-spacing: 0.1em !important;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* CRISP Header with WP Menu */
.crisp-header .crisp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.crisp-header .crisp-logo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    text-decoration: none;
}

.crisp-header.scrolled .crisp-logo a {
    color: #1a1a1a;
}

.crisp-nav {
    display: flex;
}

.crisp-nav .crisp-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.crisp-nav .crisp-menu li {
    margin: 0;
}

.crisp-nav .crisp-menu li a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.crisp-header.scrolled .crisp-nav .crisp-menu li a {
    color: #1a1a1a;
}

.crisp-nav .crisp-menu li a:hover {
    opacity: 0.6;
}

.crisp-mobile-menu .crisp-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.crisp-mobile-menu .crisp-mobile-menu-list li {
    margin-bottom: 20px;
}

.crisp-mobile-menu .crisp-mobile-menu-list li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1em;
}

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

/* Text-based Hero Section */
.crisp-hero-text {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #e8e8e8;
    padding: 120px 40px 80px;
    position: relative;
}

.crisp-hero-text-inner {
    max-width: 900px;
    text-align: center;
}

.crisp-hero-title {
    font-size: clamp(40px, 10vw, 100px);
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.crisp-hero-desc {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 2;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.crisp-hero-text .crisp-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 11px;
    letter-spacing: 0.2em;
}

.crisp-hero-text .crisp-hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: #666;
    margin: 15px auto 0;
    animation: scrollLine 1.5s ease-in-out infinite;
}

/* Hero Image Section */
.crisp-hero-image {
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

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

/* Header adjustments for light background */
.crisp-header .crisp-logo a,
.crisp-header .crisp-nav .crisp-menu li a,
.crisp-header .crisp-menu-toggle span {
    color: #1a1a1a;
}

.crisp-header.scrolled .crisp-logo a,
.crisp-header.scrolled .crisp-nav .crisp-menu li a {
    color: #1a1a1a;
}

/* Button white variant */
.crisp-btn-white {
    background: #fff;
    color: #1a1a1a;
}

.crisp-btn-white:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .crisp-hero-text {
        padding: 100px 20px 60px;
    }
    
    .crisp-hero-title {
        font-size: clamp(32px, 12vw, 60px);
    }
    
    .crisp-hero-image {
        height: 50vh;
    }
}

/* =====================================================
   CRISP Style - Accurate Design
   ===================================================== */

/* Hero Text Section - Exact Match */
.crisp-hero-text {
    background: #e8e8e8 !important;
    padding: 140px 60px 100px !important;
    min-height: auto !important;
    display: block !important;
}

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

.crisp-hero-title {
    font-size: clamp(48px, 12vw, 120px) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    color: #1a1a1a !important;
    margin-bottom: 80px !important;
    letter-spacing: -0.03em !important;
}

.crisp-hero-desc {
    font-size: clamp(18px, 2.5vw, 24px) !important;
    font-weight: 700 !important;
    line-height: 2.2 !important;
    color: #333 !important;
    text-align: justify !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* Hero Image Grid - Full Width, Left 1 + Right 2 */
.crisp-hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 15px !important;
    background: #e8e8e8 !important;
    box-sizing: border-box !important;
}

.crisp-hero-grid-left {
    display: flex !important;
}

.crisp-hero-grid-left img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    min-height: 600px !important;
}

.crisp-hero-grid-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.crisp-hero-grid-right img {
    width: 100% !important;
    height: calc(50% - 7.5px) !important;
    object-fit: cover !important;
    flex: 1 !important;
}

/* KV Full Width Image */
.crisp-kv {
    width: 100% !important;
    height: 70vh !important;
    overflow: hidden !important;
}

.crisp-kv img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Responsive */
@media (max-width: 768px) {
    .crisp-hero-text {
        padding: 100px 30px 60px !important;
    }
    
    .crisp-hero-title {
        font-size: 40px !important;
        margin-bottom: 50px !important;
    }
    
    .crisp-hero-desc {
        font-size: 16px !important;
        line-height: 2 !important;
    }
    
    .crisp-hero-grid {
        grid-template-columns: 1fr !important;
    }
    
    .crisp-hero-grid-left img {
        min-height: 300px !important;
    }
    
    .crisp-hero-grid-right {
        flex-direction: row !important;
    }
    
    .crisp-hero-grid-right img {
        width: calc(50% - 7.5px) !important;
        height: 200px !important;
    }
    
    .crisp-kv {
        height: 40vh !important;
    }
}

/* Hero Title - Original Style */
.crisp-hero-title {
    font-size: clamp(40px, 10vw, 100px) !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: #1a1a1a !important;
    margin-bottom: 60px !important;
    letter-spacing: -0.02em !important;
}

/* Hero Title & Catchcopy - Exact Balance */
.crisp-hero-text {
    background: #e8e8e8 !important;
    padding: 180px 80px 120px !important;
    min-height: auto !important;
}

.crisp-hero-text-inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.crisp-hero-title {
    font-size: clamp(60px, 14vw, 160px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    color: #1a1a1a !important;
    margin-bottom: 100px !important;
    letter-spacing: -0.02em !important;
}

.crisp-hero-desc {
    font-size: clamp(15px, 1.8vw, 20px) !important;
    font-weight: 700 !important;
    line-height: 2.4 !important;
    color: #333 !important;
    text-align: center !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .crisp-hero-text {
        padding: 120px 30px 80px !important;
    }
    
    .crisp-hero-title {
        font-size: 48px !important;
        margin-bottom: 60px !important;
    }
    
    .crisp-hero-desc {
        font-size: 14px !important;
    }
}

/* Header - Logo Right & Smaller */
.crisp-header .crisp-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 15px 40px !important;
}

.crisp-header .crisp-nav {
    flex: 1 !important;
}

.crisp-header .crisp-logo-right {
    flex-shrink: 0 !important;
    margin-left: 40px !important;
}

.crisp-header .crisp-logo-right a {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
}

/* Hero Title Color */
.crisp-hero-title {
    color: #0c3b2e !important;
}

/* Hero Description - Multiple Paragraphs */
.crisp-hero-desc {
    text-align: left !important;
}

.crisp-hero-desc p {
    font-size: clamp(15px, 1.8vw, 18px) !important;
    font-weight: 500 !important;
    line-height: 2.2 !important;
    color: #333 !important;
    margin-bottom: 1.5em !important;
}

.crisp-hero-desc p:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    .crisp-header .crisp-nav {
        display: none !important;
    }
    
    .crisp-header .crisp-logo-right {
        margin-left: 0 !important;
    }
}

/* Hero Description - Bold Gothic, Larger Size */
.crisp-hero-desc p {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif !important;
    font-size: clamp(18px, 2.2vw, 24px) !important;
    font-weight: 900 !important;
    line-height: 2.2 !important;
    color: #333 !important;
    margin-bottom: 1.8em !important;
}

/* Reservation Button */
.reservation-button-wrapper {
    margin: 30px 0;
    text-align: center;
}

.btn--reservation {
    display: inline-block;
    padding: 18px 40px;
    background: #0c3b2e !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn--reservation:hover {
    background: #1a5a47 !important;
    transform: translateY(-2px);
}

/* Form Event Section */
.form-section--event {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-row--half {
    display: flex;
    gap: 20px;
}

.form-row--half .form-col {
    flex: 1;
}

.form-static {
    padding: 12px 0;
    color: #333;
    margin: 0;
}

input[readonly] {
    background: #f0f0f0;
    color: #666;
}

@media (max-width: 600px) {
    .form-row--half {
        flex-direction: column;
        gap: 0;
    }
}
