/* ベーススタイル */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* 高田由子さんのサイトで使われているようなモダンなフォントを選定 */
    margin: 0;
    padding: 0;
    background-color: #f8f3ed; /* 落ち着いたベージュ系の背景色 */
    color: #333; /* 暗めのグレーで落ち着いた雰囲気 */
    overflow-x: hidden;
}

/* ヘッダー */
header {
    background-color: #d8b59c; /* 高田由子さんのサイトに近い淡いピンクベージュ系 */
    padding: 20px;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff; /* 白でシンプルに */
    text-decoration: none;
    font-weight: bold;
}

/* メインビジュアル */
#main-visual {
    position: relative;
    height: 400px;
    background-color: #f2e7da; /* 落ち着いた暖色系 */
}

#main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.main-visual-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #333; /* 落ち着いた濃いグレー */
}

.main-visual-text h1 {
    font-size: 2.8em;
    font-weight: 400; /* 軽いフォントウェイトで洗練された印象 */
    margin-bottom: 0.5em;
}

.main-visual-text p {
    font-size: 1.4em;
}

/* 各セクション */
section {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff; /* セクションの背景を白にしてクリアに */
    border-bottom: 1px solid #e6e1dc; /* 各セクションを薄いラインで区切る */
}

section h2 {
    color: #d8b59c; /* 淡いピンクベージュのタイトル */
    margin-bottom: 20px;
    font-weight: 600;
}

/* ボタン */
.button {
    background-color: #d8b59c;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px; /* 丸みを強調したボタンで柔らかい印象を演出 */
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #c49a84; /* ボタンのホバー時の色を少し濃く */
}

/* 動的コンテンツ */
.news-item, .blog-item {
    background-color: #f8f3ed;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
}

.news-item h3, .blog-item h3 {
    color: #d8b59c;
}

.news-item span, .blog-item span {
    color: #999;
    font-size: 0.9em;
}

.banner-item {
    margin: 20px auto;
    text-align: center;
}

.banner-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* フッター */
footer {
    background-color: #d8b59c;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

/* アニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
