/* 和のデザイン変数 */
:root {
    --wood-dark: #3e2723;   /* 重厚な木目色 */
    --wood-light: #d7ccc8;  /* 明るい木の色 */
    --bg-paper: #f9f7f2;    /* 和紙のような柔らかな白 */
    --text-black: #1a1a1a;
    --accent-gold: #c5a059; /* 落ち着いた金（真鍮色） */
    --font-mincho: 'Shippori Mincho B1', serif;
    --font-jp: 'Noto Serif JP', serif;
}

/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-paper);
    color: var(--text-black);
    font-family: var(--font-jp);
    line-height: 2;
    overflow-x: hidden;
}

/* 木目調の背景デコレーション（疑似的に表現） */
.wood-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        rgba(215, 204, 200, 0.05),
        rgba(215, 204, 200, 0.05) 1px,
        transparent 1px,
        transparent 50px
    );
    pointer-events: none;
    z-index: -1;
}

/* ヘッダー */
header {
    height: 100px;
    background-color: var(--bg-paper);
    border-bottom: 3px solid var(--wood-dark);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wood-dark);
    letter-spacing: 0.2em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-black);
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent-gold);
}

/* ヒーローセクション */
.hero {
    padding: 80px 0;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 1.2;
    position: relative;
    padding: 20px;
}

.hero-image img {
    width: 100%;
    display: block;
    box-shadow: 15px 15px 0 var(--wood-light);
}

.frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--wood-dark);
    border-left: 5px solid var(--wood-dark);
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-family: var(--font-mincho);
    font-size: 3rem;
    line-height: 1.4;
    margin-bottom: 30px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 30px;
}

/* 障子風グリッド */
.shoji-section {
    padding-bottom: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.shoji-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.shoji-panel {
    background-color: var(--white);
    border: 10px solid var(--wood-dark);
    padding: 40px;
    background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://www.transparenttextures.com/patterns/natural-paper.png');
}

.panel-inner {
    border: 1px solid var(--wood-light);
    padding: 30px;
    height: 100%;
}

.category {
    font-family: var(--font-mincho);
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.shoji-panel h2 {
    font-family: var(--font-mincho);
    font-size: 2rem;
    margin-bottom: 30px;
}

.panel-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 30px;
    filter: sepia(0.2);
}

/* 木目バナー */
.wood-banner {
    background-color: var(--wood-dark);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

.banner-inner p {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    letter-spacing: 0.5em;
}

/* フッター */
footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--wood-light);
}

footer p {
    font-size: 0.85rem;
    color: var(--wood-dark);
    letter-spacing: 0.1em;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .shoji-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        padding-left: 0;
        border-left: none;
    }
}