/* ========== リセット ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #444;
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ========== カラー変数（ロゴカラーに基づく統一感） ========== */
/* ロゴカラー: 弧グラデ #2EC4B6 → #34D399 → #A3E635 */
/* バックアップ: styles_backup_colors.css を参照 */
:root {
    /* プライマリカラー（ロゴのミントをベースに、少し濃くして信頼感を向上） */
    --primary-blue: #1BA89A;
    /* 濃いミント（ロゴ #2EC4B6 より濃い、信頼感・統一感） */
    --primary-orange: #1BA89A;
    /* 統一 */
    --primary-yellow: #1BA89A;
    /* 統一 */

    /* セカンダリカラー（ロゴのエメラルドグリーン） */
    --primary-green: #34D399;
    /* ロゴのエメラルドグリーン */
    --primary-lime: #A3E635;
    /* ロゴのライムグリーン */

    /* アクセント（ロゴのミント） */
    --accent-green: #2EC4B6;
    /* ロゴのミント（アクセント用） */

    /* エラー系（調整） */
    --primary-red: #e63946;
    --primary-red-light: #FEE2E2;
    --primary-red-dark: #dc2f3e;

    /* 背景色（ロゴのタイル背景から） */
    --bg-light: #FFF9EF;
    /* クリーム色（タイル背景） */
    --bg-white: #FFFFFF;

    /* テキスト色（ロゴのワードマークから） */
    --text-dark: #2A2A2A;
    /* 少し薄くしたダークグレー */
    --text-gray: #666;

    /* ボーダー */
    --border-light: #e5e7eb;

    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ========== 共通クラス ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    opacity: 0.95;
}

.section-title p {
    font-size: 18px;
    color: var(--text-gray);
}

/* ========== ヘッダー ========== */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 99999 !important;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-cta {
    background: #1BA89A;
    color: white !important;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 168, 154, 0.3);
}

.nav-cta:hover {
    background: #1A9D8F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 168, 154, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 3px;
}

/* ========== ヒーローセクション ========== */
.hero {
    padding: 80px 0 100px;
    background: #FFF9EF;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    min-height: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: none;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(27, 168, 154, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.03) 0%, transparent 50%);
    animation: floatingParticles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatingParticles {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.9;
    }

    50% {
        transform: translate(-15px, 20px) scale(0.95);
        opacity: 0.85;
    }

    75% {
        transform: translate(25px, 15px) scale(1.05);
        opacity: 0.9;
    }
}

.hero-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 1;
    flex: 0.75;
    min-width: 440px;
}

.hero-image {
    flex: 1.5;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-badge {
    display: inline-block;
    background: white;
    padding: 12px 28px;
    border-radius: 30px;
    color: #ff6b35;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 3px solid #ff6b35;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 6px 24px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: #1BA89A;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #1BA89A;
    color: white;
    box-shadow: 0 4px 16px rgba(27, 168, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 168, 154, 0.4);
    background: #1A9D8F;
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

.hero-quick-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.hero-quick-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hero-quick-feature:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-quick-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(27, 168, 154, 0.3);
}

.hero-quick-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    color: var(--text-dark);
}

.hero-quick-text strong {
    font-size: 18px;
    font-weight: 700;
}

