/* ========================================
   基本設定
======================================== */
:root {
    --primary-color: #1a4d5e;
    --secondary-color: #2c7a94;
    --accent-color: #3ba8c7;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

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

.btn-nav-cta {
    background: var(--accent-color);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn-nav-cta:hover {
    background: var(--secondary-color);
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-list a:not(.btn-nav-cta):hover {
    color: var(--accent-color);
}

.nav-list a:not(.btn-nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-list a:not(.btn-nav-cta):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 168, 199, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease;
}

.hero-title .highlight {
    display: inline-block;
    background: linear-gradient(to right, #ffffff, #3ba8c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    animation: scrollDown 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

/* ========================================
   統計データセクション
======================================== */
.stats {
    background: var(--bg-light);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   私たちについて
======================================== */
.about {
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

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

.feature-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ========================================
   サービス内容
======================================== */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.service-featured {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.service-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
}

.service-body {
    padding: 30px;
}

.service-intro {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

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

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ========================================
   FP顧問の役割
======================================== */
.role {
    background: white;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.role-card {
    position: relative;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

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

.role-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.role-icon {
    font-size: 56px;
    color: var(--accent-color);
    margin: 20px 0;
}

.role-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.role-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   ご利用の流れ
======================================== */
.flow {
    background: var(--bg-light);
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.flow-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.flow-step-icon {
    font-size: 48px;
    color: var(--accent-color);
    text-align: center;
    margin: 20px 0;
}

.flow-step h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.flow-step p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.flow-arrow {
    text-align: center;
    font-size: 32px;
    color: var(--accent-color);
    margin: 20px 0;
}

/* ========================================
   料金案内
======================================== */
.pricing {
    background: white;
}

.pricing-category {
    margin-bottom: 80px;
}

.pricing-category:last-of-type {
    margin-bottom: 0;
}

.pricing-category-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-category-title i {
    color: var(--accent-color);
}

/* 法人向け顧問プラン */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.pricing-featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

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

.pricing-plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
}

.price-period {
    font-size: 18px;
    opacity: 0.9;
}

.pricing-catch {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.pricing-body {
    padding: 30px;
    flex: 1;
}

.pricing-section {
    margin-bottom: 25px;
}

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

.pricing-section h5 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.pricing-section h5 i {
    color: var(--accent-color);
}

.pricing-section ul {
    list-style: none;
}

.pricing-section ul li {
    padding: 8px 0;
    padding-left: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.pricing-support {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.pricing-support ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
}

.pricing-support ul li i {
    color: var(--accent-color);
    font-size: 14px;
}

.pricing-footer {
    padding: 20px 30px 30px;
}

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

/* その他サービス */
.pricing-other {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-other-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pricing-other-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-other-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.pricing-other-header h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-other-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-other-body ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-other-body ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.pricing-other-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-table h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-table h5 .note {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table table tr {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table table tr:last-child {
    border-bottom: none;
}

.pricing-table table td {
    padding: 15px;
    font-size: 14px;
}

.pricing-table table td:first-child {
    color: var(--text-light);
}

.pricing-table table td.price {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.seminar-plan {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.seminar-plan:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.seminar-plan h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seminar-plan h5 i {
    color: var(--accent-color);
}

.seminar-price {
    margin-bottom: 10px;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.seminar-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.seminar-plan ul {
    list-style: none;
}

.seminar-plan ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.seminar-plan ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

/* 個人FP顧問 */
.pricing-individual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-individual-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pricing-individual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.pricing-individual-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 25px;
}

.pricing-individual-header h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-price-large {
    margin-bottom: 10px;
}

.pricing-price-large .price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-price-large .price-period {
    font-size: 20px;
    color: var(--text-light);
}

.pricing-individual-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-individual-body ul li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-light);
}

.pricing-individual-body ul li i {
    color: var(--accent-color);
    margin-top: 4px;
    font-size: 16px;
}

.pricing-note {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-note i {
    color: var(--accent-color);
    margin-right: 5px;
}

.lifeplan-option {
    padding: 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.lifeplan-option:last-of-type {
    margin-bottom: 20px;
}

.lifeplan-option h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-highlight {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.lifeplan-option p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.duration {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* ========================================
   代表挨拶
======================================== */
.message {
    background: white;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.message-text {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
}

.message-main {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.message-text p:last-child {
    margin-bottom: 0;
}

.message-profile {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.profile-name {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.profile-name h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-title {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1.6;
}

.profile-bio {
    margin-bottom: 30px;
}

.profile-bio p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.profile-credentials {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
}

.profile-credentials h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-credentials h4 i {
    color: var(--accent-color);
}

.profile-credentials ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.profile-credentials ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.profile-credentials ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* ========================================
   会社概要
======================================== */
.company {
    background: var(--bg-light);
}

.company-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.company-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid var(--border-color);
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th,
.company-table td {
    padding: 20px 15px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 200px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.company-table th i {
    margin-right: 10px;
    color: var(--accent-color);
}

.company-table td {
    color: var(--text-light);
    line-height: 1.8;
}

.company-english {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.company-table .note {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

.company-table .highlight-text {
    color: var(--accent-color);
    font-weight: 600;
}

.company-map {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.company-map h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-map h3 i {
    color: var(--accent-color);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.access-info {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.access-info i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* ========================================
   よくある質問
======================================== */
.faq {
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(59, 168, 199, 0.05);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 18px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 69px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   お問い合わせ
======================================== */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.contact-info-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-phone {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 15px 0;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-hours {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.required {
    color: var(--error-color);
}

.optional {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 168, 199, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-privacy {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 300px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 72px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--accent-color);
}

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

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

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

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

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }

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

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-description {
        font-size: 16px;
    }

    /* ヘッダー */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list a {
        font-size: 18px;
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .btn-nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* ヒーロー */
    .hero-title {
        font-size: 36px;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    /* 統計 */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* グリッド調整 */
    .about-features,
    .services-grid,
    .role-grid {
        grid-template-columns: 1fr;
    }

    /* 料金案内 */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-other {
        grid-template-columns: 1fr;
    }

    .pricing-individual {
        grid-template-columns: 1fr;
    }

    /* 代表挨拶 */
    .message-text {
        padding: 25px;
    }

    .message-main {
        font-size: 18px;
    }

    .message-profile {
        padding: 25px;
    }

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

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

    /* 会社概要 */
    .company-table th {
        width: 120px;
        font-size: 14px;
    }

    .company-table th,
    .company-table td {
        padding: 15px 10px;
    }

    /* お問い合わせ */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit .btn {
        min-width: 100%;
    }

    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .btn-large {
        font-size: 16px;
        padding: 14px 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .company-table-wrapper,
    .company-map,
    .contact-form-wrapper {
        padding: 25px;
    }

    .company-table th {
        width: 100px;
        font-size: 13px;
    }

    .company-table th,
    .company-table td {
        padding: 12px 8px;
        font-size: 14px;
    }
}
