/* ベース変数とリセット */
:root {
    /* Primary colors */
    --primary: #2d5b9d;
    --primary-light: #4d77b3;
    --primary-dark: #1a4580;
    --primary-darker: #1a365d;
    
    /* Secondary colors */
    --secondary: #f8a01a;
    --secondary-light: #fbb44c;
    --secondary-dark: #e08800;
    
    /* Accent colors */
    --accent: #e74c3c;
    
    /* Text colors */
    --text: #333333;
    --text-light: #6c757d;
    --text-medium: #666666;
    
    /* Background colors */
    --bg: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --bg-gray-light: #f5f5f5;
    --bg-gray-medium: #eaeaea;
    --bg-blue-subtle: #f5f8fc;
    --bg-blue-light: #f1f7ff;
    --bg-blue-lighter: #e4f2ff;
    
    /* Border colors */
    --border: #dee2e6;
    --border-light: #e0e0e0;
    --border-gray: #dddddd;
    
    /* Utility colors for CTA/buttons */
    --cta-blue: #1da1d6;
    --cta-blue-dark: #0f7aa8;
    --cta-orange: #e86228;
    --cta-orange-dark: #d15522;
    --cta-yellow: #ffd700;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --header-height: 100px;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-heading: 'Poppins', var(--font-main);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 2rem);
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 基本タイポグラフィ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

p {
    margin-bottom: 1.5rem;
    word-break: keep-all;
    overflow-wrap: break-word;    /* 長い英単語やURLは折り返す */
    white-space: normal;          /* 複数スペースや改行を通常通り扱う */
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    word-break: keep-all;
    overflow-wrap: break-word;    /* 長い英単語やURLは折り返す */
    white-space: normal;          /* 複数スペースや改行を通常通り扱う */
}

/* スクロールターゲット用のオフセット */
section[id] {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.section-title {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.section-subtitle {
    font-size: 1.8rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 5rem;
}
/* 目立たせるセクションのスタイル */
.highlight-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(45, 91, 157, 0.05) 0%, rgba(248, 160, 26, 0.05) 100%);
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--secondary);
    /* margin: 2rem 0; */
}

.highlight-section .container {
    position: relative;
}

.highlight-section .section-title {
    font-size: 4.2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.highlight-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background-color: var(--secondary);
}

.highlight-section .section-subtitle {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text);
}

/* ステップ番号の強調 */
.process-step .step-icon {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(45, 91, 157, 0.3);
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.3);
}

/* 料金プランカードの強調 */
.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 15px 30px rgba(45, 91, 157, 0.15) !important;
}

.price-card.popular {
    transform: translateY(-20px);
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(248, 160, 26, 0.2);
}

.price-card.popular:hover {
    transform: translateY(-30px) !important;
    box-shadow: 0 20px 40px rgba(248, 160, 26, 0.3) !important;
}
