/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --accent-color: #dc2626;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

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

.sp-only {
    display: none;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}

.btn-header {
    font-size: 14px;
    padding: 10px 20px;
}

/* ========================================
   ボタンスタイル
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    font-size: 18px;
    padding: 18px 40px;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/><path d="M100 0L50 50L100 100" stroke="rgba(255,255,255,0.05)" stroke-width="1" fill="none"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight-red {
    color: #ef4444;
    font-weight: 900;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-cta-note {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

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

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.section-title .highlight {
    color: var(--primary-color);
    position: relative;
}

/* ========================================
   課題提起セクション - ダーク闇デザイン
======================================== */
.problems {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.problems .section-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    position: relative;
    z-index: 1;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.problem-card:hover::before {
    left: 100%;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 30px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(220, 38, 38, 0.5);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #dc2626, #7f1d1d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 
        0 0 30px rgba(220, 38, 38, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.problem-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

/* ========================================
   提供価値セクション
======================================== */
.value {
    background-color: var(--bg-white);
}

.value-content {
    max-width: 1000px;
    margin: 0 auto;
}

.value-main {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.value-main-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 24px;
}

.value-highlight {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-lead {
    font-size: 18px;
    line-height: 1.6;
}

.value-lead strong {
    font-weight: 900;
    color: var(--secondary-color);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.value-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card-header i {
    font-size: 24px;
}

.value-card-header h4 {
    font-size: 18px;
    font-weight: 700;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.value-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.value-list li .small {
    font-size: 13px;
    color: var(--text-gray);
}

.value-story {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--secondary-color);
}

.value-story-icon {
    font-size: 40px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.value-story p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* 価値提供セクション */
.value-promise {
    margin-top: 48px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.3);
}

.value-promise::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.value-promise::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.value-promise-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 36px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    position: relative;
    z-index: 1;
}

.value-promise-badge i {
    font-size: 22px;
}

.value-promise-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* 3セクションレイアウト */
.value-promise-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.value-promise-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.18);
    border-color: rgba(59, 130, 246, 0.4);
}

.value-promise-section-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.value-promise-section-number {
    font-size: 28px;
    font-weight: 900;
    color: white;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

.value-promise-section-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.value-promise-section-content {
    padding: 32px;
}

.value-promise-item {
    display: flex;
    gap: 24px;
    align-items: center;
}

.value-promise-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
    flex-shrink: 0;
}

.value-promise-text h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.value-promise-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ========================================
   サービス内容セクション
======================================== */
.service {
    background-color: var(--bg-light);
}

.service-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
    color: var(--text-gray);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* ========================================
   実績セクション
======================================== */
.achievements {
    background-color: var(--bg-white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.achievement-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.achievement-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.achievement-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.achievement-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.achievement-result {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.achievement-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.achievement-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ========================================
   料金プランセクション
======================================== */
.pricing {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 80px 0;
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 48px 32px;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-old {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pricing-old-price {
    font-size: 24px;
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-arrow {
    font-size: 24px;
    font-weight: 900;
}

.pricing-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
}

.pricing-amount {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
}

.pricing-period {
    font-size: 20px;
    opacity: 0.9;
}

.pricing-note {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-body {
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(59, 130, 246, 0.04));
}

.pricing-body h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 16px;
}

.pricing-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.pricing-features li {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.08));
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.15));
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.pricing-features i {
    color: var(--success-color);
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    background: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
}

.pricing-benefit {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 24px 28px;
    border-radius: 12px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
    position: relative;
    overflow: hidden;
}

.pricing-benefit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-benefit p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.pricing-benefit i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

/* ========================================
   メッセージセクション
======================================== */
.message {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.message-content h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.message-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.message-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
}

.message-highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-weight: 500;
}

.message-final {
    font-size: 17px;
    font-weight: 500;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 8px;
}

.message-final strong {
    color: var(--primary-color);
    font-weight: 900;
}

/* ========================================
   CTAセクション
======================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    font-size: 20px;
    padding: 20px 50px;
    background-color: var(--secondary-color);
    color: white;
}

.btn-cta:hover {
    background-color: #d97706;
    transform: translateY(-3px);
}

.cta-note {
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.8;
}

/* ========================================
   プロフィールセクション
======================================== */
.profile {
    background-color: var(--bg-light);
}

.profile-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 48px;
    align-items: center;
}

.profile-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
}

.profile-name-en {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 12px;
}

.profile-title {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

.profile-description {
    margin: 16px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.08));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
}

.profile-description h4 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.profile-description p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.profile-description p:last-child {
    margin-bottom: 0;
}

.profile-description .profile-emphasis {
    font-weight: 600;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08), rgba(59, 130, 246, 0.12));
    padding: 16px;
    border-radius: 8px;
    margin-top: 8px;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.profile-description strong {
    color: var(--primary-color);
    font-weight: 900;
}

.profile-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-details li {
    font-size: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-details i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.profile-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.profile-highlight-item {
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.profile-highlight-item i {
    color: var(--primary-color);
    font-size: 24px;
}

.profile-highlight-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* 職務経歴書ボタン */
.profile-resume {
    margin-top: 24px;
}

.btn-resume {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color), #b91c1c);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.btn-resume:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-resume i {
    font-size: 20px;
}

/* プロフィール内実績ハイライト */
.profile-achievements {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.profile-achievements-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.profile-achievements-grid {
    display: grid;
    gap: 20px;
}

.profile-achievement-item {
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.profile-achievement-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-achievement-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profile-achievement-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

.profile-achievement-item strong {
    color: var(--primary-color);
    font-weight: 900;
}

/* ========================================
   R.Sメソッドセクション
======================================== */
.rs-method {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 80px 0;
}

.rs-method .section-title .highlight {
    color: #FF6B35;
    background: linear-gradient(135deg, #FF6B35, #FF8C42, #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3));
    position: relative;
    display: inline-block;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.3)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 16px rgba(255, 140, 66, 0.6)) brightness(1.15);
    }
}

.rs-method-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rs-method-story {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.08));
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 48px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
    border: 2px solid rgba(30, 64, 175, 0.15);
}

