:root {
    --bg-color: #FAFAFA;
    --text-color: #2D2D2D;
    --text-muted: #666666;
    --primary-color: #111111;
    --accent-color: #555555;
    --border-color: #E2E2E2;
    --card-bg: #FFFFFF;
    --light-bg: #F3F3F1;
    --max-width: 1000px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    transition: opacity 0.2s;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-dark {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-line {
    background-color: #06C755;
    color: #FFFFFF;
}

.full-width {
    display: block;
    width: 100%;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.nav a:not(.btn-header) {
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav a:not(.btn-header):hover {
    color: var(--primary-color);
}

.btn-header {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
}

/* メインビジュアル */
.hero {
    padding: 160px 0 100px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* セクション共通 */
.section {
    padding: 90px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

/* コンセプトカード */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.concept-card {
    background: var(--card-bg);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.concept-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.concept-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ステップ */
.steps-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 24px;
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    align-items: flex-start;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-content h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Noteセクション */
.note-section {
    text-align: center;
}

.note-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 60px 24px;
    border-radius: 8px;
}

.note-box h2 {
    font-size: 22px;
    margin: 12px 0 16px;
}

.note-box p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
}

/* プラン */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--primary-color);
}

.price-badge {
    font-size: 11px;
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.price-badge.highlight {
    background: var(--primary-color);
    color: #fff;
}

.price-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.price-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 24px;
    min-height: 40px;
}

.price-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.price-number span {
    font-size: 13px;
    font-weight: normal;
    color: var(--text-muted);
}

.price-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* お問い合わせ */
.contact-container {
    text-align: center;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 50px 30px;
    border-radius: 6px;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* フッター */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav {
        display: none; /* スマホではシンプルに隠す（必要なら追加可能） */
    }
    .hero {
        padding: 120px 0 80px;
    }
}