/* 全体設定 */
:root {
    --bg-color: #fdfaf5; /* 柔らかな紙の色 */
    --main-text: #4a3a3a; /* 焦げ茶 */
    --accent-gold: #c5a059; /* 真鍮・ゴールド系 */
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--main-text);
    font-family: "Sawarabi Mincho", serif; /* 明朝体推奨 */
    overflow-x: hidden;
}

/* ロゴ */
.logo {
    position: absolute;
    top: 30px;
    left: 40px;
    border: 1px solid var(--main-text);
    padding: 10px 30px;
    border-radius: 50%; /* 楕円形 */
    font-size: 1.2rem;
}

/* SNSサイドバー */
.sns-sidebar {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 10;
}
.sns-link {
    writing-mode: vertical-rl;
    text-decoration: none;
    color: var(--main-text);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: 0.3s;
}
.sns-link:hover { color: var(--accent-gold); }

/* ハンバーガーメニュー */
.hamburger {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--main-text);
    margin-bottom: 8px;
    transition: 0.3s;
}

/* ナビゲーションメニュー */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(253, 250, 245, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 90;
}
.nav-menu.active { right: 0; }
.nav-menu ul { list-style: none; text-align: center; }
.nav-menu li { margin: 30px 0; }
.nav-menu a { text-decoration: none; color: var(--main-text); font-size: 2rem; }

/* メインビジュアル・スライダー */
.hero {
    padding: 120px 10% 60px 150px;
    position: relative;
}
.slider {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    border: 1px solid #ddd;
}
.slide-track {
    display: flex;
    width: calc(100% * 5);
    height: 100%;
    animation: scroll 25s infinite linear;
}
.slide {
    width: 100%;
    background: #eee; /* ここに画像を入れる */
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--bg-color);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% * 5)); }
}

.hero-text {
    margin-top: 30px;
    text-align: right;
}
.hero-text h1 { font-weight: normal; color: var(--accent-gold); }

/* ニュース */
.news {
    padding: 60px 10% 100px 150px;
}
.news h2 { font-weight: normal; margin-bottom: 30px; }
.news-list { list-style: none; padding: 0; border-top: 1px solid #ccc; }
.news-list li { padding: 20px 0; border-bottom: 1px solid #eee; }
.news-list .date { color: var(--accent-gold); margin-right: 20px; }
