/* リセット（簡素） */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif; color: #222; background: #ffffff; line-height: 1.6; }
.container { width: min(1000px, 92%); margin: 0 auto; }


/* ヘッダー */
.site-header { border-bottom: 1px solid #eee; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.office-name { font-size: 1.25rem; margin-bottom: 6px; }
.catch { color: #555; font-size: 0.95rem; }
.contact { text-align: right; font-size: 0.9rem; color: #333; }
.tel { font-weight: 600; }


/* ヒーロー */
body { background: #f4f6f8; }


.hero { padding: 48px 0; text-align: center; }
.hero h2 { font-size: 1.6rem; margin-bottom: 12px; }
.greeting { color: #444; margin-bottom: 18px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta { display: inline-block; padding: 12px 20px; border-radius: 8px; background: #0b6efd; color: #fff; text-decoration: none; font-weight: 600; }
.cta.outline { background: transparent; border: 1px solid #0b6efd; color: #0b6efd; margin-top: 12px; display: inline-block; }


/* サービス */
.services { padding: 30px 0; }
.services h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.service-list li { padding: 14px; border: 1px solid #f0f0f0; border-radius: 8px; background: #fff; }
.service-list h4 { margin-bottom: 8px; font-size: 1rem; }


/* プロフィール */
.profile { padding: 20px 0; }
.profile h3 { margin-bottom: 10px; }
.bio ul { margin-top: 8px; padding-left: 18px; }


/* 営業時間 */
.opening { padding: 10px 0 30px 0; color: #333; }


/* お問い合わせ */
.contact { padding: 18px 0 40px 0; }
.email { margin-top: 8px; }
.tel-large { font-weight: 700; margin-top: 6px; }


/* フッター */
.site-footer { border-top: 1px solid #eee; padding: 14px 0; text-align: center; color: #666; font-size: 0.9rem; }


/* レスポンシブ */
@media (max-width: 640px) {
.header-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
.contact { text-align: left; }
.hero h2 { font-size: 1.2rem; }
}