:root {
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --secondary-light: #fef3c7;
    --accent: #10b981;
    --accent-light: #d1fae5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
    --bg-section: #ffffff;
    --bg-subtle: #f3f4f6;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --border-lighter: #f3f4f6;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-bg-light: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #fef3c7 100%);
    --gradient-bg-subtle: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f3e8ff 100%);
    --bg-pattern: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 70%), radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 70%), radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-bg-light);
    background-attachment: fixed;
    min-height: 100vh;
    font-weight: 400;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 96px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section:nth-child(even) {
    background: var(--gradient-bg-subtle);
    position: relative;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-pattern);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
}

.btn.large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn.primary {
    background: var(--primary);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn.secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn.secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero {
    background: url('hero01.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 2s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    overflow: hidden;
}

.hero-content h1 .title-main {
    color: #ffffff;
    display: block;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content h1 .title-main.blue-text {
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 .title-accent {
    color: #ffffff;
    display: block;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}


.hero-title-letter {
    display: inline-block;
    animation: letterSlideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(100px);
}

@keyframes letterSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 26px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: fadeInUp 2s ease-out 0.3s both;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 2s ease-out 0.5s both;
}

.hero-btn-container {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    padding: 1px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-btn-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-btn-container .btn {
    border-radius: 50px;
    backdrop-filter: blur(20px);
    background: #ffffff;
    color: #1e40af;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

.hero-btn-container .btn:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-container .btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.hero-btn-container .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-top: 12px;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    letter-spacing: 0.025em;
}

.service-content {
    max-width: 1400px;
    margin: 0 auto;
}

.target-content,
.strength-content,
.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

/* メイン写真と引用メッセージレイアウト */
.greeting-hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.greeting-photo-left {
    flex-shrink: 0;
}

.main-hero-image {
    width: 250px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.greeting-quote-right {
    flex: 1;
    padding-left: 20px;
}

.greeting-quote {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.greeting-message-section {
    background: white;
    position: relative;
}

.greeting-message-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.greeting-message-content p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 400;
    text-align: left;
}

.greeting-message-content p:last-child {
    margin-bottom: 0;
}

.key-message {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    text-align: center !important;
    padding: 30px 0 !important;
    margin: 40px 0 !important;
    border-top: 2px solid #e3f2fd;
    border-bottom: 2px solid #e3f2fd;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.closing-message {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    text-align: center !important;
    margin: 40px 0 20px 0 !important;
}

.greeting-signature-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.signature-photo {
    flex-shrink: 0;
}

.signature-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffffff;
}

.signature-text {
    text-align: right;
}

.signature-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}

.signature-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-lighter);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 88px;
    background: var(--gradient-accent);
    border-radius: 50%;
    margin: 0 auto 32px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(3deg);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    letter-spacing: -0.025em;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 16px;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 100%);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #ff9800;
}

.highlight-box.blue-background {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-left: 4px solid #9c27b0;
    color: #333333;
}

.strength-main {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 15px;
}

.solution-quote {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
}

.transformation-box {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.transformation-box .from {
    background: #ffcdd2;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: #c62828;
}

.transformation-box .arrow {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.transformation-box .to {
    background: #c8e6c9;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: #2e7d32;
}

.final-message {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid #ff6b35;
}

.final-message p {
    margin-bottom: 10px;
}

.final-message p:last-child {
    margin-bottom: 0;
}

.service-content p,
.target-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
    font-weight: 600;
}

.greeting-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.greeting-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.ceo-photo:hover {
    transform: scale(1.05);
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    z-index: 1;
}

.greeting-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.greeting-messages {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #1976d2;
    position: relative;
    overflow: hidden;
}

.greeting-messages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1976d2, #42a5f5, #1976d2);
    opacity: 0.8;
}

.greeting-messages p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 16px;
}

.greeting-messages p:last-child {
    margin-bottom: 0;
}

.greeting-messages strong {
    color: var(--primary);
    font-weight: 700;
}

/* 署名セクション */
.greeting-signature {
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 30px 20px 30px 0;
    text-align: right;
}

.signature-info {
    text-align: right;
}

.signature-name {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'Klee One', 'Noto Sans JP', cursive;
    font-style: normal;
}

.signature-title {
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .greeting-hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .main-hero-image {
        width: 200px;
        height: auto;
    }
    
    .greeting-quote-right {
        padding-left: 0;
    }
    
    .greeting-quote {
        font-size: 28px;
    }
    
    .greeting-message-content {
        padding: 0 20px;
    }
    
    .greeting-message-content p {
        font-size: 16px;
    }
    
    .key-message {
        font-size: 18px !important;
        padding: 20px 15px !important;
    }
    
    .greeting-signature {
        text-align: center;
    }
    
    .signature-info {
        text-align: center;
    }
}

