/* 全体の背景色を変更 */
body {
    background-color: #e0fdc4; /* 背景色を指定された色に変更 */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* 青色の領域のスタイル */
.intro-banner {
    background-color: #0011ffe1; /* 青色 */
    color: white;
    padding: 5px;
    text-align: left;
    font-size: 20px;
}

/* メインナビゲーションのスタイル */
.main-nav {
    display: flex; /* 横並びにするためにflexを使用 */
    justify-content: center;
    background-color: #333;
    padding: 10px;
    margin: 0;
    flex-wrap: wrap;
}

.main-nav li {
    list-style-type: none;
    margin: 0 15px; /* メニューアイテム間の間隔 */
    position: relative; /* ドロップダウンの親になるために必要 */
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

/* ホバー時の色変更 */
.main-nav a:hover {
    color: #0a0a0a;
}

/* ドロップダウンメニューのスタイル */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2bd5ff;
    min-width: 240px; /* ✅ 横幅を広くする */
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.dropdown-content a {
    color: #1c1d1d;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    white-space: nowrap; /* ✅ 長い項目が改行されないように */
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ヒーローセクションのスタイル */
.hero {
    background: url('path_to_background_image.jpg') no-repeat center center/cover;
    color: rgb(0, 0, 0);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero .icon img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    margin-top: 20px;
}

/* セクション共通のスタイル */
section {
    padding: 40px;
    text-align: center;
}

/* お問い合わせセクションのボタン */
section#contact form button {
    margin-top: 30px; /* ボタンの上に空間を追加 */
}

/* ボタンのスタイル */
button {
    padding: 10px 20px;
    background-color: #008cba;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #005f73;
}

/* フッターの配置 */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