.hero-quick-text span {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    color: var(--text-gray);
    font-size: 15px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== 新しいヒーローセクションスタイル ========== */
.hero-title-new {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-title-new .gradient-text {
    background: linear-gradient(135deg, #2EC4B6 0%, #34D399 50%, #A3E635 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Standalone gradient text class for use anywhere */
.gradient-text {
    background: linear-gradient(135deg, #2EC4B6 0%, #34D399 50%, #A3E635 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle-new {
    font-size: 17px;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.7;
    text-align: left;
    font-weight: 500;
}

.hero-features-inline {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
    align-items: flex-start;
}

.feature-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 500;
}

.feature-inline i {
    color: #1BA89A;
    font-size: 18px;
}

.hero-cta-section {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-visual-section {
    flex: 1.5;
}

.hero-visual-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1 !important;
}

.visual-card-header {
    background: #1BA89A;
    padding: 12px 20px;
    border-bottom: 1px solid #1A9D8F;
}

.card-dots {
    display: flex;
    gap: 8px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.card-dots span:nth-child(1) {
    background: #ff5f57;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:nth-child(3) {
    background: #28ca42;
}

.visual-card-content {
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.visual-card-content img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: #1BA89A;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.visual-card-badge i {
    font-size: 18px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge-google-logo-img {
    height: 22px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.badge-main {
    vertical-align: middle;
}

/* ========== 主要機能セクション ========== */
.key-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
}


.key-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    justify-content: flex-start;
}

.key-feature-item:last-child {
    margin-bottom: 0;
}

.key-feature-item-reverse {
    flex-direction: row-reverse !important;
}

.key-feature-item-right {
    justify-content: flex-end !important;
}

.key-feature-item-left {
    justify-content: flex-start !important;
}

.key-feature-item-left .key-feature-visual {
    margin-right: 60px;
}

.key-feature-content {
    flex: 0 0 480px;
}

.key-feature-number {
    font-size: 100px;
    font-weight: 900;
    color: rgba(27, 168, 154, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.key-feature-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.key-feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.key-feature-visual {
    flex: 0 0 450px;
    position: relative;
}

.key-feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 時計画像 */
.clock-image-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0;
    background: transparent;
}

.clock-image {
    max-width: 70%;
    height: auto;
    display: block;
    filter: sepia(40%) hue-rotate(-20deg) saturate(130%) brightness(0.95) contrast(1.1);
}

.speed-lines-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.speed-line {
    background: linear-gradient(90deg, #e63946, #f77f00);
    height: 6px;
    border-radius: 3px;
}

.speed-line-long {
    width: 80px;
}

.speed-line-medium {
    width: 60px;
}

.speed-line-short {
    width: 40px;
}

.clock-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-face-white {
    width: 200px;
    height: 200px;
    background: white;
    border: 3px solid #1e293b;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.clock-mark {
    position: absolute;
    width: 3px;
    height: 12px;
    background: #64748b;
    left: 50%;
    transform-origin: center;
}

.clock-mark-12 {
    top: 8px;
    left: calc(50% - 1.5px);
}

.clock-mark-3 {
    right: 8px;
    top: calc(50% - 6px);
    transform: rotate(90deg);
}

.clock-mark-6 {
    bottom: 8px;
    left: calc(50% - 1.5px);
}

.clock-mark-9 {
    left: 8px;
    top: calc(50% - 6px);
    transform: rotate(90deg);
}

.clock-hand {
    position: absolute;
    background: #1e293b;
    transform-origin: bottom center;
    left: 50%;
    bottom: 50%;
}

.hour-hand-clock {
    width: 5px;
    height: 50px;
    margin-left: -2.5px;
    transform: translateY(-100%) rotate(-90deg);
}

.minute-hand-clock {
    width: 3px;
    height: 70px;
    margin-left: -1.5px;
    transform: translateY(-100%) rotate(30deg);
}

.clock-center-red {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #e63946;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.red-arrow-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.arrow-svg {
    width: 100%;
    height: 100%;
}

.manual-work-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 16px;
    border: 2px dashed #d1d5db;
    min-width: 200px;
}

.person-icon {
    width: 80px;
    height: 80px;
    background: #1BA89A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.person-icon i {
    font-size: 40px;
    color: white;
}

.work-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.work-item i {
    font-size: 14px;
    color: #f59e0b;
}

.time-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.time-badge i {
    font-size: 14px;
}

.arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.list-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 32px;
    max-width: 400px;
    width: 100%;
    border: 1px solid #e5e7eb;
}

.list-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.list-icon-circle {
    width: 56px;
    height: 56px;
    background: #1BA89A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(27, 168, 154, 0.25);
}

.list-icon-circle i {
    font-size: 24px;
    color: white;
}

.list-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.list-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.list-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.list-item.faded {
    opacity: 0.5;
}

.item-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-text {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.auto-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 8px;
    border: 1px solid #bae6fd;
}

.auto-indicator i {
    font-size: 16px;
    color: #3b82f6;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.auto-indicator span {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
}

.list-icon-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-icon {
    width: 180px;
    height: 180px;
    background: #1BA89A;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(27, 168, 154, 0.3);
}

.list-icon i {
    font-size: 80px;
    color: white;
}

.auto-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #1BA89A;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.auto-badge i {
    font-size: 16px;
}

.arrow-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.flow-item i {
    font-size: 32px;
    color: #3b82f6;
}

.flow-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.flow-arrow {
    font-size: 24px;
    color: #8b5cf6;
}

.feature-copy {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.feature-copy p {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.clock-with-indicators {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.clock-illustration-modern {
    position: relative;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Main clock with gradient */
.clock-gradient {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #1BA89A;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(27, 168, 154, 0.3);
}

.clock-hand-single {
    width: 6px;
    height: 80px;
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: rotateHand 3s linear infinite;
}

@keyframes rotateHand {
    0% {
        transform: translateX(-50%) rotate(45deg);
    }

    100% {
        transform: translateX(-50%) rotate(405deg);
    }
}

.clock-reduction-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
}

.reduction-arrow {
    font-size: 32px;
    color: #10b981;
    font-weight: 900;
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.reduction-text {
    font-size: 16px;
    font-weight: 800;
    color: #10b981;
    background: white;
    padding: 4px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.clock-center-modern {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Icon blocks row below clock */
.icon-blocks-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0;
    padding-top: 0;
    align-self: flex-start;
}

.icon-block {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.icon-block-1 {
    background: #1BA89A;
}

.icon-block-1 i {
    font-size: 32px;
    color: white;
}

.icon-block-2 {
    background: #1BA89A;
}

.icon-block-2 i {
    font-size: 32px;
    color: white;
}

.icon-block-3 {
    background: #1BA89A;
}

.icon-block-3 i {
    font-size: 36px;
    color: white;
}

.sheets-visual-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sheets-logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sheets-logo-img {
    height: 80px;
    width: auto;
}

.sheets-preview-section {
    flex: 1;
}

.sheets-preview-window {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.sheets-preview-header {
    background: #f5f5f5;
    padding: 8px 12px;
    border-bottom: 1px solid #e0e0e0;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ff5f57;
}

.control-dot.yellow {
    background: #ffbd2e;
}

.control-dot.green {
    background: #28ca42;
}

.sheets-preview-content {
    padding: 16px;
}

.sheets-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.sheets-cell {
    flex: 1;
    min-width: 120px;
    padding: 12px;
    font-size: 13px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    color: var(--text-gray);
    white-space: nowrap;
}

.sheets-row:first-child .sheets-cell {
    background: #f5f5f5;
    font-weight: 600;
    color: var(--text-dark);
}

.sheets-row:last-child {
    margin-bottom: 0;
}


/* ========== スクリーンショットセクション ========== */
.screenshots {
    background: white;
    position: relative;
    padding: 40px 0 80px 0;
}

.screenshot-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.screenshot-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.screenshot-card-header {
    background: #1BA89A;
    padding: 12px 16px;
    border-bottom: 1px solid #1A9D8F;
}

.card-dots {
    display: flex;
    gap: 8px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #999;
}

.card-dots span:nth-child(1) {
    background: #ff5f56;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:nth-child(3) {
    background: #27c93f;
}

.screenshot-card-content {
    background: #2D3748;
    overflow: hidden;
    position: relative;
    height: auto;
}

.screenshot-items-wrapper {
    display: flex;
    position: relative;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.screenshot-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: block;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 550px;
    object-fit: contain;
}

.screenshot-card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: #1BA89A;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.screenshot-card-badge i {
    font-size: 18px;
}

.screenshot-caption {
    text-align: center;
    padding: 24px;
    background: #1BA89A;
    color: white;
    font-size: 18px;
    font-weight: 600;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.screenshot-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #bbb;
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
}

.screenshot-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.screenshot-prev,
.screenshot-next {
    pointer-events: all;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--primary-blue);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.screenshot-prev:hover,
.screenshot-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ========== 機能セクション ========== */
.features {
    background: white;
}

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

.feature {
    text-align: center;
    padding: 48px 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--feature-color-start, #1BA89A);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 40px;
    color: white;
    background: var(--feature-color-start, #1BA89A);
    box-shadow: 0 8px 24px rgba(27, 168, 154, 0.3);
}

.feature:nth-child(1) {
    --feature-color-start: #1BA89A;
    --feature-color-end: #1BA89A;
}

.feature:nth-child(2) {
    --feature-color-start: #f093fb;
    --feature-color-end: #f5576c;
}

.feature:nth-child(3) {
    --feature-color-start: #4facfe;
    --feature-color-end: #00f2fe;
}

.feature:nth-child(4) {
    --feature-color-start: #43e97b;
    --feature-color-end: #38f9d7;
}

.feature:nth-child(5) {
    --feature-color-start: #fa709a;
    --feature-color-end: #fee140;
}

.feature:nth-child(6) {
    --feature-color-start: #30cfd0;
    --feature-color-end: #330867;
}

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

.feature p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========== ターゲットセクション ========== */
.target {
    background: var(--bg-light);
}

.target-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.target-tab {
    padding: 16px 48px;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.target-tab:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 16px rgba(27, 168, 154, 0.15);
}

.target-tab.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(27, 168, 154, 0.3);
}

.target-content {
    display: none;
}

.target-content.active {
    display: block;
}

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

.persona {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.persona:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.persona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--persona-color-start, #1BA89A);
}

.persona-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 32px;
    color: white;
    background: var(--persona-color-start, #1BA89A);
    box-shadow: 0 6px 20px rgba(27, 168, 154, 0.25);
}

#btob .persona:nth-child(1) {
    --persona-color-start: #1BA89A;
    --persona-color-end: #1BA89A;
}

#btob .persona:nth-child(2) {
    --persona-color-start: #f093fb;
    --persona-color-end: #f5576c;
}

#btob .persona:nth-child(3) {
    --persona-color-start: #4facfe;
    --persona-color-end: #00f2fe;
}

#btoc .persona:nth-child(1) {
    --persona-color-start: #43e97b;
    --persona-color-end: #38f9d7;
}

#btoc .persona:nth-child(2) {
    --persona-color-start: #fa709a;
    --persona-color-end: #fee140;
}

#btoc .persona:nth-child(3) {
    --persona-color-start: #30cfd0;
    --persona-color-end: #330867;
}

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

.persona p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.persona-plan {
    display: inline-block;
    background: var(--persona-color-start, #1BA89A);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(27, 168, 154, 0.2);
}

/* ========== 数字セクション ========== */
.stats {
    background: var(--primary-blue);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat {
    padding: 32px;
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1BA89A;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 600;
}

/* ========== 料金セクション ========== */
.pricing {
    background: var(--bg-light);
    position: relative;
    z-index: 10;
    padding: 40px 0;
}

.pricing .section-title {
    margin-bottom: 30px;
}

.pricing .section-title h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    background: white;
    padding: 8px;
    border-radius: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-toggle button.active {
    background: #1BA89A;
    color: white;
}

.discount-badge {
    display: inline-block;
    background: #FFD166;
    color: #1E1E24;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
}

/* ========== 料金テーブル ========== */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.pricing-table thead {
    background: #1BA89A;
}

.pricing-table th {
    padding: 16px 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    vertical-align: top;
}

.pricing-table th:last-child {
    border-right: none;
}

.plan-header {
    display: table-cell;
    vertical-align: top;
    min-height: 60px;
}

.plan-name {
    margin-bottom: 8px;
    display: block;
}

.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 6px;
    min-height: 20px;
    line-height: 1.3;
}

.plan-feature-header {
    background: #FAFAFA !important;
    width: 180px;
    color: #000000 !important;
    text-align: left !important;
    padding: 16px 16px !important;
}

.trial-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.popular-badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #E0E0E0;
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: #F5F5F5;
}

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

.feature-name {
    padding: 12px 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    background: #FAFAFA;
    font-size: 14px;
    border-right: 1px solid #E5E5E5;
}

.plan-value {
    padding: 12px 12px;
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    border-right: 1px solid #E5E5E5;
}

.plan-value:last-child {
    border-right: none;
}

.plan-value strong {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 900;
}

.plan-check {
    color: var(--accent-green);
    font-size: 16px;
}

.pricing-cta-table {
    background: #1BA89A;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: block;
    max-width: 140px;
    margin: 0 auto;
}

.pricing-cta-table:hover {
    background: #1BA89A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 168, 154, 0.4);
}

.pricing-card {
    background: white;
    padding: 48px 32px;
    border-radius: 24px;
    border: 2px solid #E0E0E0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(27, 168, 154, 0.15);
}

.pricing-card.popular {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(27, 168, 154, 0.2);
    transform: scale(1.05);
}

.popular-badge-top {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    /* Amber-500 */
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
    z-index: 20;
    letter-spacing: 0.05em;
    display: inline-block;
    line-height: 1.2;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange) 0%, #F57C00 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.pricing-plan {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.pricing-price {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-period {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
    font-size: 15px;
    color: var(--text-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 18px;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 168, 154, 0.3);
}

.pricing-card.popular .pricing-cta {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #F57C00 100%);
}

/* ========== FAQセクション ========== */
.faq {
    background: #F8F9FF;
}

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

.faq-item {
    background: white;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E8E8F0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #1BA89A;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(27, 168, 154, 0.15);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #2C2C3E;
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF9800 0%, #FF6B00 100%);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question i {
    color: #9CA3AF;
    transition: transform 0.3s ease;
    font-size: 14px;
}

.faq-item.active .faq-question i,
.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 8px;
    padding-top: 8px;
    padding-left: 42px;
    border-top: 1px solid #E8E8F0;
    color: #5F6368;
    line-height: 1.6;
    font-size: 13px;
    display: none;
}

.faq-item.active .faq-answer,
.faq-answer.active {
    display: block;
}

/* ========== CTAセクション ========== */
.cta-section {
    background: linear-gradient(135deg, #1BA89A 0%, #34D399 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.cta-visual {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF9EF;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.cta-content {
    flex: 1;
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.4;
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-button {
    font-size: 20px;
    padding: 20px 60px;
    margin-bottom: 16px;
    margin-left: 40px;
    background: white;
    color: #1BA89A;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: #F0FDFA;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    text-align: center;
}

/* CTAセクション レスポンシブ */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
        max-width: 300px;
    }
}

/* ========== お問い合わせ ========== */
.contact {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 60px 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.required {
    color: #e63946;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-actions {
    margin-top: 1.5rem;
    text-align: center;
}

/* ========== フッター ========== */
.footer {
    background: #263238;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 0;
    margin-top: -8px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-etopica {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    font-size: 14px;
}

.footer-etopica img {
    height: 20px;
}

/* ========== レスポンシブ ========== */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 70px;
    }

    .hero-wrapper {
        gap: 40px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .features-grid,
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshot-slider {
        max-width: 100%;
    }

    .screenshot-item img {
        max-height: 500px;
    }

    .screenshot-prev,
    .screenshot-next {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ========== 課題（Problem）セクション ========== */
.problem-section {
    background: #FFF5F5;
    /* 薄い赤背景で注意喚起 */
    padding: 100px 0;
}

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

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #ff6b6b;
    /* 下線でアクセント */
}

.problem-card:hover {
    transform: translateY(-8px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
}

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

.problem-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========== 比較（Comparison）セクション ========== */
/* ========== 比較（Comparison）セクション ========== */
.comparison-section {
    background: #F8FAFC;
    padding: 100px 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.comp-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #E2E8F0;
}

.comp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.comp-card.main-card {
    border: 2px solid #1BA89A;
    background: #F0FDFA;
    position: relative;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 12px 32px rgba(27, 168, 154, 0.15);
}

.comp-card.main-card:hover {
    transform: scale(1.05) translateY(-5px);
}

.comp-card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
}

.comp-card.main-card .comp-card-header {
    border-bottom-color: rgba(27, 168, 154, 0.2);
}

.comp-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.comp-badge {
    display: inline-block;
    background: #1BA89A;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 8px;
}

.comp-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
}

.comp-item:last-child {
    border-bottom: none;
}

.comp-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #E0F2F1;
    color: #1BA89A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.comp-icon-wrapper.gray {
    background: #F3F4F6;
    color: #9CA3AF;
}

.comp-text-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.comp-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.comp-value {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.comp-value.text-primary {
    color: #1BA89A;
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 768px) {
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comp-card.main-card {
        transform: scale(1);
        order: -1;
        /* Show main card first on mobile */
    }

    .comp-card.main-card:hover {
        transform: translateY(-5px);
    }
}

.comparison-table th {
    background: #F1F5F9;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.comparison-table th.highlight-col {
    background: #1BA89A;
    color: white;
    border-radius: 12px 12px 0 0;
    position: relative;
    width: 30%;
}

.comparison-table td.highlight-col {
    background: #F0FDFA;
    /* 薄いミント */
    border-left: 2px solid #1BA89A;
    border-right: 2px solid #1BA89A;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table tr:last-child td.highlight-col {
    border-bottom: 2px solid #1BA89A;
    border-radius: 0 0 12px 12px;
}

.comparison-check {
    color: #1BA89A;
    font-size: 24px;
}

.comparison-cross {
    color: #94A3B8;
    font-size: 20px;
}

.comparison-triangle {
    color: #F59E0b;
    font-size: 20px;
}

.comparison-label {
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    padding-left: 24px;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero-title-new {
        font-size: 32px;
        text-align: center;
    }

    .hero-subtitle-new {
        font-size: 16px;
        text-align: center;
    }

    .hero-features-inline {
        gap: 12px;
        margin: 20px 0;
        align-items: center;
    }

    .feature-inline {
        font-size: 14px;
    }

    .hero-cta-section {
        flex-direction: column;
        align-items: stretch;
        margin-top: 24px;
        justify-content: center;
    }

    .hero-visual-section {
        margin-top: 0;
    }

    .key-feature-item {
        flex-direction: column !important;
        gap: 32px;
        margin-bottom: 60px;
    }

    .key-feature-number {
        font-size: 80px;
    }

    .key-feature-title {
        font-size: 28px;
    }

    .key-feature-description {
        font-size: 16px;
    }

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

    .hero-image {
        max-width: 100%;
    }

    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .hero-quick-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-quick-feature {
        padding: 20px;
    }

    .hero-quick-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .hero-quick-text strong {
        font-size: 16px;
    }

    .hero-quick-text span {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

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

    .features-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }

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

    /* テーブルをモバイル用に最適化 */
    .pricing-table-wrapper {
        border-radius: 12px;
    }

    .pricing-table {
        min-width: 100%;
        font-size: 14px;
    }

    .pricing-table th {
        padding: 16px 8px;
        font-size: 14px;
    }

    .feature-name {
        padding: 16px 12px;
        font-size: 14px;
    }

    .plan-value {
        padding: 16px 8px;
        font-size: 13px;
    }

    .plan-value strong {
        font-size: 18px;
    }

    .pricing-cta-table {
        padding: 10px 16px;
        font-size: 12px;
        max-width: 100px;
    }

    .plan-badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .screenshot-slider {
        border-radius: 12px;
    }

    .screenshot-item img {
        max-height: 450px;
    }

    .screenshot-nav {
        padding: 0 10px;
    }

    .screenshot-prev,
    .screenshot-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .screenshot-caption {
        font-size: 16px;
        padding: 16px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }
}


/* ========== 営業リストとの違いセクション ========== */
.difference-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 80px 0;
}

.difference-comparison {
    max-width: 1200px;
    margin: 0 auto;
}

.difference-table-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
    overflow-x: auto;
}

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

.difference-table thead th {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 3px solid var(--border-light);
}

.diff-feature-header {
    width: 30%;
    text-align: left !important;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-gray);
}

