/* =========================================
   リセット & ベーススタイル
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #ffffff;
    --bg-light: #f7f6f2; /* 落ち着いた温かみのあるオフホワイト */
    --accent-color: #8c7a6b; /* 落ち着いたブラウン系（真面目さ・安心感） */
    --line-green: #06C755;
    --line-green-hover: #05b34c;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif; /* 見出しは明朝体で信頼感を演出 */
    font-weight: 600;
}

a {
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

/* =========================================
   レイアウト・各セクション
========================================= */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: var(--accent-color);
}

h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

/* ヘッダー */
.header {
    background-color: var(--bg-main);
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}
.site-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

/* ファーストビュー */
.hero {
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)), 
                url('https://kgr1.com/img/bg.webp') center/cover;
}
.hero h1 {
    font-size: 36px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-main);
}
.hero p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* メッセージ */
.message p {
    text-align: center;
}

/* プロフィール */
.profile-card {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.profile-list li {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}
.profile-list li:last-child {
    border-bottom: none;
}
.profile-list strong {
    width: 30%;
    color: var(--accent-color);
    font-weight: 500;
}
.profile-list span {
    width: 70%;
}

/* 実績と条件 */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.card {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 8px;
}
.card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-main);
}
.highlight {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: bold;
}

/* 流れ */
.flow-list li {
    background-color: var(--bg-main);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.step-num {
    display: inline-block;
    color: var(--accent-color);
    font-family: 'Noto Serif JP', serif;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}
.flow-list h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* お問い合わせ（LINEボタン） */
.contact {
    text-align: center;
}
.contact p {
    margin-bottom: 30px;
}
.btn-line-top, .btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--line-green);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}
.btn-line-top:hover, .btn-line:hover {
    background-color: var(--line-green-hover);
    transform: translateY(-2px);
}
.line-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ffffff" d="M273.4 199.9h-56c-5.3 0-9.6 4.3-9.6 9.6v76.8c0 5.3 4.3 9.6 9.6 9.6h56c5.3 0 9.6-4.3 9.6-9.6v-19.2c0-5.3-4.3-9.6-9.6-9.6h-36.8v-19.2h36.8c5.3 0 9.6-4.3 9.6-9.6v-19.2c0-5.3-4.3-9.6-9.6-9.6zM135.4 199.9h-9.6c-5.3 0-9.6 4.3-9.6 9.6v76.8c0 5.3 4.3 9.6 9.6 9.6h9.6c5.3 0 9.6-4.3 9.6-9.6v-76.8c0-5.3-4.3-9.6-9.6-9.6zm-48 0h-9.6c-5.3 0-9.6 4.3-9.6 9.6v76.8c0 5.3 4.3 9.6 9.6 9.6h9.6c5.3 0 9.6-4.3 9.6-9.6v-76.8c0-5.3-4.3-9.6-9.6-9.6zm131.2 0h-9.6c-5.3 0-9.6 4.3-9.6 9.6v76.8c0 5.3 4.3 9.6 9.6 9.6h9.6c5.3 0 9.6-4.3 9.6-9.6v-76.8c0-5.3-4.3-9.6-9.6-9.6zm96 0h-56c-5.3 0-9.6 4.3-9.6 9.6v76.8c0 5.3 4.3 9.6 9.6 9.6h56c5.3 0 9.6-4.3 9.6-9.6v-19.2c0-5.3-4.3-9.6-9.6-9.6h-36.8v-19.2h36.8c5.3 0 9.6-4.3 9.6-9.6v-19.2c0-5.3-4.3-9.6-9.6-9.6zM448 238.1c0-109.8-100.3-198.5-224-198.5S0 128.3 0 238.1c0 98.7 80.6 181.3 190.2 196.2 15.2 3.3 35.5 10.1 40.7 23.3 2.3 5.9 1 15.6-.7 21.6-1.5 5.2-10 32.2-12.2 38.6-3 9.2-9.2 34 29.5 17.6 38.7-16.4 209-122.9 209-297.3z"/></svg>') no-repeat center center;
    margin-right: 8px;
}
.note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 15px;
}

/* フッター */
.footer {
    background-color: var(--text-main);
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
}

/* =========================================
   レスポンシブデザイン (スマホ用)
========================================= */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    .profile-list blockquote, .profile-list li {
        flex-direction: column;
    }
    .profile-list strong, .profile-list span {
        width: 100%;
    }
    .profile-list strong {
        margin-bottom: 4px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}