/* ベーススタイル */
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00359F;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: #333;
}
nav a:hover {
    color: #00359F;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #00359F;
    margin: 2px 0;
}

/* メインコンテンツ */
main {
    padding: 40px 0;
}
h1, h2 {
    color: #00359F;
}
.hero {
    background-color: #f0f0f0;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}
.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* 約束テーブル */
.promises {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.promise-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00359F;
}

.promise-item h3 {
    color: #00359F;
    font-size: 20px;
    margin-bottom: 10px;
}

.promise-item p {
    font-size: 16px;
    line-height: 1.5;
}

/* サービスセクション */
.services {
    margin-bottom: 40px;
}
.service-item {
    margin-bottom: 20px;
}

/* フッター */
footer {
    background-color: #00359F;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        padding: 10px 20px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
}
/* 「弊社の特色」セクションのリストマーカーを削除 */
#our-strengths .content-list {
    list-style-type: none;
}
/* 「弊社の特色」セクションのスタイリング */
#our-strengths {
    text-align: left;
}

#our-strengths .section-title,
#our-strengths .content-item h3,
#our-strengths .content-item p {
    text-align: left;
}

/* リストのスタイリング（必要に応じて） */
#our-strengths .content-list {
    list-style-type: none;
    padding-left: 0;
}

/* コンテナの左右のパディングを調整（必要に応じて） */
#our-strengths .container {
    padding-left: 20px;
    padding-right: 20px;
}
/* SNSドロップダウンメニュー用スタイル - 2024/08/01追加, 2024/08/04修正 */
nav ul li.dropdown {
    position: relative;
    display: inline-block;
}

nav ul li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

nav ul li.dropdown .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

nav ul li.dropdown .dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* PC版のスタイル */
@media screen and (min-width: 769px) {
    nav ul li.dropdown:hover .dropdown-content {
        display: block;
    }
}

/* スマホ版のスタイル */
@media screen and (max-width: 768px) {
    nav ul li.dropdown .dropbtn {
        display: block;
    }
    nav ul li.dropdown .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }
    nav ul li.dropdown:hover .dropdown-content,
    nav ul li.dropdown:active .dropdown-content {
        display: block;
    }
}
/* 最新情報セクションのスタイル */
.latest-news {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.news-date {
    font-size: 14px;
    color: #666;
}

.news-title {
    margin: 10px 0;
    color: #00359F;
}

.news-content {
    margin-bottom: 15px;
}

.news-link {
    display: inline-block;
    color: #00359F;
    text-decoration: none;
    font-weight: bold;
}

.news-link:hover {
    text-decoration: underline;
}