/* テンプレート40: カフェ/マガジン風 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Noto+Serif+JP:wght@400;600;700&display=swap');

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

body {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    line-height: 2;
    color: #3e2723;
    background: linear-gradient(180deg, #fffaf0 0%, #fdf5e6 100%);
    min-height: 100vh;
}

/* センターロゴヘッダー */
.top-header {
    background: #fffaf0;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #d7ccc8;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #5d4037;
    letter-spacing: 0.1em;
}

.site-tagline {
    font-size: 0.85rem;
    color: #8d6e63;
    margin-top: 8px;
    letter-spacing: 0.2em;
}

/* ナビゲーション */
.main-nav {
    background: #5d4037;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s;
}

.main-nav.scrolled {
    box-shadow: 0 4px 20px rgba(93, 64, 55, 0.3);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.main-nav a {
    display: block;
    padding: 18px 25px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover, .main-nav a.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: #bcaaa4;
}

/* ハンバーガー */
.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.active span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #5d4037;
    padding: 100px 30px;
    transition: right 0.4s;
    z-index: 999;
}

.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav a { display: block; padding: 15px 0; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); }

/* ヒーロー */
.hero-section {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.7) 0%, rgba(62, 39, 35, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    letter-spacing: 0.2em;
}

/* メインコンテンツ */
.main-content {
    padding: 60px 0;
}

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

/* マガジンレイアウト */
.magazine-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.main-article {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(93, 64, 55, 0.1);
}

.main-article-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.main-article-body {
    padding: 35px;
}

.article-category {
    display: inline-block;
    background: #8d6e63;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.article-title {
    font-size: 1.6rem;
    color: #3e2723;
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-excerpt {
    color: #6d4c41;
    font-size: 0.95rem;
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-article {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(93, 64, 55, 0.08);
    transition: all 0.3s;
}

.sidebar-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
}

.sidebar-article-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.sidebar-article-body {
    padding: 20px;
}

.sidebar-article-title {
    font-size: 1rem;
    color: #3e2723;
    line-height: 1.5;
}

/* コンテンツボックス */
.content-box {
    background: #fff;
    border-radius: 8px;
    padding: 45px;
    box-shadow: 0 5px 25px rgba(93, 64, 55, 0.08);
    margin-bottom: 40px;
}

.content-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #5d4037;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d7ccc8;
}

.content-box p {
    color: #5d4037;
    margin-bottom: 15px;
}

/* フッター */
.site-footer {
    background: #3e2723;
    color: rgba(255,255,255,0.7);
    padding: 50px 30px;
    text-align: center;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-nav a:hover { color: #bcaaa4; }

/* サイトマップ */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { margin-bottom: 12px; padding-left: 20px; position: relative; }
.sitemap-list li::before { content: '◆'; position: absolute; left: 0; color: #8d6e63; font-size: 0.6rem; }
.sitemap-list a { color: #5d4037; text-decoration: none; }
.sitemap-list a:hover { color: #8d6e63; }

/* トップへ戻る */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8d6e63 0%, #5d4037 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(93, 64, 55, 0.3);
    transition: all 0.3s;
    z-index: 998;
}

.back-to-top:hover { transform: translateY(-5px); }

/* フェードイン */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .magazine-grid { grid-template-columns: 1fr; }
    .main-nav ul { display: none; }
    .main-nav { position: relative; padding: 15px; }
    .hamburger { display: block; }
    .mobile-nav { display: block; }
    .hero-title { font-size: 2rem; }
    .content-box { padding: 30px 25px; }
}
