/* --- リセットCSS（ブラウザの基本設定を初期化） --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1 {
    font-size: 20px;
    font-weight: normal;
}

h2 {
    font-size: 18px;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- レイアウト調整 --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ヘッダー --- */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0 40px 0;
}

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

header nav ul {
    display: flex;
    gap: 20px;
}

header nav a:hover {
    color: #0066cc;
}

header .tel {
    font-size: 30px;
    color: #153f89
}

/* --- メインビジュアル --- */
.hero {
    background-color: #f4f4f4;
    padding: 150px 0;
    line-height: 120px;
    text-align: center;
}

/* --- コンテンツ --- */
.content {
    padding: 60px 0 20px 0;
    text-align: center;
}

/* --- フッター --- */
footer {
    background-color: #555555;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px
}
