/* 全体設定 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #ffffff;
}

h1, h2, h3 {
    margin: 0;
    padding: 0;
    font-weight: bold;
}

/* ナビゲーションバー */
.navbar-brand {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.navbar {
    display: flex; /* フレックスボックスを有効化 */
    justify-content: flex-start; /* 左寄せに設定 */
    align-items: center; /* 縦方向の中央揃え */
}

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background-color: #d5c2bb;
    border-bottom: 1px solid #b3a3a0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex; /* フレックスボックスを有効化 */
    justify-content: flex-start; /* 左寄せに設定 */
    align-items: center; /* 縦方向の中央揃え */
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #000000;
}

.brand-logo {
    max-height: 40px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.nav-link {
    color: #333;
    margin: 0 8px;
    font-size: 1rem;
    text-decoration: none;
    padding: 5px 10px;
}

.nav-link:hover {
    color: #6f5e4f;
    text-decoration: underline;
}

/* 共通セクションスタイル */
section {
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #333;
}

.section-underline {
    position: absolute;
    top: -1px;
    left: 0;
    transform: none;
    width: 30px;
    height: 2px;
    background-color: #78c800;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    color: #555;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px 0;
}

html {
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}