<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* ヘッダー */
header {
    position: relative;
    text-align: center;
    color: white;
}

.header-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
}

header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ナビゲーション */
nav {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcc66;
}

/* セクションの共通スタイル */
section {
    padding: 50px 15px;
    text-align: center;
    background: white;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2em;
    color: #444;
}

/* メインコンテンツのテキスト全般*/
.textbox {
    max-width: 400px;
    margin: auto;
}

.textbox p {
    text-align: left;
}

/* メニューセクション */
.menu-item {
    margin-bottom: 30px;
}

.menu-item img , .item img{
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #555;
}

#google-map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 のアスペクト比 */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* フッター */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
</pre></body></html>