.rs-method-story p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.rs-method-story p:last-child {
    margin-bottom: 0;
}

.rs-method-story strong {
    color: var(--primary-color);
    font-weight: 900;
}

.rs-method-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rs-method-step {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rs-method-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.2);
    border-color: var(--primary-color);
}

.rs-method-step-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rs-method-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    flex-shrink: 0;
}

.rs-method-step-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.5;
}

.rs-method-step-content {
    padding: 32px;
}

.rs-method-solution {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.rs-method-example {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
    padding: 12px 16px;
    background-color: transparent;
    border-radius: 0;
    border-left: 0;
    border: 0;
    font-weight: 400;
}

.rs-method-result {
    font-size: 16px;
    color: var(--text-dark);
    padding: 16px 20px;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
    font-weight: 500;
}

.rs-method-result i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

.rs-method-result strong {
    color: var(--primary-color);
    font-weight: 900;
}

/* プロフィール内ターゲット */
.profile-target {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.profile-target-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.profile-target-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-target-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.profile-target-list i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.profile-target-list span {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}



/* ========================================
   無料カウンセリングセクション
======================================== */
.consultation {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 80px 0;
}

.consultation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-intro {
    text-align: center;
    margin-bottom: 48px;
}

.consultation-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.consultation-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.consultation-step {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.consultation-icon {
    width: 80px;
    height: 80px;
    margin: 24px auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.consultation-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.consultation-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.consultation-topics {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.consultation-topics h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.consultation-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.consultation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-dark);
}

.consultation-list i {
    color: var(--success-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.consultation-cta {
    text-align: center;
}

.consultation-cta-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.footer-contact i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* ========================================
   スクロールトップボタン
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   レスポンシブデザイン - タブレット
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 40px;
    }

    .problems-grid,
    .value-grid,
    .service-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .profile-details {
        align-items: center;
    }

    .profile-highlights {
        justify-content: center;
    }
}

/* ========================================
   レスポンシブデザイン - スマートフォン
======================================== */
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }

    section {
        padding: 60px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    .btn-header {
        width: 100%;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-large {
        font-size: 16px;
        padding: 16px 32px;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 36px;
    }

    .problems-grid,
    .service-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-main {
        padding: 28px 20px;
    }

    .value-main-title {
        font-size: 22px;
    }

    .value-lead {
        font-size: 16px;
    }

    .value-story {
        flex-direction: column;
        text-align: center;
    }

    .value-promise {
        padding: 36px 24px;
    }

    .value-promise-badge {
        font-size: 16px;
        padding: 10px 24px;
    }

    .value-promise-content {
        gap: 24px;
    }

    .value-promise-section-header {
        padding: 16px 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .value-promise-section-number {
        font-size: 24px;
        width: 50px;
        height: 50px;
    }

    .value-promise-section-header h3 {
        font-size: 18px;
    }

    .value-promise-section-content {
        padding: 24px;
    }

    .value-promise-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .value-promise-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 32px;
    }

    .value-promise-text h4 {
        font-size: 17px;
    }

    .value-promise-text p {
        font-size: 14px;
    }

    .pricing-header {
        padding: 36px 24px;
    }

    .pricing-amount {
        font-size: 52px;
    }

    .pricing-body {
        padding: 36px 24px;
    }

    .pricing-body h3 {
        font-size: 20px;
    }

    .pricing-features {
        padding: 20px;
    }

    .pricing-features li {
        padding: 14px 16px;
        font-size: 15px;
        gap: 12px;
    }

    .pricing-features i {
        font-size: 20px;
        width: 32px;
        height: 32px;
    }

    .pricing-benefit {
        padding: 20px 24px;
    }

    .pricing-benefit p {
        font-size: 15px;
    }

    .message-content h2 {
        font-size: 26px;
    }

    .message-text p {
        font-size: 15px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .btn-cta {
        font-size: 18px;
        padding: 18px 36px;
        width: 100%;
    }

    .profile-highlights {
        grid-template-columns: 1fr;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .consultation-list {
        grid-template-columns: 1fr;
    }

    .consultation-topics {
        padding: 28px 20px;
    }

    .rs-method-story {
        padding: 24px 20px;
    }

    .rs-method-story p {
        font-size: 15px;
    }

    .rs-method-step-header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .rs-method-number {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .rs-method-step-header h3 {
        font-size: 18px;
    }

    .rs-method-step-content {
        padding: 24px 20px;
    }

    .rs-method-solution,
    .rs-method-example {
        font-size: 14px;
        padding: 10px 14px;
    }

    .rs-method-result {
        font-size: 15px;
        padding: 14px 16px;
    }

    .btn-resume {
        width: 100%;
        justify-content: center;
    }

    .profile-achievements-grid {
        gap: 16px;
    }

    .profile-achievement-item {
        padding: 16px;
    }

    .profile-target-list li {
        padding: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

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

    .pricing-amount {
        font-size: 44px;
    }

    .cta-title {
        font-size: 26px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-name-en {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        font-size: 16px;
    }
}