/* すべての要素のマージンとパディングをリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* リンクのデフォルトスタイルをリセット */
a {
    text-decoration: none;
    color: inherit;
}

/* リストのデフォルトのマーカーを削除 */
ul, ol {
    list-style: none;
}

/* 画像の最大幅を100%にして親要素に収まるように */
img {
    max-width: 100%;
    height: auto;
}

/* ボタンのデフォルトスタイルをリセット */
button, input, textarea {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ボタンのクリック時の青枠を削除 */
button:focus, input:focus, textarea:focus {
    outline: none;
}

/* HTMLとボディの高さを100%に */
html, body {
    height: 100%;
}

/* ブラウザ間でフォントの統一 */
body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

/* 見出しタグのリセット */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* テーブルのリセット */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* CSS Variables */
:root {
    --primary-color: #e3fc03;
    --secondary-color: #f2f2f2;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #343a40;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    /* color: var(--gray-medium); */
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(120deg, #FFC107 0%, #FF5722 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    padding: 0 4px;
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.primary-button, .cta-button {
    background-color: var(--primary-color);
    color: var(--black);
}

.primary-button:hover, .cta-button:hover {
    background-color: #d4ed02;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-button {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--black);
    transform: translateY(-2px);
}