.diff-competitor-header,
.diff-jobtracker-header {
    width: 35%;
}

.diff-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.diff-header-content.highlight {
    background: linear-gradient(135deg, #FEE2E2 0%, #EF4444 100%);
    padding: 12px 24px;
    border-radius: 16px;
    margin: -12px 0;
}

.diff-header-content h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
}

.diff-header-content.highlight h3 {
    color: white;
}

.diff-subtext {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.diff-header-content.highlight .diff-subtext {
    color: rgba(255, 255, 255, 0.9);
}

.difference-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.difference-table tbody tr:hover {
    background: var(--bg-light);
}

.diff-feature-name {
    padding: 20px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.diff-value {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
}

.diff-value.highlight-value {
    font-weight: 700;
    color: #e63946;
    font-size: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.yes {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.no {
    background: #FEE2E2;
    color: #991B1B;
}

.difference-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.summary-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.summary-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FEE2E2 0%, #EF4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

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

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

/* レスポンシブ（営業リストとの違い） */
@media (max-width: 1024px) {
    .difference-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .difference-table-wrapper {
        padding: 20px;
        overflow-x: scroll;
    }

    .difference-table {
        min-width: 600px;
    }

    .diff-header-content h3 {
        font-size: 18px;
    }

    .diff-subtext {
        font-size: 11px;
    }

    .diff-feature-name,
    .diff-value {
        padding: 16px 12px;
        font-size: 13px;
    }

    .summary-card {
        padding: 24px;
    }

    .summary-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* ========== スクロールアニメーション ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== レスポンシブデザイン ========== */

/* タブレット (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    /* ヒーロー */
    .hero-wrapper {
        gap: 30px;
    }

    .hero-content {
        min-width: 350px;
    }

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

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

    /* 主要機能 */
    .key-feature-item {
        gap: 40px;
        margin-bottom: 80px;
    }

    .key-feature-content {
        flex: 0 0 400px;
    }

    .key-feature-visual {
        flex: 0 0 380px;
    }

    .key-feature-title {
        font-size: 28px;
    }

    .key-feature-description {
        font-size: 15px;
    }

    /* 料金テーブル */
    .pricing-table {
        font-size: 14px;
    }

    .plan-name {
        font-size: 20px;
    }
}

/* モバイル (767px以下) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 50px 0;
    }

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

    .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 16px;
    }

    /* ========== ヘッダー ========== */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        max-width: 300px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-radius: 0 0 0 16px;
        z-index: 99998;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .nav-cta {
        padding: 10px 24px;
        font-size: 14px;
    }

    .hamburger {
        display: flex;
        z-index: 99999;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }

    /* ========== ヒーローセクション ========== */
    .hero {
        padding: 60px 0 70px;
        margin-top: 70px;
    }

    .hero-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .hero-content {
        min-width: 100%;
        text-align: center;
    }

    .hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }

    .hero-title-new {
        font-size: 36px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-subtitle-new {
        font-size: 15px;
        text-align: center;
        line-height: 1.6;
    }

    .hero-features-inline {
        align-items: center;
    }

    .hero-cta-section {
        justify-content: center;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-visual-section {
        width: 100%;
        flex: none;
    }

    .hero-visual-card {
        max-width: 500px;
        margin: 0 auto;
    }

    /* ========== 主要機能セクション ========== */
    .key-features {
        padding: 70px 0;
    }

    .key-feature-item,
    .key-feature-item-reverse,
    .key-feature-item-left {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }

    .key-feature-content {
        flex: none;
        width: 100%;
    }

    .key-feature-number {
        font-size: 70px;
    }

    .key-feature-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .key-feature-description {
        font-size: 15px;
    }

    .key-feature-visual {
        flex: none;
        width: 100%;
    }

    .key-feature-item-left .key-feature-visual {
        margin-right: 0;
    }

    /* ========== スクリーンショットセクション ========== */
    .screenshot-card {
        max-width: 100%;
    }

    .screenshot-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* ========== 比較セクション ========== */
    .comparison-cards {
        flex-direction: column;
        gap: 16px;
    }

    .comp-card {
        min-width: 100%;
        padding: 20px 16px;
    }

    .comp-card-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .comp-card-header h3 {
        font-size: 16px;
    }

    .comp-badge {
        font-size: 11px;
        padding: 3px 10px;
        margin-top: 6px;
    }

    .comp-card-body {
        gap: 12px;
    }

    .comp-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 8px 0;
    }

    .comp-text-content {
        align-items: flex-start;
        gap: 2px;
    }

    .comp-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 8px;
    }

    .comp-label {
        font-size: 11px;
    }

    .comp-value {
        font-size: 13px;
    }

    .comp-value.text-primary {
        font-size: 14px;
    }


    /* ========== 料金セクション ========== */
    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .pricing-table {
        min-width: 600px;
        font-size: 13px;
    }

    .plan-header {
        min-width: 140px;
    }

    .plan-name {
        font-size: 16px;
    }

    .plan-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .feature-name {
        font-size: 13px;
        padding: 12px 10px;
    }

    .plan-value {
        padding: 12px 10px;
        font-size: 13px;
    }

    .price-trial,
    .price-starter,
    .price-business {
        font-size: 20px;
    }

    .pricing-cta-table {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* テーブルスクロールヒント */
    .pricing-table-wrapper::after {
        content: '← スクロールできます →';
        display: block;
        text-align: center;
        color: var(--text-gray);
        font-size: 12px;
        margin-top: 16px;
        font-weight: 500;
    }

    /* ========== CTAセクション ========== */
    .cta-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-visual {
        flex: none;
        width: 100%;
    }

    .cta-logo {
        max-width: 200px;
    }

    .cta-content {
        flex: none;
        width: 100%;
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    /* ========== お問い合わせフォーム ========== */
    .contact-form {
        padding: 30px 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
    }

    /* ========== フッター ========== */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-content>div ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-content>div ul li a {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px !important;
    }
}

/* 極小モバイル (480px以下) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

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

    .section-title p {
        font-size: 14px;
    }

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

    .hero-subtitle-new {
        font-size: 14px;
    }

    .feature-inline {
        font-size: 13px;
    }

    .badge-google-logo-img {
        height: 18px;
    }

    /* 主要機能 */
    .key-feature-number {
        font-size: 60px;
    }

    .key-feature-title {
        font-size: 20px;
    }

    .key-feature-description {
        font-size: 14px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 20px;
    }

    /* 比較カード */
    .comp-card-header h3 {
        font-size: 18px;
    }
}

/* ========== 新・料金プランデザイン（モダン・洗練） ========== */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    /* バッジ表示のためoverflowは指定しない */
    position: relative;
}

/* ヘッダー共通 */
.plan-header {
    padding: 24px 16px;
    text-align: center;
    color: white;
    position: relative;
    vertical-align: middle;
    font-weight: 700;
    letter-spacing: 0.05em;
    overflow: visible;
}

/* 左上の「プラン」セル */
.plan-feature-header {
    text-align: center;
    vertical-align: middle;
    padding: 24px 16px;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

/* 各プランのヘッダー色 */
.plan-trial {
    background: #64748B;
    /* Slate-500 */
}

/* Starter: ライトピンク（親しみ・やわらかさ） */
.plan-starter {
    background: #F9A8D4;
    /* Pink-300 */
}

/* Business: ブランドティール（メイン・活力） */
.plan-business {
    background: #1BA89A;
    /* Brand Color */
}

/* Pro: インディゴ（高貴・プレミアム） */
.plan-pro {
    background: #6366F1;
    /* Indigo-500 */
}

/* セル共通 */
.pricing-table td {
    padding: 20px 16px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-dark);
    vertical-align: middle;
    transition: background 0.2s ease;
}

.pricing-table tr:hover td {
    background: #F8FAFC;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    background: #fff;
    color: var(--text-gray);
    width: 20%;
    border-right: 1px solid #f1f5f9;
}

/* Proプランの列強調（背景色） */
.highlight-cell-pro {
    background: #F8FAFF !important;
    /* Very Light Indigo */
    font-weight: 600;
    position: relative;
}

/* Pro列の左右ボーダー（カード風強調） */
.highlight-cell-pro::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(99, 102, 241, 0.1);
}

.highlight-cell-pro::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(99, 102, 241, 0.1);
}

