/*
Theme Name: wizlog
Author: Yuta Kato
Description: wizlog専用のシンプルで清潔感のあるコーポレートテーマ
Version: 1.0
*/

/* 基本設定 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Helvetica Neue", Arial, sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 40px; position: relative; padding-bottom: 10px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: #0056b3; }
.bg-light { background-color: #f4f7f9; }

/* ヘッダー */
.site-header { background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: bold; color: #0056b3; text-decoration: none; }

/* メインビジュアル */
.hero { height: 70vh; background: linear-gradient(rgba(0,40,100,0.7), rgba(0,40,100,0.7)), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1200&q=80'); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; }
.hero h2 { font-size: 3rem; margin-bottom: 15px; }

/* グリッドレイアウト */
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.service-item { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

/* フッター */
.site-footer { background: #222; color: #fff; text-align: center; padding: 30px 0; margin-top: 50px; }

/* スマホ対応 */
@media (max-width: 768px) {
    .hero h2 { font-size: 1.8rem; }
    .service-grid { grid-template-columns: 1fr; }
}