/*
Theme Name: FREE-THROW
Author: 東和美術印刷
Description: 沖縄市の隠れ家的メンズヘアサロンのテーマ
Version: 0.8
*/ 

:root {
    --primary-color: #2c2c2c;
    --accent-color: #c8a367;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --spacing: 120px;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

/* WordPress管理バー対応 */
.admin-bar .header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

.header-inner {
    display: flex;
    align-items: center; /* vertical center */
    justify-content: space-between; /* logo left, other items right */
    height: 80px;
    padding: 0 24px; /* make padding a bit tighter for small screens */
}

.logo {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* ensure hamburger is visually at the far right of header */
.header > .hamburger,
.header .hamburger {
    margin-left: 12px;
}

/* On wider screens keep hamburger hidden and show full nav */
@media (min-width: 769px) {
    .hamburger { display: none !important; }
    .nav { display: block; }
}

/* On small screens hide desktop nav and right-align hamburger */
@media (max-width: 768px) {
    .nav { display: none; }
    .header-inner { padding: 0 16px; }
    /* put hamburger to the right side by keeping it as a direct child of .header */
    /* make header a flex container so .header-inner and .hamburger sit on one line */
    .header { display: flex; align-items: center; }
    .header-inner { flex: 1; }
    .hamburger { margin-left: 12px; margin-right: 16px; }
}

.nav a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-color, #c8a367);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

/* ヒーローセクション */
.hero {
    width: 100vw;
    min-width: 0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px; /* ヘッダーの高さ分を相殺 */
}

/* WordPress管理バー対応 - ヒーローセクション */
.admin-bar .hero {
    margin-top: -112px; /* ヘッダー(80px) + 管理バー(32px) */
}

@media (max-width: 782px) {
    .admin-bar .hero {
        margin-top: -126px; /* ヘッダー(80px) + 管理バー(46px) */
    }
}

.hero-slider {
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    animation: slideshow 9s linear infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 3s;
}

.hero-slide:nth-child(3) {
    animation-delay: 6s;
}

@keyframes slideshow {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    8% {
        opacity: 1;
        transform: scale(1.1);
    }
    33% {
        opacity: 1;
        transform: scale(1);
    }
    41% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: var(--font-main);
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content p {
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

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

/* オーバーレイ */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.10) 100%);
    z-index: 1;
}

/* セクション共通 */
section {
    padding: var(--spacing) 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

/* コンセプト */
.concept {
    background: var(--light-gray);
}

.concept-content {
    text-align: center;
    margin-bottom: 40px;
}

.concept-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 2;
}

.concept-features li {
    margin-bottom: 10px;
}

/* メニューセクション */
.menu-section {
    margin: 40px 0;
}

.menu-section-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.menu-price-note {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.menu-category {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.menu-category-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.menu-category-line {
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 15px;
}

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

.menu-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    line-height: 1.4;
    flex-direction: row !important;
}

/* より強力なルールを追加 */
ul.menu-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
}

.menu-list li span.menu-name {
    flex: 1 !important;
    text-align: left !important;
}

.menu-list li span.menu-price {
    flex-shrink: 0 !important;
    text-align: right !important;
    margin-left: auto !important;
}

/* Optionメニューの説明文を小さくする - 通常のテキストで制御 */
.menu-list li:first-child,
.menu-list li:nth-child(2) {
    font-size: 16px;
    line-height: 1.4;
}

/* 説明文部分を小さくするためのスタイル */
.menu-list li:first-child::before {
    content: "";
}

.menu-list li:first-child::after {
    content: "";
}

.menu-list li:nth-child(2)::before {
    content: "";
}

.menu-list li:nth-child(2)::after {
    content: "";
}

.menu-list li:last-child {
    border-bottom: none;
}

/* メニュー詳細ボタン */
.menu-more {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

/* メニューボタン - 最高優先度で適用 */
.menu-more a[class*="menu-button"],
.menu-more .menu-button,
a.menu-button,
.menu-button {
    display: inline-block !important;
    background: #ff8c00 !important;
    background: linear-gradient(135deg, #ff8c00, #ff6b00) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    border: 2px solid #ff8c00 !important;
    cursor: pointer !important;
    text-align: center !important;
    min-width: 150px !important;
    margin-top: 18px !important;
}

.menu-more a[class*="menu-button"]:hover,
.menu-more .menu-button:hover,
a.menu-button:hover,
.menu-button:hover {
    background: #ff6b00 !important;
    background: linear-gradient(135deg, #ff6b00, #ff8c00) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
    color: white !important;
    border-color: #ff6b00 !important;
}

.menu-price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-left: auto;
}

.menu-name {
    flex: 1;
    margin-right: 10px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

.menu-note {
    font-size: 12px;
    color: #ff8c00;
    font-style: normal;
    margin-top: 5px;
}

.menu-description {
    font-size: 11px;
    color: #ff8c00;
    font-style: normal;
    display: inline;
    margin-left: 5px;
    white-space: nowrap;
}

/* 店舗情報セクション */
.shop-info-section {
    background: var(--light-gray);
}

.shop-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.shop-map {
    margin-top: 40px;
    text-align: center;
}

.shop-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shop-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.shop-info-item {
    font-size: 16px;
    line-height: 1.6;
}

.shop-info-item strong {
    color: var(--primary-color);
    font-weight: bold;
}

.shop-info-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.shop-info-item a:hover {
    text-decoration: underline;
}

/* スタイルギャラリー */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.style-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.style-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.style-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    margin: 0;
    font-size: 16px;
}

/* ニュース */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.news-item time {
    color: #666;
    font-size: 14px;
    margin-right: 20px;
}

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

.news-item a:hover {
    color: var(--accent-color);
}

/* フッター */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-info h2 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-nav a[href^="tel:"] {
    font-weight: bold;
    opacity: 1;
}

.footer-sns {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: -30px;
}

.footer-sns a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-sns a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* PC版SNS - 電話番号の下 */
.footer-sns-pc {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.footer-sns-pc a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-sns-pc a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* スマホ版SNS - 下部中央 */
.footer-sns-mobile {
    display: none;
}

.copyright {
    text-align: center;
    font-size: 12px;
    opacity: 0.6;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map {
    margin-top: 0;
    text-align: right;
    align-self: start;
}

.footer-map iframe {
    width: 220px;
    height: 140px;
    border-radius: 8px;
    border: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 220px;
        gap: 24px;
    }
}

/* スマホでのみ改行を表示するクラス */
.sp-br {
    display: none;
}

/* PCでのみ改行を表示するクラス */
.pc-br {
    display: none !important;
}

/* タブレットサイズ対応（768px〜1024px） */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .style-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .concept-content {
        font-size: 17px;
    }
    
    .concept-menu-brief ul {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .sp-br {
        display: block;
    }
    
    .pc-br {
        display: block;
    }
    
    .menu-list li {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
    }
    
    ul.menu-list li {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-direction: row !important;
    }
    
    .menu-list li span.menu-name {
        flex: 1 !important;
        text-align: left !important;
    }
    
    .menu-list li span.menu-price {
        flex-shrink: 0 !important;
        text-align: right !important;
        margin-left: auto !important;
    }
    
    .menu-list li:first-child,
    .menu-list li:nth-child(2) {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .menu-note {
        font-size: 11px;
    }
    
    .menu-more {
        margin-top: 20px;
        padding: 15px;
    }
    
    .menu-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* スマホでPC版SNSを非表示、モバイル版を表示 */
    .footer-sns-pc {
        display: none;
    }
    
    .footer-sns-mobile {
        display: flex;
    }
    .footer-map {
        text-align: center;
        margin-top: 24px;
    }
    .footer-map iframe {
        width: 100%;
        max-width: 320px;
        height: 120px;
    }
    
    /* フッター全体の調整 */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-info h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .footer-info p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .footer-nav ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-nav a {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 11px;
        padding-top: 30px;
    }
    .header-inner {
        height: 60px;
        padding: 0 16px;
    }
    .logo {
        font-size: 20px;
    }
    .nav ul {
        gap: 24px;
    }
    .container {
        padding: 0 10px;
    }
    .hero {
        width: 100vw;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-slider {
        width: 100vw;
        max-width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-content h2 {
        font-size: 24px;
        line-height: 1.1;
    }
    .hero-content p {
        font-size: 12px;
        line-height: 1.2;
    }
    .section-title {
        font-size: 28px;
    }
    .hero-catch {
        display: block;
        white-space: pre-line;
        font-size: 28px;
        line-height: 1.3;
        word-break: keep-all;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .hero-catch::after {
        content: '';
    }
    .hero-content-bg {
        padding: 30px 16px;
        border-radius: 18px;
        margin: 0 8px;
        max-width: calc(100vw - 16px);
        box-sizing: border-box;
    }
    
    /* ヒーローセクション全体の調整 */
    .hero {
        margin-top: -40px;
    }
    
    .admin-bar .hero {
        margin-top: -72px;
    }
    body.index-page {
        padding-top: 60px;
    }
    
    /* セクション共通の調整 */
    section {
        padding: 80px 0;
    }
    
    /* コンセプトセクション調整 */
    .concept-content {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .concept-features {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .menu-section-title {
        font-size: 20px;
    }
    
    .menu-price-note {
        font-size: 12px;
    }
    
    .menu-category {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .menu-category-title {
        font-size: 16px;
    }
    
    .menu-list li {
        font-size: 14px;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        display: flex !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
    }
    
    ul.menu-list li {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-direction: row !important;
    }
    
    .menu-list li span.menu-name {
        flex: 1 !important;
        text-align: left !important;
    }
    
    .menu-list li span.menu-price {
        flex-shrink: 0 !important;
        text-align: right !important;
        margin-left: auto !important;
    }
    
    .menu-price {
        font-size: 14px;
    }
    
    .shop-info {
        padding: 20px;
    }
    
    .shop-map iframe {
        height: 300px;
    }
    
    .shop-info-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .shop-info-item {
        font-size: 14px;
    }
    
    /* スタイルグリッド調整 */
    .style-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .style-item h3 {
        font-size: 14px;
        padding: 12px;
    }
    
    /* ニュース調整 */
    .news-item {
        padding: 18px 0;
    }
    
    .news-item time {
        font-size: 13px;
        margin-right: 15px;
    }
    
    .news-item h3 {
        font-size: 16px;
    }
}

/* より小さなスマホ画面対応（480px以下） */
@media (max-width: 480px) {
    /* ヒーローセクション */
    .hero-content h2 {
        font-size: 20px;
        line-height: 1.0;
    }
    .hero-content p {
        font-size: 11px;
        line-height: 1.1;
    }
    .hero-catch {
        font-size: 20px;
        line-height: 1.0;
    }
    .hero-content-bg {
        padding: 24px 12px;
        margin: 0 4px;
        max-width: calc(100vw - 8px);
    }
    
    /* ヘッダー調整 */
    .header-inner {
        height: 50px;
        padding: 0 12px;
    }
    .logo {
        font-size: 18px;
    }
    
    /* コンテナ調整 */
    .container {
        padding: 0 8px;
    }
    
    /* セクション共通 */
    section {
        padding: 60px 0;
    }
    
    /* セクションタイトル調整 */
    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    /* コンセプトセクション */
    .concept-content {
        font-size: 14px;
        padding: 0 5px;
    }
    
    .concept-features {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .menu-section-title {
        font-size: 18px;
    }
    
    .menu-price-note {
        font-size: 11px;
    }
    
    .menu-category {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .menu-category-title {
        font-size: 14px;
    }
    
    .menu-list li {
        font-size: 13px;
        padding: 6px 0;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
    }
    
    ul.menu-list li {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-direction: row !important;
    }
    
    .menu-list li span.menu-name {
        flex: 1 !important;
        text-align: left !important;
    }
    
    .menu-list li span.menu-price {
        flex-shrink: 0 !important;
        text-align: right !important;
        margin-left: auto !important;
    }
    
    .menu-price {
        font-size: 13px;
    }
    
    .shop-info {
        padding: 15px;
    }
    
    .shop-map iframe {
        height: 250px;
    }
    
    .shop-info-item {
        font-size: 13px;
    }
    
    /* スタイルグリッド調整 */
    .style-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .style-item h3 {
        font-size: 13px;
        padding: 10px;
    }
    
    /* ニュース調整 */
    .news-item {
        padding: 15px 0;
    }
    
    .news-item time {
        font-size: 12px;
        margin-right: 10px;
    }
    
    .news-item h3 {
        font-size: 14px;
    }
    
    /* フッター調整 */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-info h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .footer-info p {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .footer-nav a {
        font-size: 12px;
    }
    
    .footer-map iframe {
        height: 100px;
    }
    
    .copyright {
        font-size: 10px;
        padding-top: 20px;
    }
}

/* 極小スマホ画面対応（360px以下） */
@media (max-width: 360px) {
    .hero-content h2 {
        font-size: 18px;
        line-height: 0.9;
    }
    .hero-content p {
        font-size: 10px;
        line-height: 1.0;
    }
    .hero-catch {
        font-size: 18px;
        line-height: 0.9;
    }
    .hero-content-bg {
        padding: 20px 10px;
        margin: 0 2px;
        max-width: calc(100vw - 4px);
    }
}

.hero-content-bg {
    background: rgba(0,0,0,0.18);
    border-radius: 16px;
    padding: 32px 24px;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.hero-content-bg h2,
.hero-content-bg p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* ハンバーガーメニュー - シンプルな実装 */
/* -----------------------------
     Mobile hamburger & nav
     Checkbox-driven, CSS-only menu. Clean, single block.
     ----------------------------- */

/* hide checkbox - it controls state */
#menu-toggle {
    position: absolute;
    left: -9999px;
}

.hamburger {
    display: none; /* shown only on small screens */
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1202; /* above overlay */
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1), opacity 0.14s linear;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* hamburger animation when checked */
#menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* mobile nav wrapper covers viewport; overlay via ::before */
.mobile-nav {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1201;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    /* overlay disabled — menu will have its own background */
    background: transparent;
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.mobile-nav > ul {
    position: absolute;
    top: 60px; /* header/nav bar height: menu panel sits just below */
    left: 0;
    right: 0;
    z-index: 1202; /* above overlay */
    list-style: none;
    padding: 20px 16px 32px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    background: #f0f0f2; /* light gray panel */
    border-radius: 0 0 8px 8px;
    max-width: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Close button inside the panel */
.mobile-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1210;
}
.mobile-close span { display: inline-block; }

.mobile-nav li {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-nav a {
    color: var(--primary-color);
    font-size: 18px;
    font-family: var(--font-accent);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 16px;
    display: inline-block;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--accent-color); }

/* When menu is open */
#menu-toggle:checked ~ .mobile-nav {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}
#menu-toggle:checked ~ .mobile-nav::before {
    opacity: 1;
}
#menu-toggle:checked ~ .mobile-nav li {
    opacity: 1;
    transform: translateY(0);
}

/* staggered delays for visible li items */
#menu-toggle:checked ~ .mobile-nav li:nth-child(1) { transition-delay: 0.06s; }
#menu-toggle:checked ~ .mobile-nav li:nth-child(2) { transition-delay: 0.10s; }
#menu-toggle:checked ~ .mobile-nav li:nth-child(3) { transition-delay: 0.14s; }
#menu-toggle:checked ~ .mobile-nav li:nth-child(4) { transition-delay: 0.18s; }
#menu-toggle:checked ~ .mobile-nav li:nth-child(5) { transition-delay: 0.22s; }

@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: block; }
    /* ensure mobile-nav exists in DOM but hidden until toggled */
}

/* ヒーローキャッチフレーズの基本設定 */
.hero-catch {
  display: inline;
}

.news {
  background: var(--light-gray);
}

body.index-page {
    padding-top: 80px;
} 

/* --- css/menu.css --- */
.menu-page {
    padding-top: 80px;
}

.page-header {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/menu-header.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    text-align: center;
}

.menu-section {
    padding: 4rem 0;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
    padding-left: 1rem;
    border-left: 4px solid #666;
}

.menu-items {
    display: grid;
    gap: 30px;
}

.menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-name {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.menu-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--accent-color);
}

.menu-description {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-color, #c8a367);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    letter-spacing: 2px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .page-header {
        height: 200px;
    }

    .page-title {
        font-size: 32px;
    }

    .menu-section {
        padding: 40px 0;
    }

    .menu-category {
        margin-bottom: 40px;
    }

    .menu-item {
        padding: 15px;
    }

    .header-inner {
        height: 60px;
        padding: 0 16px;
    }
    .logo {
        font-size: 20px;
    }
    .nav ul {
        gap: 24px;
    }
    body.menu-page {
        padding-top: 60px;
    }
}

/* --- css/access.css --- */
/* Access Page Styles */
.access-page {
    padding-top: 80px;
    background: var(--light-gray);
}

.page-header {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/access-header.jpg') center/cover;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    color: #fff;
    font-family: var(--font-accent);
    font-size: 48px;
    letter-spacing: 4px;
    text-align: center;
}

.access-section {
    padding: 4rem 0;
    background: #fff;
}

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

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto 2rem auto;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.access-info {
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding-left: 0;
    border-left: none;
    position: relative;
}

.info-section h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #666;
    margin: 0.8rem auto 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-left: 1rem;
}

.info-list li {
    margin-bottom: 1.5rem;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 1rem;
}

.info-list p {
    margin: 0;
    color: #333;
    padding-left: 0.5rem;
}

.transport-info {
    margin-top: 60px;
}

.transport-info h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.transport-list {
    list-style: none;
    padding: 0;
    margin-left: 1rem;
}

.transport-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.transport-list li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #666;
}

@media (max-width: 900px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .access-section {
        padding: 40px 0;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .parking-img {
        max-width: 100%;
        height: auto;
    }

    .access-info {
        padding: 20px;
    }

    .map-wrapper {
        height: 250px;
        max-width: 100%;
        padding-bottom: 0;
    }
}

/* アクセスページのスタイル */
.access-hero {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.access-hero h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.access-info {
    padding: 40px 0;
}

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

.map-container {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shop-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shop-info h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.shop-info dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin: 0;
}

.shop-info dt {
    font-weight: bold;
    color: #666;
}

.shop-info dd {
    margin: 0;
    color: #333;
}

.shop-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-info a:hover {
    color: #666;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .shop-info dl {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .shop-info dt {
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
        margin-top: 15px;
    }

    .shop-info dd {
        padding-left: 10px;
    }
}

.parking-section {
    padding: 1.5rem;
    border-radius: 6px;
}

.parking-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
    text-align: center;
    padding-left: 0;
    border-left: none;
}

.parking-section h3:after {
    display: none;
}

.parking-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.parking-img-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.parking-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.parking-details {
    text-align: center;
}

.parking-caption {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.parking-note {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@media (min-width: 768px) {
    .access-content {
        grid-template-columns: 1fr 1fr;
    }

    .parking-info {
        flex-direction: row;
        align-items: center;
    }

    .parking-img-wrap {
        flex: 0 0 50%;
    }

    .parking-details {
        flex: 0 0 50%;
        text-align: left;
        padding-left: 2rem;
    }
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-color, #c8a367);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    letter-spacing: 2px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

body.access-page {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
        padding: 0 16px;
    }
    .logo {
        font-size: 20px;
    }
    .nav ul {
        gap: 24px;
    }
    body.access-page {
        padding-top: 60px;
    }
}

/* --- css/column.css --- */
.column-section {
    padding: 4rem 0;
}

.column-list {
    display: grid;
    gap: 1.5rem;
}

.column-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.column-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.column-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.column-link .column-image {
  flex: 0 0 390px; /* 16:9のアスペクト比に基づいて計算 (220px × 16/9 ≈ 390px) */
  position: relative;
  overflow: hidden;
}

.column-link .column-content {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0; /* テキストのオーバーフロー防止 */
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.column-content time {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}

.column-content h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 0.75rem;
  overflow: hidden;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  -webkit-box-orient: vertical;
}

.column-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  -webkit-box-orient: vertical;
}

.read-more {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}

.column-link:hover .read-more::after {
  transform: translateX(4px);
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.column-content time {
    color: #666;
    font-size: 0.9rem;
}

.column-content h3 {
    font-size: 1.4rem;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.column-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.read-more {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  position: relative;
  padding-right: 1.5rem;
}

.read-more:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.read-more:hover:after {
    transform: translate(4px, -50%);
}

@media (max-width: 1024px) {
    .column-link .column-image {
        flex: 0 0 320px;
        min-width: 160px;
    }
  
    .column-link .column-content {
        padding: 1.25rem 1.5rem;
    }
  
    .column-content h3 {
        font-size: 1.1rem;
    }
  
    .column-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .column-item {
        height: auto;
    }
  
    .column-link {
        flex-direction: column;
    }
  
    .column-link .column-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
  
    .column-link .column-content {
        padding: 1.25rem;
    }
  
    .column-content h3 {
        font-size: 1.15rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }
  
    .column-content p {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
  .column-link .column-image {
    height: 180px;
  }
  
  .column-link .column-content {
    padding: 1rem;
  }
  
  .column-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .column-content p {
    font-size: 0.85rem;
  }
  
  .read-more {
    font-size: 0.85rem;
    padding-top: 0.75rem;
  }
}

@media (min-width: 768px) {
    .column-content {
        padding-left: 2rem;
    }
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-color, #c8a367);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo a {
    color: var(--primary-color, #2c2c2c);
    text-decoration: none;
    letter-spacing: 2px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

body.column-page {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .header-inner {
        height: 60px;
        padding: 0 16px;
    }
    .logo {
        font-size: 20px;
    }
    .nav ul {
        gap: 24px;
    }
    body.column-page {
        padding-top: 60px;
    }
}

/* --- assets/css/menu.css --- */
.menu-page {
    padding-top: 80px;
}

.page-header {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/menu-header.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    text-align: center;
}

.menu-section {
    padding: 80px 0;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.menu-items {
    display: grid;
    gap: 30px;
}

.menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-name {
    font-size: 18px;
    font-weight: bold;
    flex: 1;
}

.menu-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--accent-color);
}

.menu-description {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .page-header {
        height: 200px;
    }

    .page-title {
        font-size: 32px;
    }

    .menu-section {
        padding: 40px 0;
    }

    .menu-category {
        margin-bottom: 40px;
    }

    .menu-item {
        padding: 15px;
    }
}

/* --- assets/css/style.css --- */
:root {
    --primary-color: #2C3E50;
    --accent-color: #E74C3C;
    --text-color: #333333;
    --light-gray: #F5F5F5;
    --spacing: 120px;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.global-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.global-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: relative;
}

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

.global-nav a:hover::after {
    width: 100%;
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-content p {
    font-size: 18px;
}

/* セクション共通 */
section {
    padding: var(--spacing) 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

/* コンセプト */
.concept {
    background: var(--light-gray);
}

.concept-content {
    text-align: center;
    font-size: 18px;
}

/* スタイルギャラリー */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ニュース */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.news-item time {
    color: #666;
    font-size: 14px;
    margin-right: 20px;
}

/* フッター */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

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

.footer-nav a {
    color: white;
    text-decoration: none;
    line-height: 2;
}

.copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 40px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-inner {
        height: 60px;
    }

    .logo {
        font-size: 20px;
    }

    .global-nav {
        display: none; /* モバイルメニューは別途実装 */
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

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

/* ========================================
   Single Post Styles - Simple
   ======================================== */

.single-main {
  padding-top: 120px;
  padding-bottom: 60px;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.post-title {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px;
  line-height: 1.4;
}

.post-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
}

.post-date {
  color: var(--accent-color);
  font-weight: 500;
}

.post-category {
  color: #666;
}

.post-thumbnail {
  margin: 30px 0;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.post-content {
  line-height: 1.8;
  font-size: 16px;
  color: var(--text-color);
}

.post-content h2 {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 30px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
}

.post-content h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 25px 0 12px;
}

.post-content p {
  margin-bottom: 15px;
}

.post-content ul,
.post-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.post-content li {
  margin-bottom: 5px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 15px 0;
}

.post-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.post-tags {
  font-size: 14px;
  color: #666;
}

.post-tags a {
  color: var(--accent-color);
  text-decoration: none;
  margin-right: 10px;
}

.post-tags a:hover {
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .single-main {
    padding-top: 80px;
  }
  
  .single-post {
    margin: 0 10px;
    padding: 30px 20px;
  }
  
  .post-title {
    font-size: 24px;
  }
  
  .post-content {
    font-size: 15px;
  }
  
  .post-content h2 {
    font-size: 20px;
  }
  
  .post-content h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .single-post {
    margin: 0 5px;
    padding: 20px 15px;
  }
  
  .post-title {
    font-size: 20px;
  }
  
  .post-content {
    font-size: 14px;
  }
  
  .post-content h2 {
    font-size: 18px;
  }
  
  .post-content h3 {
    font-size: 15px;
  }
}

/* ========================================
   Back Button Styles
   ======================================== */

.back-button-container {
  text-align: center;
  margin: 40px 0 20px;
}

.back-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #ff8c00;
  cursor: pointer;
  text-align: center;
  min-width: 150px;
}

.back-button:hover {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  color: white;
  border-color: #ff6b00;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .back-button {
    padding: 10px 25px;
    font-size: 14px;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .back-button {
    padding: 8px 20px;
    font-size: 13px;
    min-width: 100px;
  }
}