/* 最後の行の角丸処理 */
tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
    /* 左下 */
}

/* Proプランの最後のセル（右下・強調あり） */
tr:last-child .highlight-cell-pro {
    border-radius: 0 0 16px 0;
    /* 右下 */
}

/* 価格表示 */
.price-trial {
    font-size: 24px;
    color: #64748B;
    font-family: 'Outfit', sans-serif;
}

.price-starter {
    font-size: 28px;
    color: #F472B6;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.price-business {
    font-size: 32px;
    color: #1BA89A;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.price-pro {
    font-size: 32px;
    color: #6366F1;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* 1件あたり単価 */
.unit-price {
    display: inline-block;
    background: #F1F5F9;
    color: #475569;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Proの単価強調 */
.highlight-cell-pro .unit-price {
    background: #E0E7FF;
    color: #4338CA;
}

.plan-value .unit-price[style*="color:#FF6B6B"] {
    background: #EEF2FF !important;
    color: #6366F1 !important;
}

/* CTAボタン（モダン・ピル型） */
.pricing-cta-table {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 160px;
    letter-spacing: 0.02em;
}

.btn-trial {
    background: white;
    border: 1px solid #CBD5E1;
    color: #64748B;
}

.btn-trial:hover {
    background: #F1F5F9;
    border-color: #94A3B8;
    transform: translateY(-2px);
}

.btn-starter {
    background: #F9A8D4;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 168, 212, 0.25);
    border: none;
}

.btn-starter:hover {
    background: #F472B6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 168, 212, 0.35);
}

.btn-business {
    background: #1BA89A;
    color: white;
    box-shadow: 0 4px 12px rgba(27, 168, 154, 0.3);
    border: none;
}

.btn-business:hover {
    background: #137a70;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 168, 154, 0.4);
}

.btn-pro {
    background: #6366F1;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    border: none;
}

.btn-pro:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}