/* =========================================
   デザイン変数
========================================= */
:root {
    --primary-color: #2c363f; /* 墨色 */
    --accent-color: #cda966;  /* 落ち着いた金色 */
    --bg-light: #fbfaf5;      /* 和紙風の白 */
    --text-main: #333;
    --font-serif: 'Noto Serif JP', serif;
}

/* =========================================
   全体設定
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.8;
    letter-spacing: 0.04em;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* =========================================
   ヘッダー＆ロゴ
========================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(251, 250, 245, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

/* ロゴ全体のレイアウト */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* ロゴ画像と文字の間の余白 */
    text-decoration: none;
}

/* ロゴ画像（白背景を透過） */
.logo img {
    height: 50px;
    width: auto;
    mix-blend-mode: multiply;
}

/* ロゴ横のテキスト部分 */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.15em;
    margin-bottom: 2px;
    line-height: 1;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    line-height: 1;
}

/* ナビゲーションメニュー */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* =========================================
   ヒーローエリア
========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(251, 250, 245, 0.6), rgba(251, 250, 245, 0.6)),
                url('https://images.unsplash.com/photo-1528310901877-62f928a3838b?auto=format&fit=crop&q=80&w=1600') center/cover;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1rem;
    color: #444;
}

/* =========================================
   見出し
========================================= */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

/* =========================================
   紹介セクション
========================================= */
.profiles-section {
    background-color: #f4f3ed;
}

.profile-card {
    background: #fff;
    padding: 50px;
    margin-bottom: 50px;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.name {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.name span {
    font-size: 0.9rem;
    margin-left: 10px;
    color: #666;
}

.profile-details {
    margin: 35px 0;
}

.profile-details h4 {
    border-left: 2px solid var(--accent-color);
    padding-left: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.profile-details ul {
    list-style: none;
    padding-left: 15px;
}

.profile-details li::before {
    content: "・";
    color: var(--accent-color);
    margin-left: -15px;
}

.quote {
    font-style: italic;
    color: var(--accent-color);
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-light);
    border: 1px solid #f0eee5;
}

/* =========================================
   料金表
========================================= */
.price-box {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid var(--accent-color);
    padding: 50px;
    background: #fff;
}

.price-amount {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin: 15px 0;
}

.price-notes {
    list-style: none;
    font-size: 0.85rem;
    color: #777;
    margin-top: 25px;
}

/* =========================================
   予約（ダークトーン）
========================================= */
.reservation-dark {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.reservation-dark .section-title {
    color: #fff;
}

.tel-box {
    margin-top: 50px;
}

.tel-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.tel-number {
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.tel-number:hover {
    opacity: 0.8;
}

/* =========================================
   フッター
========================================= */
footer {
    text-align: center;
    padding: 50px 0;
    font-size: 0.75rem;
    background: #fff;
    color: #999;
}

/* =========================================
   スクロールアニメーション
========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   モバイル対応
========================================= */
@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    .header-inner { height: 70px; }
    .nav-links { display: none; }
    .profile-card { padding: 30px; }
    .tel-number { font-size: 1.8rem; }
    .site-name { font-size: 1.2rem; }
}