/* ========================================
   リセット & ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ブランド365カラー: 青緑系グラデーション（ターコイズ～ティール） */
    --primary-color: #06B6D4; /* ターコイズ */
    --primary-dark: #0891B2; /* ダークターコイズ */
    --teal-color: #14B8A6; /* ティール */
    --teal-dark: #0D9488; /* ダークティール */
    --deep-blue: #0C4A6E; /* 深いブルー（アクセント） */
    --deep-blue-dark: #075985; /* より深いブルー */
    
    --secondary-color: #059669;
    --danger-color: #DC2626;
    --warning-color: #F59E0B;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    --bg-light-blue: #F0F9FF;
    --bg-dark: #0F172A;
    --border-color: #E2E8F0;
    
    /* 信頼感を表現する洗練されたシャドウ */
    --shadow-sm: 0 1px 2px 0 rgba(6, 182, 212, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(6, 182, 212, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(6, 182, 212, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(6, 182, 212, 0.2);
    
    /* グラデーション定義 */
    --gradient-primary: linear-gradient(135deg, #06B6D4 0%, #14B8A6 50%, #0D9488 100%);
    --gradient-deep: linear-gradient(135deg, #0891B2 0%, #0C4A6E 100%);
    --gradient-light: linear-gradient(135deg, #ECFEFF 0%, #E0F2FE 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
}

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

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.35);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--bg-gray);
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('images/troubled_woman.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero-text-overlay {
    position: absolute;
    top: 100px;
    left: 180px;
    z-index: 2;
    max-width: 900px;
}

.hero-main-text {
    font-size: 65px;
    font-weight: 900;
    line-height: 1.3;
    color: white;
    margin: 0 0 30px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-highlight {
    color: #F5B800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-sub-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    color: white;
    margin: 0 0 35px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-reset {
    font-weight: 700;
}

.hero-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 24px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats-overlay {
    position: absolute;
    bottom: 40px;
    left: 180px;
    display: flex;
    gap: 60px;
    z-index: 3;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 46px;
    font-weight: 900;
    color: #F5B800;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-stat-label {
    font-size: 18px;
    font-weight: 500;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #0891B2;
    opacity: 1;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #0891B2, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

.btn-large {
    padding: 22px 48px;
    font-size: 19px;
    font-weight: 700;
}

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

.btn-primary {
    background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #0891B2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 1);
}

.btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    border-color: white;
}


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

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 16px;
    font-weight: 500;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
}

/* ========================================
   問題提起セクション
======================================== */
.problem-section {
    background: var(--bg-light-blue);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.problem-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.problem-content {
    position: relative;
    z-index: 1;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.problem-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.warning-box {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
    border: 2px solid rgba(6, 182, 212, 0.3);
    padding: 40px 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.warning-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
}

.warning-text strong {
    font-weight: 900;
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   リスクセクション
======================================== */
.risk-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.risk-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.risk-content {
    position: relative;
    z-index: 1;
}

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

.risk-item {
    background: var(--bg-gray);
    padding: 32px 24px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.risk-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.risk-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.risk-item:hover::after {
    transform: scaleX(1);
}

.risk-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.risk-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.alert-box {
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.08) 0%, rgba(8, 145, 178, 0.08) 100%);
    border: 2px solid rgba(12, 74, 110, 0.3);
    padding: 40px 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(12, 74, 110, 0.15);
    position: relative;
    overflow: hidden;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-deep);
}

.alert-box p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
}

.alert-box strong {
    font-weight: 900;
    background: var(--gradient-deep);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-section .section-title {
    color: white;
}

.service-hero {
    text-align: center;
    margin-bottom: 64px;
}

.service-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
    border-color: rgba(6, 182, 212, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(20, 184, 166, 0.15) 100%);
    border: 2px solid rgba(6, 182, 212, 0.4);
    padding: 32px 40px;
    border-radius: 12px;
    text-align: center;
}

.service-highlight p {
    font-size: 20px;
    line-height: 1.8;
    color: white;
}

.service-highlight strong {
    font-weight: 900;
    color: #06B6D4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 24px;
    font-weight: 900;
    color: #06B6D4;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.15);
    border-radius: 8px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ========================================
   CTAセクション
======================================== */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(12, 74, 110, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    text-align: center;
    opacity: 0.95;
    margin-bottom: 48px;
    line-height: 1.8;
}

.cta-note {
    display: inline-block;
    margin-top: 8px;
    font-size: 15px;
    opacity: 0.85;
    font-weight: 500;
}

.cta-calendar {
    background: white;
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
    border: 1px solid rgba(6, 182, 212, 0.1);
    max-width: 900px;
    margin: 48px auto 0;
}

#timerex_calendar {
    min-height: 600px;
}

.cta-form {
    background: white;
    padding: 56px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.required {
    background: var(--danger-color);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.optional {
    background: var(--text-light);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: var(--bg-light-blue);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-size: 16px;
    color: var(--text-color);
}

.cta-bonus {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

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

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 100px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

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

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

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

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    .nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }

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

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

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

    /* スマホ版ヒーローセクション - 一から作り直し */
    .hero {
        min-height: 100vh;
        aspect-ratio: 1080 / 2880;
        background: var(--gradient-deep);
        position: relative;
        padding: 120px 20px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/s_troubled_woman.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        pointer-events: none;
        z-index: 1;
    }
    
    .hero-background,
    .hero-background-image {
        display: none !important;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-text-overlay {
        position: static;
        text-align: center;
        padding: 0 15px;
        margin-bottom: 35px;
        z-index: 2;
    }
    
    .hero-main-text {
        font-size: 28px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .hero-sub-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .hero-reset {
        font-size: 15px;
    }
    
    .hero-buttons {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 400px;
        padding: 0 20px;
        margin-top: 60px;
        margin-bottom: 50px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 20px 30px;
        font-size: 18px;
    }
    
    .hero-stats-overlay {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        width: 100%;
        padding: 0 20px;
        flex-wrap: wrap;
        margin-top: -30px;
    }
    
    .hero-stat-item {
        text-align: center;
        flex: 0 0 auto;
    }
    
    .hero-stat-number {
        font-size: 32px;
        display: block;
        margin-bottom: 8px;
    }
    
    .hero-stat-label {
        font-size: 14px;
        display: block;
    }
    
    .hero-scroll {
        display: none;
    }

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

    .lead-text {
        font-size: 16px;
    }
    
    .service-image {
        max-width: 300px;
    }
    
    .service-hero {
        margin-bottom: 48px;
    }

    .problem-grid,
    .risk-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .warning-text {
        font-size: 16px;
    }

    .warning-text strong {
        font-size: 18px;
    }

    .alert-box p {
        font-size: 16px;
    }

    .service-highlight p {
        font-size: 16px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 14px;
    }

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

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

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

    .cta-calendar {
        padding: 32px 24px;
    }
    
    #timerex_calendar {
        min-height: 500px;
    }

    .cta-form {
        padding: 32px 24px;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }

    .sp-only {
        display: inline;
    }
}

@media (min-width: 769px) {
    .sp-only {
        display: none;
    }
}
