body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #007bff;
    color: #fff;
    padding: 20px 0;
}

header img {
    height: 180px; /* または任意のサイズに調整 */
    border-radius: 50%; /* 画像を円形にする */
    background-color: #007bff; /* ヘッダーの背景色と一致する色に設定 */
    display: block;
    margin: 0 auto;
    padding: 10px; /* 画像の周りに少し余白を追加 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* オプションで影を追加 */
    border: 5px solid #007bff; /* ヘッダーの背景色と一致する枠線を追加 */
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden by default */
    cursor: pointer;
    padding: 15px;
    border: 0;
    background: none;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 2px;
    transition: transform 0.2s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

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

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #0056b3;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #navigation {
        display: none; /* Hide the menu */
        /* Add styles for the responsive menu */
    }

    #navigation.is-active {
        display: block; /* Show the menu when .is-active class is toggled */
        /* Add styles for the active state */
    }

    nav ul {
        flex-direction: column;
        /* Add styles for vertical menu layout */
    }

    nav ul li {
        margin: 0;
        /* Add styles for menu items */
    }
}

/* Active state styling for the hamburger */
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::before {
    transform: rotate(90deg);
    top: 0;
}

.hamburger.is-active .hamburger-inner::after {
    transform: rotate(90deg);
    bottom: 0;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../image/hero-image.png') no-repeat center center/cover;
    height: 400px;
    /* オーバーレイを追加するための疑似要素 */
    &:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5); /* 背景に暗い半透明のオーバーレイを追加 */
        border-radius: 8px; /* 角丸のボーダーを追加 */
        z-index: 1; /* テキストより下に */
    }
}

.hero-text {
    /* ...その他のスタイルは同じ... */
    position: relative;
    z-index: 2; /* オーバーレイより上に */
    color: #fff; /* 白色テキスト */
    text-shadow: 
        3px 3px 8px rgba(0, 0, 0, 0.6), /* 黒の影を強調 */
        -1px -1px 8px rgba(0, 0, 0, 0.6); /* テキスト周りの明るい部分にも影を追加 */
    padding: 1rem; /* 内側の余白を追加 */
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

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

section {
    padding: 50px 0;
    overflow: hidden;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #007bff;
}

section p, section ul {
    font-size: 1.1rem;
}

section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

@media (min-width: 768px) {
    header, nav, .container, footer {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    section {
        padding: 50px 0;
    }

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

    section .content-left,
    section .content-right {
        flex-basis: 45%;
    }

    section img {
        margin: 0;
    }
}
