﻿-----

はい、承知いたしました。改めてCSSコードを書き出します。

以下のコードブロックから、`style.css` の内容をコピーしてご使用ください。

-----

```css
/* ベーススタイル */
:root {
    --primary-color: #2F3640; /* ベースとなる暗めの色（墨色に近い） */
    --accent-color: #D4AF37; /* 華やかさを出すゴールド（金茶に近い） */
    --text-color: #E6E6E6; /* 明るめのグレー、視認性のため */
    --dark-bg: #1A1A1A; /* 全体の最も暗い背景色 */
    --light-bg: #2B2B2B; /* セクションの少し明るい背景色 */
    --white-soft: #F0F0F0; /* 純粋な白ではなく、柔らかい白 */
    --font-serif-jp: 'Noto Serif JP', serif;
    --font-serif-en: 'Playfair Display', serif;
    --font-sans: 'Arial', sans-serif;
}

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

body {
    font-family: var(--font-serif-jp);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-bg);
    scroll-behavior: smooth;
}

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

/* ヘッダー */
header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4); /* 影を強調し、高級感を出す */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif-en);
    font-size: 2.2em;
    color: var(--accent-color); /* ロゴをゴールドに */
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color); /* ホバー色をゴールドに */
}

.language-switcher a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 10px;
    font-size: 0.9em;
}

.language-switcher a.active {
    font-weight: bold;
    color: var(--accent-color);
}

/* ヒーローセクション */
.hero {
    height: 70vh;
    background: url('https://via.placeholder.com/1600x900?text=Beautiful+Japanese+House') no-repeat center center/cover; /* 背景画像を必ず差し替えてください */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-soft); /* 柔らかい白の文字 */
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* やや透明感のあるオーバーレイ */
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero-content h2 {
    font-family: var(--font-serif-en);
    font-size: 3.8em; /* より大きく */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* 文字の影で華やかさを出す */
}

.hero-content p {
    font-size: 1.4em; /* 少し大きく */
    margin-bottom: 40px; /* ボタンとの間隔を広げる */
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color); /* ボタンの文字色を暗い色に */
    padding: 16px 35px; /* ボタンを大きく */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em; /* ボタン文字も大きく */
    font-weight: 700; /* 太字に */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* ボタンにも影 */
}

.btn:hover {
    background-color: #C29F2B; /* 少し落ち着いたゴールドに */
    transform: translateY(-3px); /* 浮き上がるアニメーション */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-small {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px; /* 少し大きく */
    font-size: 1em;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #4A515A;
}

/* 共通セクションスタイル */
.section-padding {
    padding: 100px 0; /* セクションの上下パディングを広げる */
}

.section-padding h3 {
    font-family: var(--font-serif-en);
    font-size: 3em; /* 見出しを大きく */
    text-align: center;
    margin-bottom: 50px; /* 下のマージンを広げる */
    color: var(--accent-color); /* 見出しの色をゴールドに */
    position: relative;
    padding-bottom: 15px; /* 下線との間隔を広げる */
}

.section-padding h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px; /* 下線を長く */
    height: 4px; /* 下線を太く */
    background-color: var(--accent-color);
    border-radius: 2px; /* 下線を丸く */
}

.section-padding p {
    text-align: center;
    max-width: 900px; /* テキスト幅を広げる */
    margin: 0 auto 60px; /* 下のマージンを広げる */
    font-size: 1.15em; /* フォントサイズを少し大きく */
    color: var(--text-color);
}

.bg-light {
    background-color: var(--light-bg);
}

/* イントロダクションハイライト */
.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 40px; /* 間隔を広げる */
    flex-wrap: wrap;
    margin-top: 50px;
}

.highlight-item {
    text-align: center;
    width: 30%;
    min-width: 300px; /* 最小幅を少し広げる */
    background-color: var(--light-bg);
    padding: 30px; /* パディングを広げる */
    border-radius: 10px; /* 角を丸く */
    box-shadow: 0 6px 15px rgba(0,0,0,0.25); /* 影を強調 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-8px); /* 浮き上がりを大きく */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.highlight-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* 角を丸く */
    margin-bottom: 25px; /* マージンを広げる */
}

.highlight-item h4 {
    font-family: var(--font-serif-jp);
    font-size: 1.6em; /* フォントサイズを大きく */
    color: var(--accent-color);
    margin-bottom: 15px;
}

.highlight-item p {
    font-size: 1em;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
    color: var(--text-color);
}

/* 体験グリッド */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* 最小幅を広げる */
    gap: 40px; /* 間隔を広げる */
    margin-top: 50px;
}

.experience-item {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.experience-item img {
    width: 100%;
    height: 280px; /* 画像の高さを少し高く */
    object-fit: cover;
    display: block;
}

.experience-item h4 {
    font-family: var(--font-serif-jp);
    font-size: 1.7em; /* フォントサイズを大きく */
    color: var(--accent-color);
    margin: 25px 25px 15px;
}

.experience-item p {
    font-size: 1.05em;
    line-height: 1.6;
    padding: 0 25px 25px;
    text-align: left;
    margin-bottom: 0;
    color: var(--text-color);
}

.experience-item .btn-small {
    margin: 0 25px 25px;
}

/* 宿泊詳細 */
.accommodation-details {
    display: flex;
    gap: 60px; /* 間隔を広げる */
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.accommodation-details img {
    flex: 1;
    min-width: 400px; /* 最小幅を広げる */
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.accommodation-text {
    flex: 1;
    min-width: 350px;
}

.accommodation-text h4 {
    font-family: var(--font-serif-jp);
    font-size: 2.5em; /* 大きく */
    color: var(--accent-color);
    margin-bottom: 25px;
}

.accommodation-text p {
    text-align: left;
    margin-bottom: 25px;
    color: var(--text-color);
}

.accommodation-text ul {
    list-style: none;
    margin-bottom: 35px;
}

.accommodation-text ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23D4AF37"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center; /* チェックマークの色をゴールドに */
    background-size: 20px; /* チェックマークを大きく */
    padding-left: 30px; /* 間隔を広げる */
    margin-bottom: 12px;
    font-size: 1.05em;
    color: var(--text-color);
}

/* ギャラリー */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px; /* 間隔を広げる */
    margin-top: 50px;
}

.gallery-grid img {
    width: 100%;
    height: 280px; /* 高さを揃える */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* 影を強調 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05); /* 拡大を大きく */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* アクセス */
.access-info {
    display: flex;
    gap: 50px; /* 間隔を広げる */
    flex-wrap: wrap;
    margin-top: 50px;
}

.access-map {
    flex: 2;
    min-width: 400px;
    height: 500px; /* マップを大きく */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.access-text {
    flex: 1;
    min-width: 350px;
}

.access-text h4 {
    font-family: var(--font-serif-jp);
    font-size: 2em;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.access-text p {
    text-align: left;
    margin-bottom: 20px;
    color: var(--text-color);
}

.access-text ul {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 25px; /* パディングを広げる */
}

.access-text ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--text-color);
}

.access-text ul li::before {
    content: '?';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em; /* ドットを大きく */
}

/* お問い合わせフォーム */
.contact-form {
    max-width: 800px; /* フォームの幅を広げる */
    margin: 50px auto 0;
    background-color: var(--light-bg);
    padding: 50px; /* パディングを広げる */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* 影を強調 */
}

.form-group {
    margin-bottom: 30px; /* グループ間の間隔を広げる */
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.15em; /* ラベル文字を大きく */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px; /* 入力欄を大きく */
    border: 1px solid #555;
    border-radius: 8px; /* 角を丸く */
    font-size: 1.05em;
    font-family: var(--font-sans);
    background-color: #3A3A3A;
    color: var(--white-soft);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3); /* フォーカス時に柔らかなゴールドの光を出す */
}

.contact-form .btn {
    width: 100%;
    padding: 18px; /* ボタンを大きく */
    font-size: 1.3em;
}

/* フッター */
footer {
    background-color: var(--dark-bg);
    color: var(--text-color);
    padding: 40px 0; /* パディングを広げる */
    text-align: center;
    font-size: 0.95em;
    border-top: 1px solid rgba(255,255,255,0.1); /* 上部に細い線を追加 */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 20px; /* 間隔を広げる */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: none; /* ホバーで下線なし */
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8em;
    }

    nav ul {
        display: none; /* モバイルナビゲーショントグルで切り替えることを想定 */
    }

    header .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.8em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1.1em;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-padding h3 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .section-padding p {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .intro-highlights,
    .experience-grid,
    .accommodation-details,
    .access-info {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .highlight-item,
    .experience-item,
    .accommodation-details img,
    .accommodation-text,
    .access-map,
    .access-text {
        width: 100%;
        max-width: 500px;
    }

    .highlight-item h4,
    .experience-item h4 {
        font-size: 1.4em;
    }

    .accommodation-text h4 {
        font-size: 2em;
    }

    .access-map {
        height: 400px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .section-padding h3 {
        font-size: 1.8em;
    }
}
```