.target-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffecb3 100%);
    border-radius: 20px;
    border: 2px solid #ff9800;
}

.target-hero h3 {
    font-size: 28px;
    color: #e65100;
    margin-bottom: 15px;
    font-weight: 700;
}

.target-hero-subtitle {
    font-size: 18px;
    color: #bf360c;
    margin-bottom: 0;
    font-style: italic;
}

.worry-scenarios {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.worry-scenario {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 6px solid var(--secondary);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.worry-scenario::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff9800, #ffc107);
    opacity: 0.8;
}

.worry-scenario:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.scenario-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.scenario-number {
    background: var(--gradient-accent);
    color: white;
    font-size: 24px;
    font-weight: 700;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.scenario-title h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.scenario-emotion {
    font-size: 16px;
    color: #ff6b35;
    font-style: italic;
    margin-bottom: 0;
}

.scenario-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.scenario-visual {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.scenario-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.worry-scenario:hover .scenario-visual {
    transform: scale(1.1);
}

.scenario-text {
    flex: 1;
}

.scenario-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.scenario-details {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.scenario-details li {
    background: #ffebee;
    padding: 12px 18px;
    border-radius: 25px;
    border-left: 4px solid #f44336;
    font-size: 16px;
    color: #c62828;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.scenario-details li::before {
    content: '😰';
    margin-right: 8px;
}

.scenario-details li:hover {
    background: #ffcdd2;
    transform: translateX(5px);
}

.target-cta {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.target-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.cta-message {
    position: relative;
    z-index: 1;
}

.cta-message h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pulse {
    animation: pulse 2s infinite;
    font-size: 20px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    color: #333;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.pulse:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffc107 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 0;
    font-style: italic;
}

.target-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.target-content li {
    margin-bottom: 8px;
}

.plan-cards {
    display: flex;
    gap: 32px;
    margin-top: 60px;
}

.price-card {
    flex: 1;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.price-card:nth-child(2) {
    border: 2px solid var(--primary);
    position: relative;
}

.price-card:nth-child(2)::before {
    content: '人気No.1';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price span {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.plan-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.plan-description {
    font-size: 14px;
    text-align: left;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.strength-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.strength-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-lighter);
    position: relative;
    overflow: hidden;
}

.strength-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.strength-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

.strength-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 400;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-lighter);
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 40px;
    font-size: 80px;
    color: var(--accent);
    font-weight: 700;
    opacity: 0.3;
}

.testimonial-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    letter-spacing: -0.025em;
}

.contact {
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    color: var(--text-dark);
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 40px;
}

.contact-button {
    margin-top: 48px;
}

.contact-button .btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 32px 0;
}

.company-info {
    margin-bottom: 24px;
}

.company-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.company-label {
    font-size: 14px;
    color: #ccc;
    font-weight: 400;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.company-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.company-link {
    color: #87ceeb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    border: 1px solid #87ceeb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.company-link:hover {
    background-color: #87ceeb;
    color: var(--text-dark);
}

.copyright {
    margin: 0;
    font-size: 12px;
    color: #ccc;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-nav {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
    }
    
    .header-nav a {
        font-size: 10px;
    }
    
    header {
        padding: 8px 0 !important;
    }
    
    .header-nav {
        padding-top: 8px !important;
    }
    
    header .btn.primary {
        padding: 8px 16px !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    header .btn.primary {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
    
    header {
        padding: 6px 0 !important;
    }
    
    .header-nav {
        padding-top: 6px !important;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    
    .plan-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonial-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .strength-grid {
        gap: 30px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .transformation-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .transformation-box .arrow {
        transform: rotate(90deg);
    }
    
    h2 {
        font-size: 28px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .scenario-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .scenario-visual {
        width: 200px;
        height: auto;
        border-radius: 15px;
        align-self: center;
    }
    
    .scenario-image {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .btn.large {
        padding: 12px 20px;
        font-size: 14px;
    }
    
}

@media (max-width: 980px) {
    header .btn.primary .desktop-text {
        display: none !important;
    }
    
    header .btn.primary .mobile-text {
        display: inline !important;
    }
}

@media (min-width: 981px) {
    header .btn.primary .mobile-text {
        display: none !important;
    }
    
    header .btn.primary .desktop-text {
        display: inline !important;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .price-card, .testimonial-card {
        padding: 30px;
    }
    
    .strength-item {
        padding: 25px;
    }
}