/* ========================================
   リセット・ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   共通クラス
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   フォント読み込み - Source Han Sans
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    font-family: 'Noto Sans JP', 'Source Han Sans', 'Source Han Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.06em;
    line-height: 1.3;
    background: linear-gradient(135deg, #2c3e50 0%, #4a90e2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2, #667eea, #764ba2);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

@media (max-width: 480px) {
    .section-title{
        font-size: 1.6rem;
    }
}
/* 注目フキダシ */
.attention-bubble {
    text-align: center;
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
}

.attention-text {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: bubbleBounce 2s ease-in-out infinite;
    position: relative;
}

/* 吹き出しの矢印（下向き） */
.attention-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 8px solid #ee5a52;
}

@keyframes bubbleBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-line {
    background: linear-gradient(135deg, #00c851, #00e85c);
    color: white;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
}

.btn-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.4);
}

.btn-consultation {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.4);
}

.btn.large {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-width: 280px;
}

.line-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   背景色
======================================== */

/* ヒーローセクション */
.hero {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(248, 250, 252, 0.6) 100%
    );
}

/* インパクト煽りセクション */
.impact-section {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(254, 249, 195, 0.5) 100%
    );
}

/* 不動産エージェント適性セクション */
.agent-suitability-section {
    background: linear-gradient(180deg, 
        rgba(254, 249, 195, 0.5) 0%, 
        rgba(239, 246, 255, 0.6) 100%
    );
}

/* 不動産エージェントとはセクション */
.real-estate-agent-section {
    background: linear-gradient(180deg, 
        rgba(239, 246, 255, 0.6) 0%, 
        rgba(240, 253, 244, 0.5) 100%
    );
}

/* エージェント実績セクション */
.agent-achievements-section {
    background: linear-gradient(180deg, 
        rgba(240, 253, 244, 0.5) 0%, 
        rgba(255, 247, 237, 0.6) 100%
    );
}

/* 選ばれる理由セクション */
.reasons {
    background: linear-gradient(180deg, 
        rgba(255, 247, 237, 0.6) 0%, 
        rgba(243, 244, 246, 0.7) 100%
    );
}

/* サポート内容セクション */
.curriculum {
    background: linear-gradient(180deg, 
        rgba(243, 244, 246, 0.7) 0%, 
        rgba(236, 254, 255, 0.6) 100%
    );
}

/* 料金プランセクション */
.pricing {
    background: linear-gradient(180deg, 
        rgba(236, 254, 255, 0.6) 0%, 
        rgba(255, 251, 235, 0.5) 100%
    );
}

/* フローセクション */
.flow {
    background: linear-gradient(180deg, 
        rgba(255, 251, 235, 0.5) 0%, 
        rgba(245, 245, 245, 0.6) 100%
    );
}

/* FAQセクション */
.faq {
    background: linear-gradient(180deg, 
        rgba(245, 245, 245, 0.6) 0%, 
        rgba(252, 231, 243, 0.5) 100%
    );
}

/* ========================================
   ヘッダー
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1500px;
    margin: 0 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 150px;
}

.header-line-btn img {
    pointer-events: none; /* 画像のクリックを無効化 */
}

/* ========================================
   デスクトップナビゲーション
======================================== */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-list a:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}


/* ヘッダー右側：CTAボタンとLINEボタン */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cta .btn {
    background: linear-gradient(135deg, #0660c7, #0595b9);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 96, 199, 0.3);
}

/* ヘッダーLINEボタン - 公式アイコン画像そのまま */
.header-line-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.header-line-btn:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

/* LINEアイコン画像スタイル */
.line-icon-img {
    width: 80px;
    height: 80px;
    display: block;
    transition: all 0.3s ease;
}

.header-line-btn:hover .line-icon-img {
    transform: scale(1.1);
}

/* ========================================
   ハンバーガーメニュー
======================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger:hover span {
    background-color: #ff6b6b;
}

/* アクティブ状態のハンバーガーボタン（×マーク） */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイル用ナビゲーション */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 80px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 20px;
    text-align: center;
    list-style: none;
    margin: 0;
}

.mobile-nav .nav-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav .nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav .nav-list a {
    display: block;
    padding: 20px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.mobile-nav .nav-list a:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

/* モバイル用CTAとLINE */
.mobile-nav .mobile-cta-group {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav .mobile-cta .btn {
    background: linear-gradient(135deg, #0660c7, #0595b9);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.mobile-nav .mobile-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 96, 199, 0.3);
}

/* モバイル用LINEボタン - 公式アイコン画像そのまま */
.mobile-nav .mobile-line {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto;
}

.mobile-nav .mobile-line:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

/* モバイル用LINEアイコン画像 */
.mobile-line .line-icon-img {
    width: 22px;
    height: 22px;
}

/* メニューオープン時のボディ設定 */
body.menu-open {
    overflow: hidden;
}

/* ========================================
   レスポンシブ対応
======================================== */

/* タブレット用 */
@media (max-width: 1024px) {

    .header-cta-group {
        gap: 10px;
    }
    
    .header-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .line-icon-img {
        width: 42px;
        height: 42px;
    }

    .mobile-line .line-icon-img {
        width: 50px;
        height: 50px;
    }
    .nav-list {
        gap: 20px;
    }
    
    .nav-list a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* スマホ用 */
@media (max-width: 768px) {
    .header-content {
        padding: 12px 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* ハンバーガーメニューを表示 */
    .hamburger {
        display: flex;
    }
    
    /* デスクトップ用ナビとCTAを隠す */
    .nav{
        display: none;
    }

   .header-cta .btn {
        padding: 8px 16px; /* スマホで小さく */
        font-size: 0.9rem;
    }
    
    /* モバイルナビのアニメーション */
    .mobile-nav {
        animation: slideInFromRight 0.3s ease when active;
    }
    
    @keyframes slideInFromRight {
        from {
            right: -100%;
        }
        to {
            right: 0;
        }
    }
}

/* 小さいスマホ用 */
@media (max-width: 480px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hamburger {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .mobile-nav {
        padding-top: 70px;
    }
    
    .mobile-nav .nav-list {
        padding: 30px 15px;
    }
    
    .mobile-nav .nav-list a {
        padding: 18px 15px;
        font-size: 1rem;
    }

    .mobile-nav .mobile-cta-group {
        padding: 20px 15px;
        gap: 12px;
    }
    
    .mobile-line .line-icon-img {
        width: 44px;
        height: 44px;
    }
}

/* 横向きスマホ用 */
@media (max-width: 812px) and (orientation: landscape) {
    .mobile-nav {
        padding-top: 60px;
    }
    
    .mobile-nav .nav-list {
        padding: 20px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .mobile-nav .nav-list a {
        padding: 15px;
    }
}

/* フォーカス状態のアクセシビリティ */
.hamburger:focus {
    outline: 2px solid #6b9aff;
    outline-offset: 2px;
}

.nav-list a:focus,
.mobile-nav .nav-list a:focus {
    outline: 2px solid #6b9aff;
    outline-offset: -2px;
    background: rgba(255, 107, 107, 0.1);
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .hamburger span {
        background-color: #333;
    }
    
    .hamburger:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }
}

/* アニメーション無効化設定 */
@media (prefers-reduced-motion: reduce) {
    .hamburger,
    .hamburger span,
    .mobile-nav,
    .nav-list a,
    .header-cta .btn {
        transition: none;
    }
}

/* ========================================
   ヒーロースライダー（既存画像使用）
======================================== */
.hero {
    position: relative;
    height: auto;
    min-height: 400px;
    overflow: hidden;
    padding: 80px 0 0;
    background: transparent;
}

/* スライダーコンテナ */
.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* スライドアイテム */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* 画像ラッパー */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* ヒーロー画像 */
.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* PC用画像 */
.hero-img-pc {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* スマホ用画像 */
.hero-img-sp {
    display: none;
}

/* テキストオーバーレイ */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    text-align: left;
    z-index: 10;
    max-width: 500px;
    width: auto;
}

.overlay-title {
    background: #092061;
    color: white;
    padding: 16px 24px;
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
    display: inline-block;
}

.overlay-subtitle {
    background: white;
    color: #333;
    padding: 16px 24px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 0.6s forwards;
    display: block;
    margin-top: 8px;
    width: auto;
    max-width: 500px;
}

.overlay-description {
    background: white;
    color: #333;
    padding: 16px 24px;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 0;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 0.9s forwards;
    display: block;
    margin-top: 8px;
    width: auto;
    max-width: 500px;
}

.overlay-cta {
    margin-top: 30px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out 1.2s forwards;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4a90c2, #5ba0d2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(74, 144, 194, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #3d7ba8, #4a90c2);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 35px rgba(74, 144, 194, 0.4);
}

.highlight {
    color: #ff6b6b;
    font-weight: 800;
}

/* アニメーション */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ナビゲーションドット */
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 15;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav-dot.active {
    background: #4a90c2;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(74, 144, 194, 0.8);
    border-color: #4a90c2;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

/* 矢印ナビゲーション */
.hero-arrow {
    position: absolute;
    bottom: 10px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-arrow:hover {
    background: rgba(74, 144, 194, 0.8);
    transform: scale(1.1);
    border-color: #4a90c2;
    box-shadow: 0 6px 20px rgba(74, 144, 194, 0.5);
}

.hero-arrow.prev {
    left: 50px;
}

.hero-arrow.next {
    right: 50px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 0;
    }
    
    .hero-img-pc {
        display: none;
    }
    
    .hero-img-sp {
        display: block;
        width: 100%;
        height: auto;
    }

    .hero-text-overlay {
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .overlay-title {
        font-size: 1.4rem;
        padding: 12px 20px;
    }

    .overlay-subtitle {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .overlay-description {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .hero-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .hero-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 8px;
    }

    .hero-arrow.prev {
        left: 20px;
    }

    .hero-arrow.next {
        right: 20px;
    }

    .hero-nav {
        bottom: 30px;
        padding: 10px 16px;
        gap: 14px;
    }

    .nav-dot {
        width: 14px;
        height: 14px;
    }
    
    /* スマホ用：矢印を非表示にしてスワイプを強調 */
    .hero-arrow {
        display: none;
    }
    
    /* スワイプヒント */
    .hero-slider::after {
        content: 'スワイプして切り替え →';
        position: absolute;
        bottom: 80px;
        right: 20px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 8px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        z-index: 10;
        animation: swipeHintFade 3s ease-in-out infinite;
    }
}

@keyframes swipeHintFade {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 0;
    }

    .hero-text-overlay {
        left: 15px;
        max-width: calc(100% - 30px);
    }

    .overlay-title {
        font-size: 1.2rem;
        padding: 10px 16px;
    }

    .overlay-subtitle {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .overlay-description {
        font-size: 1rem;
        padding: 10px 16px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .overlay-cta {
        margin-top: 20px;
    }
    
    .hero-nav {
        bottom: 25px;
        padding: 8px 14px;
        gap: 12px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }
    
    .hero-slider::after {
        bottom: 70px;
        right: 15px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

/* スライドが切り替わる時のアニメーション再実行 */
.hero-slide:not(.active) .overlay-title,
.hero-slide:not(.active) .overlay-subtitle,
.hero-slide:not(.active) .overlay-description,
.hero-slide:not(.active) .overlay-cta {
    opacity: 0;
    transform: translateX(-50px);
    animation: none;
}

.hero-slide.active .overlay-title {
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

.hero-slide.active .overlay-subtitle {
    animation: slideInLeft 0.8s ease-out 0.6s forwards;
}

.hero-slide.active .overlay-description {
    animation: slideInLeft 0.8s ease-out 0.9s forwards;
}

.hero-slide.active .overlay-cta {
    animation: slideInLeft 0.8s ease-out 1.2s forwards;
}

/* ========================================
    インパクト煽りセクション - スライダー対応
======================================== */

/* キーフレームアニメーション（スワイプヒント用） */
@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

.impact-section {
    padding: 80px 0;
    color: #212529;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 背景装飾 */
.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.warning-icon {
    margin-bottom: 30px;
    animation: pulse-warning 1.5s ease-in-out infinite;
}

.warning-symbol {
    font-size: 4.5rem;
    filter: drop-shadow(0 0 8px rgba(220, 53, 69, 0.3));
    animation: shake 3s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* メインメッセージ */
.impact-message {
    margin-bottom: 60px;
}

.impact-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 8px rgba(220, 53, 69, 0.2);
    }
}

.impact-emphasis {
    color: #dc3545;
    text-decoration: underline;
    text-decoration-color: #dc3545;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(220, 53, 69, 0.2);
}

.impact-highlight {
    background: linear-gradient(135deg, #dc3545, #c82333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* PC用：グリッド表示（デスクトップ） */
@media (min-width: 769px) {
    .reality-check {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .scary-arrow {
        font-size: 48px;
        color: #ff4757;
        text-align: center;
        margin: 20px 0;
        animation: scary-bounce 1.5s infinite;
        text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
        filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.3));
    }

    .empathy-section .reality-check {
        margin-top: 0;
    }

    /* スマホ用スライダーを非表示 */
    .impact-slider-container {
        display: none;
    }
}

/* スマホ用：スライダー表示（768px以下） */
@media (max-width: 768px) {
    /* PC用要素を非表示 */
    .reality-check {
        display: none;
    }

    .empathy-section {
        display: none;
    }

    .scary-arrow:not(.scary-arrow-right) {
        display: none;
    }

    /* スライダーコンテナ */
    .impact-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        position: relative;
        margin: 0 -15px;
    }

    .impact-slider-container::-webkit-scrollbar {
        display: none;
    }

    .impact-slider {
        display: flex;
        gap: 20px 60px;
        width: max-content;
        padding: 20px 15px 30px 15px;
    }

    .impact-slide {
        min-width: 280px;
        width: 280px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
    }

    .impact-slide .anxiety-card {
        margin-bottom: 0; /* スライダー内では余白を削除 */
    }
    
    .impact-slide .reality-item {
        margin-bottom: 0; /* reality-itemの余白も削除 */
    }

    /* 右向き矢印（スライド1の右側に配置） */
    .scary-arrow-right {
        position: absolute;
        top: 50%;
        right: -70px;
        transform: translateY(-50%);
        font-size: 70px;
        color: #ff4757;
        animation: scary-bounce-right 1.5s infinite;
        text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
        filter: drop-shadow(0 4px 8px rgba(220, 53, 69, 0.3));
        z-index: 10;
    }

    /* スワイプヒント矢印を削除 */
    .impact-slider-container::before {
        display: none;
    }
}

@keyframes scary-bounce {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        color: #ff4757;
    }
    50% { 
        transform: translateY(10px) scale(1.1);
        color: #dc3545;
        text-shadow: 0 0 15px rgba(255, 71, 87, 0.8);
    }
}

@keyframes scary-bounce-right {
    0%, 100% { 
        transform: translateY(-50%) scale(1);
        color: #ff4757;
    }
    50% { 
        transform: translateY(-50%) scale(1.1);
        color: #dc3545;
        text-shadow: 0 0 15px rgba(255, 71, 87, 0.8);
    }
}

.reality-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    padding: 20px 15px;
    border-radius: 15px;
    border: 2px solid #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
    transition: all 0.3s ease;
    animation: danger-pulse 3s ease-in-out infinite;
    height: 160px; /* 高さを固定 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes danger-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.15);
    }
    50% {
        box-shadow: 0 12px 35px rgba(220, 53, 69, 0.25);
    }
}

.reality-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.3);
}

.reality-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #dc3545;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(220, 53, 69, 0.2);
    animation: number-throb 2s ease-in-out infinite;
}

@keyframes number-throb {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.reality-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    line-height: 1.3;
}

.red-text {
    color: #dc3545;
    font-weight: 900;
    text-shadow: 0 0 3px rgba(220, 53, 69, 0.2);
    animation: text-flash 1.5s ease-in-out infinite;
}

@keyframes text-flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* 共感セクション */
.empathy-section {
    margin: 30px 0;
}

.anxiety-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    padding: 20px 15px;
    border-radius: 15px;
    border: 2px solid #ff4757;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.15);
    transition: all 0.3s ease;
    animation: anxiety-shake 3s infinite;
    position: relative;
    overflow: hidden;
    height: 160px; /* reality-itemと同じ高さに固定 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.anxiety-card:nth-child(2) {
    animation-delay: 0.5s;
}

.anxiety-card:nth-child(3) {
    animation-delay: 1s;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.anxiety-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff4757, #ff6b7a, #ff4757);
    animation: warning-pulse 1.5s infinite;
    z-index: 3;
}

.anxiety-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(255, 71, 87, 0.4),
        0 0 0 1px rgba(255, 71, 87, 0.2);
    border-color: #ff3742;
}

.anxiety-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff4756af, #ff3741af);
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
    z-index: 4;
    position: relative;
}

.anxiety-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(255, 71, 87, 0.5);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: text-tremble 2s infinite;
    z-index: 4;
    position: relative;
}

.stress-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ff4757;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 4s infinite linear;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; animation-delay: 1s; }
.particle:nth-child(3) { left: 60%; animation-delay: 2s; }
.particle:nth-child(4) { left: 80%; animation-delay: 3s; }

@keyframes warning-pulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.05); }
}

@keyframes anxiety-shake {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    2% { transform: translateX(-1px) translateY(-1px); }
    4% { transform: translateX(1px) translateY(1px); }
    6% { transform: translateX(-1px) translateY(1px); }
    8% { transform: translateX(1px) translateY(-1px); }
    10% { transform: translateX(0px) translateY(0px); }
    20% { transform: translateX(-0.5px) translateY(0.5px); }
    22% { transform: translateX(0.5px) translateY(-0.5px); }
    24% { transform: translateX(0px) translateY(0px); }
}

@keyframes text-tremble {
    0%, 100% { transform: translateX(0px); }
    25% { transform: translateX(-0.5px); }
    50% { transform: translateX(0.5px); }
    75% { transform: translateX(-0.3px); }
}

@keyframes float {
    0% { transform: translateY(100px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* スマホ用の調整 */
@media (max-width: 480px) {
    .warning-symbol{
        font-size: 3.5rem;
    }
    .impact-section {
        padding: 40px 0;
    }
    
    .impact-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .mobile-break::before {
        content: "\A";
        white-space: pre;
    }

    .impact-slide {
        min-width: 260px;
        width: 260px;
    }
    
    .reality-item {
        padding: 15px 12px;
        height: 140px;
    }
    
    .reality-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .reality-text {
        font-size: 0.9rem;
    }

    .scary-arrow-right {
        right: -60px;
        font-size: 60px;
    }
    
    .anxiety-card {
        height: 140px;
        padding: 15px 12px;
        margin-bottom: 15px;
    }
    
    .anxiety-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .anxiety-text {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* 極小スマホ用 */
@media (max-width: 360px) {
    .impact-slide {
        min-width: 240px;
        width: 240px;
    }

    .scary-arrow-right {
        right: -30px;
        font-size: 32px;
    }
}

/* デスクトップでは矢印を非表示 */
@media (hover: hover) and (pointer: fine) {
    .impact-slider-container::before {
        display: none;
    }
}

/* ========================================
    共感メッセージと解決策ティーザー
======================================== */

.empathy-message {
    text-align: center;
    margin-top: 60px;
    padding: 0;
}

.empathy-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #2c3e50;
}

.empathy-highlight {
    background: linear-gradient(135deg, #3498db, #2980b9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.empathy-description {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0;
    color: #495057;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.urgent-text {
    color: #dc3545;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #dc3545;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    animation: urgent-pulse 2s ease-in-out infinite;
}

@keyframes urgent-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}


/* レスポンシブ対応 */
@media (max-width: 768px) {

    .empathy-title {
        font-size: 2rem;
    }
}

/* スマホ用 */
@media (max-width: 480px) {
    .empathy-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .empathy-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ========================================
    解決策セクション - 常時アニメーション
======================================== */
.solution-simple {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9f3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.solution-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* スマートバッジ */
.answer-badge {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 15px;
}

.answer-tag {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.answer-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: tag-shine 2s ease-in-out infinite;
}

@keyframes tag-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* メインタイトル */
.solution-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 70px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.solution-highlight {
    color: #22c55e;
    font-weight: 800;
}

/* 数字グリッド */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.number-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

/* 常時回転アニメーション */
.number-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(34, 197, 94, 0.15) 60deg,
        rgba(34, 197, 94, 0.3) 90deg,
        rgba(34, 197, 94, 0.15) 120deg,
        transparent 180deg,
        rgba(34, 197, 94, 0.1) 240deg,
        rgba(34, 197, 94, 0.2) 270deg,
        rgba(34, 197, 94, 0.1) 300deg,
        transparent 360deg
    );
    animation: card-rotate 4s linear infinite;
}

.number-card::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 19px;
    z-index: 1;
}

@keyframes card-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.number-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 
        0 25px 50px -12px rgba(34, 197, 94, 0.25),
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.number-card:hover::before {
    animation-duration: 1.5s;
}

.big-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 12px;
    line-height: 1;
    position: relative;
    z-index: 2;
    animation: number-glow 3s ease-in-out infinite;
}

@keyframes number-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(34, 197, 94, 0.5),
            0 0 30px rgba(34, 197, 94, 0.3);
    }
}

.number-label {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.number-desc {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* 特徴グリッド */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.feature-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

/* 常時光のスライドアニメーション */
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 197, 94, 0.15),
        rgba(34, 197, 94, 0.25),
        rgba(34, 197, 94, 0.15),
        transparent
    );
    animation: shimmer-slide 3s ease-in-out infinite;
}

@keyframes shimmer-slide {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.feature-item:hover {
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(34, 197, 94, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.feature-item:hover::before {
    animation-duration: 1.5s;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: icon-pulse 4s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    }
    50% {
        transform: scale(1.05);
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    }
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(34, 197, 94, 0.2);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* CTA部分 */
.solution-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cta-highlight {
    color: #22c55e;
    position: relative;
}

.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #10b981);
    border-radius: 2px;
    animation: highlight-pulse 2s ease-in-out infinite;
}

@keyframes highlight-pulse {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}

.solution-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    animation: button-breathe 3s ease-in-out infinite;
}

@keyframes button-breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
    }
}

.solution-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: button-shine 3s ease-in-out infinite;
}

@keyframes button-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.solution-button:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    animation-play-state: paused;
}

.solution-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .solution-simple {
        padding: 60px 0;
    }
    
    .solution-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 50px;
    }
    
    .number-card {
        padding: 24px 16px;
    }
    
    .big-number {
        font-size: 2.2rem;
    }
    
    .number-label {
        font-size: 0.9rem;
    }
    
    .number-desc {
        font-size: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 24px 16px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .solution-cta {
        padding: 20px 25px;
    }
    
    .cta-text {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .solution-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .solution-title {
        font-size: 1.8rem;
    }
    
    .answer-tag {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .number-card {
        padding: 20px 12px;
    }
    
    .big-number {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .number-label {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    .number-desc {
        font-size: 0.7rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .feature-text {
        font-size: 0.75rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
}

/* ========================================
   不動産エージェント適性セクション
======================================== */
.agent-suitability-section {
    padding: 0px 20px;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.agent-suitability-section .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 30px;
}

/* タイトル */
.suitability-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    font-family: 'Noto Sans JP', 'Source Han Sans', 'Source Han Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.06em;
    line-height: 1.3;
    background: linear-gradient(135deg, #2c3e50 0%, #4a90e2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.suitability-section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2, #667eea, #764ba2);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* チェックリスト */
.suitability-check-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 60px 50px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.suitability-check-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(59, 130, 246, 0.03) 45%, rgba(59, 130, 246, 0.03) 55%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(96, 165, 250, 0.02) 45%, rgba(96, 165, 250, 0.02) 55%, transparent 60%);
    background-size: 40px 40px;
    animation: suitabilityHologram 10s linear infinite;
    opacity: 0.7;
}

@keyframes suitabilityHologram {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

.suitability-check-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #1f2937;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.suitability-check-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.suitability-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 80px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.suitability-check-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    transition: all 0.3s ease;
    animation: suitabilityCheckItemSlide 8s ease-in-out infinite;
}

@keyframes suitabilityCheckItemSlide {
    0%, 100% { 
        transform: translateX(0px);
        opacity: 1;
    }
    50% { 
        transform: translateX(5px);
        opacity: 0.9;
    }
}

.suitability-check-item:nth-child(2n) {
    animation-delay: -1s;
}

.suitability-check-item:nth-child(3n) {
    animation-delay: -2s;
}

.suitability-check-item:nth-child(4n) {
    animation-delay: -3s;
}

.suitability-check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: suitabilityIconPulse 3s ease-in-out infinite;
}

@keyframes suitabilityIconPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        background: linear-gradient(135deg, #3b82f6, #60a5fa);
    }
    50% { 
        transform: scale(1.1) rotate(5deg); 
        background: linear-gradient(135deg, #60a5fa, #93c5fd);
    }
}

.suitability-check-item:nth-child(even) .suitability-check-icon {
    animation-delay: -1.5s;
}

.suitability-check-text {
    color: #4b5563;
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.3rem;
}

.suitability-check-emphasis {
    color: #1f2937;
    font-weight: 600;
    color: #3b82f6;
}

/* CTA */
.cta-section {
    text-align: center;
    margin: 50px auto;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9, #f8fafc);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(59, 130, 246, 0.02) 2deg, transparent 4deg);
    animation: suitabilityRotate 30s linear infinite;
}

@keyframes suitabilityRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-text {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-highlight {
    color: #1f2937;
    font-weight: 600;
    color: #3b82f6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #60a5fa, #93c5fd);
    color: white;
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    overflow: hidden;
    animation: suitabilityButtonGlow 4s ease-in-out infinite;
    text-decoration: none;
}

@keyframes suitabilityButtonGlow {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: suitabilityButtonShimmer 3s linear infinite;
}

@keyframes suitabilityButtonShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .agent-suitability-section {
        padding: 20px 15px;
    }
    
    .suitability-section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .suitability-card-list {
        grid-template-columns: repeat(2, 300px);
        gap: 30px;
        justify-content: center;
    }
    
    .suitability-card-item {
        width: 300px;
        height: 280px;
        padding: 40px 25px;
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    }
    
    .suitability-check-section {
        padding: 40px 25px;
        clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
    }
    
    .suitability-check-title {
        font-size: 1.8rem;
    }
    
    .suitability-check-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }
    
    .cta-section {
        padding: 60px 25px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .agent-suitability-section .container{
        padding: 5px;
    }

    .agent-suitability-section {
        padding: 20px 10px;
    }

    .suitability-section-title{
        font-size: 1.3rem;
    }

    .suitability-check-title{
        font-size: 1.5rem;
    }

    .suitability-check-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 40px;
        max-width: 100%;
    }

    .suitability-check-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .suitability-check-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .cta-section {
        padding: 40px 20px;
        margin: 30px auto;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.4rem;
    }
}

/* ========================================
   不動産エージェントカードセクション
======================================== */
.real-estate-agent-section {
    padding: 100px 0;
    position: relative;
}

.re-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.re-card-wrapper {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.8));
    animation: re-glow-outline 2s ease-in-out infinite;
    justify-self: center;
}

@keyframes re-glow-outline {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(74, 144, 226, 1));
    }
}

.re-card-container {
    width: 350px;
    height: 380px;
    background: white;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 60px 100%, 0 calc(100% - 60px));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 上部の画像部分 */
.re-image-section {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.re-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.re-image-overlay {
    background: white;
    padding: 5px 10px;
    color: #333;
    border-radius: 6px;
    z-index: 2;
    text-align: center;
}

.re-overlay-text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.re-overlay-highlight {
    color: rgb(44, 149, 235);
    font-weight: 700;
}

/* 下部のテキスト部分 */
.re-text-section {
    height: 250px;
    background: rgb(44, 149, 235);
    position: relative;
    padding: 20px;
}

.re-center-text {
    font-size: 1rem;
    line-height: 1.4;
    color: white;
    text-align: center;
    margin-top: 10px;
}

.re-highlight {
    color: #ff6b35;
    font-weight: 700;
}

/* ========================================
   不動産エージェントカードセクション - スライダー対応
======================================== */

/* PC用：2x2のグリッド（そのまま） */
@media (min-width: 901px) {
    .re-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
    }
}

/* ========================================
   スワイプヒント矢印 - スマホ対応修正版
======================================== */

/* キーフレームアニメーション（共通） */
@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

/* タブレット用：スライダー */
@media (max-width: 900px) and (min-width: 481px) {
    .real-estate-agent-section {
        padding: 70px 0;
    }
    
    .re-cards-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 25px;
        max-width: none;
        margin: 0 auto;
        padding: 20px 20px 30px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        /* 追加：relative positioning */
        position: relative;
    }
    
    .re-cards-container::-webkit-scrollbar {
        display: none;
    }
    
    .re-card-wrapper {
        flex-shrink: 0;
    }
    
    .re-card-container {
        width: 320px;
        height: 360px;
        clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
    }
    
    .re-image-section {
        height: 180px;
    }
    
    .re-text-section {
        height: 180px;
        padding: 18px;
    }
    
    .re-center-text {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-top: 8px;
    }
    
    .re-overlay-text {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .re-image-overlay {
        padding: 6px 12px;
    }

    /* スワイプヒント矢印 - タブレット版 */
    .re-cards-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    /* スクロール開始後は非表示 */
    .re-cards-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* スマホ用：スライダー */
@media (max-width: 480px) {
    .real-estate-agent-section {
        padding: 50px 0;
        overflow: hidden;
    }
    
    .re-cards-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
        max-width: none;
        margin: 0 auto;
        padding: 20px 15px 30px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        width: calc(100vw - 20px);
        /* 修正：relative positioning を追加 */
        position: relative;
    }
    
    .re-cards-container::-webkit-scrollbar {
        display: none;
    }
    
    .re-card-wrapper {
        flex-shrink: 0;
    }
    
    .re-card-container {
        width: calc(100vw - 80px);
        max-width: 260px;
        min-width: 220px;
        height: 320px;
        clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    }
    
    .re-image-section {
        height: 160px;
    }
    
    .re-text-section {
        height: 160px;
        padding: 15px;
    }
    
    .re-center-text {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-top: 5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .re-overlay-text {
        font-size: 1rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .re-image-overlay {
        padding: 5px 10px;
    }

    /* スワイプヒント矢印 - スマホ版 */
    .re-cards-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    /* スクロール開始後は非表示 */
    .re-cards-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* 小さいスマホ用：スライダー */
@media (max-width: 360px) {
    .re-cards-container {
        gap: 15px;
        padding: 15px 10px 25px 10px;
    }
    
    .re-card-container {
        width: 250px;
        height: 280px;
        clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    }
    
    .re-image-section {
        height: 140px;
    }
    
    .re-text-section {
        height: 140px;
        padding: 12px;
    }
    
    .re-center-text {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-top: 3px;
    }
    
    .re-overlay-text {
        font-size: 0.9rem;
    }
    
    .re-image-overlay {
        padding: 4px 8px;
    }
}

/* 横向きスマホ・タブレット用 */
@media (max-width: 900px) and (orientation: landscape) {
    .real-estate-agent-section {
        padding: 40px 0;
    }
    
    .re-card-container {
        height: 280px;
    }
    
    .re-image-section {
        height: 140px;
    }
    
    .re-text-section {
        height: 140px;
        padding: 12px;
    }
    
    .re-center-text {
        font-size: 0.8rem;
        margin-top: 3px;
    }
}

/* 共通：アニメーション調整 */
@media (max-width: 900px) {
    .re-card-wrapper {
        animation-duration: 3s; /* アニメーション速度を少し速く */
    }
    
    /* カード間の視差効果 */
    .re-card-wrapper:nth-child(even) {
        animation-delay: -1s;
    }
    
    .re-card-wrapper:nth-child(3n) {
        animation-delay: -2s;
    }
    
    .re-card-wrapper:nth-child(4n) {
        animation-delay: -0.5s;
    }
}

@media (hover: hover) and (pointer: fine) {
    .re-cards-container::before {
        display: none;
    }
}

/* ========================================
   エージェント実績セクション
======================================== */
.agent-achievements-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.agent-achievements-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.attention-text {
    letter-spacing: 0.05em;
}

/* タイトル */
.achievements-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    position: relative;
    z-index: 2;
    font-family: 'Noto Sans JP', 'Source Han Sans', 'Source Han Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.06em;
    line-height: 1.3;
    background: linear-gradient(135deg, #2c3e50 0%, #4a90e2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.achievements-section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2, #667eea, #764ba2);
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* カードスライダー */
.achievements-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
}

.achievements-slider {
    display: flex;
    gap: 30px;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* エージェントカード - モダンデザイン */
.agent-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 320px;
    height: 480px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    flex-shrink: 0;
    /* 独特なクリップパス */
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: achievementsCardFloatAdvanced 8s ease-in-out infinite;
}

@keyframes achievementsCardFloatAdvanced {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    25% {
        transform: translateY(-8px) rotateX(2deg);
        box-shadow: 
            0 16px 48px rgba(59, 130, 246, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: translateY(-12px) rotateX(0deg);
        box-shadow: 
            0 24px 64px rgba(59, 130, 246, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    75% {
        transform: translateY(-8px) rotateX(-2deg);
        box-shadow: 
            0 16px 48px rgba(59, 130, 246, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}

.agent-card:nth-child(2) {
    animation-delay: -2.5s;
}

.agent-card:nth-child(3) {
    animation-delay: -5s;
}

.agent-card:nth-child(4) {
    animation-delay: -1.5s;
}

.agent-card:nth-child(5) {
    animation-delay: -4s;
}

.agent-card:nth-child(6) {
    animation-delay: -6.5s;
}

.agent-card:hover {
    transform: translateY(-20px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 40px 80px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* 動的グラデーション背景 */
.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(80, 145, 251, 0.1) 0%,
        rgba(151, 200, 255, 0.05) 25%,
        transparent 50%,
        rgba(96, 165, 250, 0.05) 75%,
        rgba(59, 130, 246, 0.1) 100%
    );
    background-size: 400% 400%;
    animation: achievementsGradientShift 12s ease-in-out infinite;
    z-index: 1;
}

@keyframes achievementsGradientShift {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    25% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 100%;
        opacity: 1;
    }
    75% {
        background-position: 0% 100%;
        opacity: 0.8;
    }
}

/* 光る境界線 */
.agent-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(59, 130, 246, 0.3), 
        transparent, 
        rgba(147, 197, 253, 0.3),
        transparent
    ) border-box;
    background-size: 400% 400%;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    animation: achievementsBorderGlow 8s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes achievementsBorderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ミニマルアバター */
.agent-avatar {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 400;
    font-size: 2rem;
    border: none;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    z-index: 4;
    animation: achievementsAvatarPulse 6s ease-in-out infinite;
}

@keyframes achievementsAvatarPulse {
    0%, 100% {
        transform: scale(1);
        background: linear-gradient(135deg, #1f2937, #374151);
    }
    50% {
        transform: scale(1.05);
        background: linear-gradient(135deg, #374151, #4b5563);
    }
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit;
}

/* カード内容 */
.agent-card-content {
    padding: 30px;
    text-align: left;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden; /* はみ出し防止 */
}

/* 上部：画像の隣に名前・前職・経験 */
.agent-header {
    position: absolute;
    top: 40px;
    left: 140px; /* アバター(80px) + 左余白(40px) + 間隔(20px) */
    right: 40px;
    width: calc(100% - 180px); /* 明確な幅制限 */
}

.agent-name, .agent-career, .agent-voice {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto; /* 自動ハイフネーション */
}

.agent-basic-info {
    flex: 1;
}

.agent-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.agent-career-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap; /* 折り返し許可 */
}

.agent-career {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 400;
}

.agent-experience {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

/* 中央：エージェントの声 */
.agent-voice-section {
    flex-grow: 1;
    margin-top: 120px; /* ヘッダー分の余白 */
    margin-bottom: 25px;
}

.voice-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.voice-title::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2.5rem;
    color: #3b82f6;
    opacity: 0.6;
    font-weight: bold;
}

.voice-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px; /* padding-leftと同じ位置に */
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #93c5fd);
    border-radius: 2px;
}

.agent-voice {
    color: #374151;
    line-height: 1.7;
    font-size: 0.9rem;
    font-weight: 400;
    position: relative;
    font-style: italic;
    padding-left: 15px;
}

.agent-voice::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #93c5fd);
    border-radius: 2px;
}

/* 成果表示エリア */
.agent-results {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 20px;
    align-items: end;
}

/* モダン収入表示 */
.agent-income {
    background: none;
    color: #1f2937;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.8rem;
    display: block;
    position: relative;
    letter-spacing: -0.02em;
    animation: achievementsIncomeShimmer 4s ease-in-out infinite;
}

.agent-income::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent
    );
    animation: achievementsShimmerMove 3s ease-in-out infinite;
}

@keyframes achievementsIncomeShimmer {
    0%, 100% {
        color: #1f2937;
    }
    50% {
        color: #3b82f6;
    }
}

@keyframes achievementsShimmerMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.agent-income-label {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

/* 申込数表示 */
.agent-applications {
    text-align: center;
    padding: 15px 0;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.agent-applications::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(16, 185, 129, 0.2),
        transparent
    );
    animation: achievementsApplicationShimmer 5s ease-in-out infinite;
}

@keyframes achievementsApplicationShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.applications-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
    animation: achievementsApplicationsCount 3s ease-in-out infinite;
}

@keyframes achievementsApplicationsCount {
    0%, 100% {
        transform: scale(1);
        color: #10b981;
    }
    50% {
        transform: scale(1.05);
        color: #059669;
    }
}

.applications-label {
    font-size: 0.6rem;
    color: #10b981;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* ========================================
   レスポンシブデザイン - 文字折り返し修正版 + スワイプヒント矢印
======================================== */

/* キーフレームアニメーション（共通） */
@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

/* PC用グリッド */
@media (min-width: 769px) {
    .achievements-slider-container {
        margin: 0;
        overflow: visible;
    }
    
    .achievements-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0;
        transform: none !important;
    }
    
    .agent-card {
        min-width: auto;
        width: 100%;
    }
}

/* タブレット用スライダー対応 */
@media (max-width: 1024px) and (min-width: 769px) {
    .agent-achievements-section {
        padding: 80px 0;
    }
    
    .achievements-section-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    /* カード設定 */
    .agent-card {
        /* 修正：幅を完全に固定 */
        min-width: 320px;
        max-width: 320px;
        width: 320px;
        height: 450px;
        /* 追加：オーバーフロー制御 */
        overflow: hidden;
        flex-shrink: 0;
        clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
    }
    
    /* アバター調整 */
    .agent-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        top: 35px;
        left: 35px;
    }
    
    /* ヘッダー部分 */
    .agent-header {
        top: 35px;
        left: 125px; /* アバター(70px) + 左余白(35px) + 間隔(20px) */
        right: 35px;
        /* 修正：文字折り返し対応 */
        width: calc(100% - 160px);
        max-width: calc(100% - 160px);
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .agent-career-line {
        /* 追加：折り返し対応 */
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .agent-name {
        font-size: 1.4rem;
        margin-bottom: 4px;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }
    
    .agent-career {
        font-size: 0.8rem;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex-shrink: 1;
    }
    
    .agent-experience {
        font-size: 0.75rem;
        padding: 3px 8px;
        /* 追加：縮小を防ぐ */
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    /* エージェントの声セクション */
    .agent-voice-section {
        margin-top: 105px;
        margin-bottom: 25px;
        /* 追加：幅制限 */
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .voice-title {
        font-size: 1rem;
        margin-bottom: 13px;
        padding-left: 18px;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .voice-title::before {
        font-size: 2.2rem;
        top: -7px;
    }
    
    .voice-title::after {
        left: 18px;
        width: 55px;
        height: 2.5px;
    }
    
    .agent-voice {
        font-size: 0.85rem;
        line-height: 1.6;
        padding-left: 13px;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: justify;
    }
    
    .agent-voice::before {
        width: 2.5px;
    }
    
    /* 成果表示エリア */
    .agent-results {
        grid-template-columns: 1fr 70px;
        gap: 18px;
    }
    
    .agent-income {
        font-size: 1.6rem;
    }
    
    .agent-income-label {
        font-size: 0.68rem;
    }
    
    .agent-applications {
        padding: 12px 0;
    }
    
    .applications-number {
        font-size: 1.6rem;
    }
    
    .applications-label {
        font-size: 0.58rem;
    }
    
    /* カードコンテンツ全体 */
    .agent-card-content {
        padding: 28px;
        /* 追加：オーバーフロー防止 */
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* スライダー用スクロール */
    .achievements-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        margin: 0 -15px; /* 左右の余白調整 */
        /* 追加：relative positioning */
        position: relative;
    }
    
    .achievements-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .achievements-slider {
        display: flex; /* グリッドからフレックスに変更 */
        gap: 25px;
        width: max-content;
        padding: 20px 20px 30px 20px;
        transform: none !important;
        transition: none !important;
    }
    
    /* スワイプヒント矢印 - タブレット版 */
    .achievements-slider-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 30px;
        transform: translateY(-50%);
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    /* スクロール開始後は非表示 */
    .achievements-slider-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
    
    /* 注目フキダシ調整 */
    .attention-bubble {
        margin-bottom: 35px;
    }
    
    .attention-text {
        font-size: 0.85rem;
        padding: 10px 22px;
    }
}

/* タブレット縦向き専用調整 */
@media (max-width: 1024px) and (min-width: 769px) and (orientation: portrait) {
    .agent-card {
        height: 480px; /* 縦向きでは高さを少し増加 */
    }
    
    .agent-voice-section {
        margin-top: 110px;
    }
    
    .agent-voice {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* タブレット横向き専用調整 */
@media (max-width: 1024px) and (min-width: 769px) and (orientation: landscape) {
    .agent-achievements-section {
        padding: 60px 0;
    }
    
    .agent-card {
        height: 400px; /* 横向きでは高さを抑制 */
    }
    
    .agent-voice-section {
        margin-top: 95px;
        margin-bottom: 20px;
    }
    
    .agent-voice {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .achievements-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* スマホ用スライダー */
@media (max-width: 768px) {
    .agent-achievements-section {
        padding: 60px 15px;
    }
    
    .achievements-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .agent-card {
        min-width: 280px;
        height: 420px;
        clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
        width: 300px;      /* 追加：固定幅設定 */
        /* 追加：オーバーフロー制御 */
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .agent-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 30px;
        left: 30px;
    }
    
    .agent-header {
        top: 30px;
        left: 110px;
        right: 30px;
        /* 修正：スマホ用幅制限と文字折り返し */
        width: calc(100% - 140px);
        max-width: calc(100% - 140px);
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .agent-career-line {
        /* 追加：スマホでは縦並びも許可 */
        flex-wrap: wrap;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .agent-name {
        font-size: 1.2rem;
        margin-bottom: 3px;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
    
    .agent-career {
        font-size: 0.75rem;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .agent-experience {
        font-size: 0.7rem;
        padding: 2px 6px;
        /* 追加：縮小を防ぐ */
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .agent-voice-section {
        margin-top: 90px;
        margin-bottom: 20px;
        /* 追加：幅制限 */
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .voice-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 15px;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
    
    .voice-title::before {
        font-size: 2rem;
        top: -6px;
    }
    
    .voice-title::after {
        left: 15px;
        width: 50px;
        height: 2px;
    }
    
    .agent-voice {
        font-size: 0.8rem;
        line-height: 1.6;
        padding-left: 12px;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: justify;
    }
    
    .agent-voice::before {
        width: 2px;
    }
    
    .agent-results {
        grid-template-columns: 1fr 60px;
        gap: 15px;
    }
    
    .agent-income {
        font-size: 1.4rem;
    }
    
    .agent-income-label {
        font-size: 0.65rem;
    }
    
    .agent-applications {
        padding: 10px 0;
    }
    
    .applications-number {
        font-size: 1.5rem;
    }
    
    .applications-label {
        font-size: 0.55rem;
    }
    
    /* スライダー用スクロール */
    .achievements-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        /* 追加：relative positioning */
        position: relative;
    }
    
    .achievements-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .achievements-slider {
        width: max-content;
        padding: 20px 20px 30px 20px;
        transform: none !important;
        transition: none !important;
    }
    
    /* スワイプヒント矢印 - スマホ版 */
    .achievements-slider-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    /* スクロール開始後は非表示 */
    .achievements-slider-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* 小さいスマホ用 */
@media (max-width: 480px) {
    .achievements-section-title {
        font-size: 1.8rem;
    }
    
    .agent-card {
        min-width: 260px;
        height: 400px;
        width: 280px;      /* 追加：固定幅設定 */
        height: 400px;
        /* 追加：オーバーフロー制御 */
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .agent-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: 25px;
        left: 25px;
    }
    
    .agent-header {
        top: 25px;
        left: 90px;
        right: 25px;
        /* 修正：小さいスマホ用幅制限 */
        width: calc(100% - 115px);
        max-width: calc(100% - 115px);
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .agent-career-line {
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .agent-name {
        font-size: 1.2rem;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
    
    .agent-career {
        font-size: 0.8em;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .agent-experience {
        font-size: 0.7rem;
        /* 追加：縮小を防ぐ */
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .agent-voice-section {
        margin-top: 75px;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .voice-title {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        margin-top: 15px;
    }
    
    .agent-voice {
        font-size: 0.8rem;
        /* 追加：文字折り返し */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        text-align: justify;
        line-height: 1.5;
        margin-top: 20px;
    }
    
    .agent-card-content {
        padding: 25px;
        /* 追加：オーバーフロー防止 */
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .attention-bubble {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* 極小画面用 */
@media (max-width: 360px) {
    .agent-header {
        width: calc(100% - 100px);
        max-width: calc(100% - 100px);
    }
    
    .agent-name {
        font-size: 1rem;
    }
    
    .agent-career {
        font-size: 0.65rem;
    }
    
    .agent-experience {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}

/* 横向きスマホ用 */
@media (max-width: 812px) and (orientation: landscape) {
    .agent-achievements-section {
        padding: 40px 0;
    }
    
    .achievements-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .agent-card {
        height: 360px;
    }
    
    .agent-career-line {
        /* 横向きでは横並びを維持 */
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .agent-voice-section {
        margin-top: 80px;
        margin-bottom: 15px;
    }
    
    .agent-voice {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* デスクトップでは矢印を非表示 */
@media (hover: hover) and (pointer: fine) {
    .achievements-slider-container::before {
        display: none;
    }
}

/* ========================================
    Wコミコミエージェントが選ばれる理由セクション - レスポンシブ対応
======================================== */

/* 基本スタイル（デスクトップ） */
.reasons {
    padding: 80px 0;
}

.reasons-title {
    text-align: center;
    margin-bottom: 80px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
}

.main-title .highlight-text {
    color: #ff6b6b;
    font-size: 3.2rem;
}

.reason-content {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    gap: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.reason-image {
    width: 400px;
    flex-shrink: 0;
    text-align: center;
    overflow: hidden;
}

.reason-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.3s ease;
}

.reason-image img:hover {
    transform: scale(1.02);
}

.reason-text {
    flex: 1;
    padding: 0;
}

.reason-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.reason-description {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 2番目と3番目の理由は画像と文字を逆配置 */
.reason-content.reverse {
    flex-direction: row-reverse;
}

/* 強調用CSS */
strong {
    color: #333;
    font-weight: 700; 
}

.blue-text {
    color: #007bff;
    font-weight: 700;
}

.blue-text:hover {
    color: #0056b3;
    transition: color 0.3s ease;
}

.yellow-underline {
    background: linear-gradient(180deg, transparent 70%, #ffeb3b 70%);
    background-size: 100% 100%;
    padding: 2px 0;
    font-weight: 600;
}

.yellow-underline:hover {
    background: linear-gradient(180deg, transparent 70%, #fdd835 70%);
    transition: background 0.3s ease;
}

u {
    text-decoration: underline;
    text-decoration-color: #333;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 600;
}

.big-text {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 71, 87, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 71, 87, 0.8), 0 0 25px rgba(255, 71, 87, 0.4);
    }
}

/* タブレット用レスポンシブ（1024px以下） */
@media (max-width: 1024px) {
    .reasons {
        padding: 60px 0;
    }
    
    .reasons-title {
        margin-bottom: 60px;
    }
    
    .main-title {
        font-size: 2.4rem;
    }
    
    .main-title .highlight-text {
        font-size: 2.8rem;
    }
    
    .reason-content {
        gap: 40px;
        margin-bottom: 80px;
        padding: 0 30px;
    }
    
    .reason-image {
        width: 350px;
    }
    
    .reason-title {
        font-size: 1.6rem;
    }
    
    .reason-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* タブレット縦向き用（768px以下） */
@media (max-width: 768px) {
    .reasons {
        padding: 50px 0;
    }
    
    .reasons-title {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .main-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .main-title .highlight-text {
        font-size: 2.4rem;
    }
    
    .reason-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
        padding: 0 20px;
        max-width: 600px;
    }
    
    /* reverseクラスでも縦並びにする */
    .reason-content.reverse {
        flex-direction: column;
    }
    
    .reason-image {
        width: 100%;
        max-width: 400px;
    }
    
    .reason-text {
        text-align: left;
        width: 100%;
    }
    
    .reason-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .reason-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* キーフレームアニメーション（スワイプヒント用） */
@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 71, 87, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 71, 87, 0.8), 0 0 25px rgba(255, 71, 87, 0.4);
    }
}

/* スマホ用（480px以下） - スライダー表示 */
@media (max-width: 480px) {
    .reasons {
        padding: 40px 0;
        overflow: hidden;
    }
    
    .reasons-title {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .main-title .highlight-text {
        font-size: 2rem;
    }
    
    /* スライダーコンテナ */
    .reasons-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        position: relative;
    }
    
    .reasons-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .reasons-slider {
        display: flex;
        gap: 20px;
        width: max-content;
        padding: 20px 15px 30px 15px;
    }
    
    .reason-content {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
        padding: 25px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 280px;
        min-width: 280px;
        flex-shrink: 0;
    }
    
    .reason-content.reverse {
        flex-direction: column;
    }
    
    .reason-image {
        width: 100%;
        max-width: 230px;
        margin: 0 auto;
    }
    
    .reason-image img {
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .reason-text {
        text-align: left;
        width: 100%;
    }
    
    .reason-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .reason-description {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .attention-text {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    /* スワイプヒント矢印 */
    .reasons-slider-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .reasons-slider-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* 極小スマホ用（360px以下） */
@media (max-width: 360px) {
    .reasons {
        padding: 30px 0;
    }
    
    .main-title {
        font-size: 1.6rem;
    }
    
    .main-title .highlight-text {
        font-size: 1.8rem;
    }
    
    .reason-content {
        padding: 0 10px;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .reason-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .reason-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .attention-text {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
}

/* 横向きスマホ・タブレット用 */
@media (max-width: 900px) and (orientation: landscape) {
    .reasons {
        padding: 30px 0;
    }
    
    .reasons-title {
        margin-bottom: 30px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .main-title .highlight-text {
        font-size: 2rem;
    }
    
    .reason-content {
        flex-direction: row;
        gap: 30px;
        margin-bottom: 40px;
        text-align: left;
    }
    
    .reason-content.reverse {
        flex-direction: row-reverse;
    }
    
    .reason-image {
        width: 280px;
        max-width: 280px;
    }
    
    .reason-title {
        font-size: 1.3rem;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .reason-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* 大画面用（1200px以上） */
@media (min-width: 1200px) {
    .reasons {
        padding: 100px 0;
    }
    
    .reasons-title {
        margin-bottom: 100px;
    }
    
    .reason-content {
        gap: 80px;
        margin-bottom: 120px;
        max-width: 1400px;
    }
    
    .reason-image {
        width: 450px;
    }
    
    .reason-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .reason-description {
        font-size: 1.2rem;
        line-height: 1.9;
    }
}

/* ========================================
    サポート内容セクション - レスポンシブ+スライダー対応
======================================== */

/* キーフレームアニメーション */
@keyframes sparkle {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.5);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    20% {
        opacity: 0.3;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

/* 基本スタイル */
.curriculum {
    padding: 80px 0;
}

.curriculum .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.attention-text {
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.curriculum-content {
    margin: 0 auto;
}

/* デスクトップ：3列グリッド */
.curriculum-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 0;
    padding: 40px 0;
}

.curriculum-item {
    text-align: center;
    position: relative;
    padding: 30px 20px 20px;
    background: linear-gradient(145deg, #f0f0f0, #e8e8e8);
    border-radius: 10px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.curriculum-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 6px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.item-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    animation: sparkle 2s infinite;
    overflow: hidden;
}

.item-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 5s infinite;
    transform: rotate(45deg);
}

.item-text {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* タブレット用（1024px以下） */
@media (max-width: 1024px) {
    .curriculum {
        padding: 60px 0;
    }
    
    .curriculum-list {
        gap: 30px;
        padding: 30px 0;
    }
    
    .curriculum-item {
        padding: 25px 15px 18px;
    }
    
    .item-text {
        font-size: 1rem;
    }
}

/* タブレット縦向き用（768px以下） */
@media (max-width: 768px) {
    .curriculum {
        padding: 50px 0;
    }
    
    .curriculum-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 25px 0;
    }
    
    .curriculum-item {
        padding: 22px 12px 15px;
    }
    
    .item-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: -16px;
    }
    
    .item-text {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* スマホ用（480px以下）：スライダー表示 */
@media (max-width: 480px) {
    .curriculum {
        padding: 40px 0;
        overflow: hidden;
    }
    
    /* スライダーコンテナ */
    .curriculum-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        position: relative;
        margin: 0 -15px;
    }
    
    .curriculum-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .curriculum-slider {
        display: flex;
        gap: 20px;
        width: max-content;
        padding: 20px 15px 30px 15px;
    }
    
    .curriculum-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin: 0;
        padding: 0;
        width: 290px;
        min-width: 290px;
        flex-shrink: 0;
    }
    
    .curriculum-item {
        padding: 20px 15px 15px;
        margin: 0;
        width: 100%;
        background: linear-gradient(145deg, #ffffff, #f5f5f5);
        border-radius: 12px;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.08),
            0 3px 10px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    
    .item-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        top: -14px;
    }
    
    .item-text {
        font-size: 1.2rem;
        line-height: 1.3;
        color: #444;
    }
    
    /* スワイプヒント矢印 */
    .curriculum-slider-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .curriculum-slider-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* 極小スマホ用（360px以下） */
@media (max-width: 360px) {
    .curriculum-list {
        width: 220px;
        min-width: 220px;
    }
    
    .curriculum-item {
        padding: 18px 12px 12px;
    }
    
    .item-text {
        font-size: 0.85rem;
    }
}

/* 横向きスマホ用 */
@media (max-width: 812px) and (orientation: landscape) {
    .curriculum {
        padding: 30px 0;
    }
    
    .curriculum-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 20px 0;
    }
    
    .curriculum-item {
        padding: 18px 10px 12px;
    }
    
    .item-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        top: -14px;
    }
    
    .item-text {
        font-size: 0.85rem;
        line-height: 1.2;
    }
}

/* デスクトップでは矢印を非表示 */
@media (hover: hover) and (pointer: fine) {
    .curriculum-slider-container::before {
        display: none;
    }
}

/* ========================================
   料金プランセクション - レスポンシブ+スライダー対応
======================================== */

/* キーフレームアニメーション（スワイプヒント用） */
@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

/* 基本スタイル（デスクトップ） */
.pricing {
    padding: 80px 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e1e8ed;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-type {
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #007bff;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
}

.period {
    font-size: 1rem;
    color: #666;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.monthly-fee {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.monthly-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.monthly-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.monthly-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.monthly-period {
    font-size: 1rem;
    color: #666;
}

.fee-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 8px;
    line-height: 1.3;
}

/* タブレット用（1024px以下） */
@media (max-width: 1024px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-table {
        gap: 25px;
        max-width: 700px;
        padding: 0 20px;
    }
    
    .pricing-card {
        padding: 35px 25px;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .plan-title {
        font-size: 1.3rem;
    }
}

/* タブレット縦向き用（768px以下） */
@media (max-width: 768px) {
    .pricing {
        padding: 50px 0;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 2.5rem;
    }
    
    .plan-title {
        font-size: 1.2rem;
    }
    
    .plan-type {
        font-size: 0.9rem;
        padding: 6px 16px;
    }
}

/* スマホ用（480px以下）：スライダー表示 */
@media (max-width: 480px) {
    .pricing {
        padding: 40px 0;
        overflow: hidden;
    }
    
    /* スライダーコンテナ */
    .pricing-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        position: relative;
        margin: 0 -15px;
    }
    
    .pricing-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-slider {
        display: flex;
        gap: 20px;
        width: max-content;
        padding: 20px 15px 30px 15px;
    }
    
    .pricing-table {
        display: flex;
        gap: 20px;
        grid-template-columns: none;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .pricing-card {
        min-width: 280px;
        width: 280px;
        flex-shrink: 0;
        padding: 25px 20px;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 18px;
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.08),
            0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 123, 255, 0.1);
    }
    
    .pricing-card:hover {
        transform: none; /* スマホではホバー効果を無効化 */
    }
    
    .plan-type {
        font-size: 0.85rem;
        padding: 5px 14px;
        margin-bottom: 15px;
    }
    
    .plan-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .currency {
        font-size: 1.3rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
    
    .price-note {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-top: 12px;
    }
    
    .pricing-header {
        margin-bottom: 20px;
    }
    
    /* 地域別価格の調整 */
    .pricing-card div[style*="margin-bottom: 20px"] {
        margin-bottom: 15px !important;
    }
    
    .pricing-card div[style*="margin-bottom: 15px"] {
        margin-bottom: 10px !important;
        font-size: 0.9rem;
    }
    
    /* スワイプヒント矢印 */
    .pricing-slider-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .pricing-slider-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* 極小スマホ用（360px以下） */
@media (max-width: 360px) {
    .pricing-card {
        min-width: 260px;
        width: 260px;
        padding: 20px 15px;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-title {
        font-size: 1rem;
    }
    
    .plan-type {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .price-note {
        font-size: 0.75rem;
    }
}

/* 横向きスマホ用 */
@media (max-width: 812px) and (orientation: landscape) {
    .pricing {
        padding: 30px 0;
    }
    
    .pricing-table {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 600px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .plan-type {
        font-size: 0.8rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .pricing-header {
        margin-bottom: 15px;
    }
}

/* 大画面用（1200px以上） */
@media (min-width: 1200px) {
    .pricing {
        padding: 100px 0;
    }
    
    .pricing-table {
        gap: 40px;
        max-width: 900px;
    }
    
    .pricing-card {
        padding: 50px 35px;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .plan-title {
        font-size: 1.6rem;
    }
}

/* デスクトップでは矢印を非表示 */
@media (hover: hover) and (pointer: fine) {
    .pricing-slider-container::before {
        display: none;
    }
}

/* ========================================
   フローセクション - レスポンシブ+スライダー対応
======================================== */

/* キーフレームアニメーション（スワイプヒント用） */
@keyframes swipeHint {
    0%, 70%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }
    10%, 60% {
        opacity: 0.9;
        transform: translateY(-50%) translateX(0);
    }
    30%, 40% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(15px);
    }
}

/* 基本スタイル（デスクトップ） */
.flow {
    padding: 100px 0;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.flow-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -20px;
    font-size: 2rem;
    color: #ff6b6b;
    font-weight: 700;
    z-index: 5;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* タブレット用（1024px以下） */
@media (max-width: 1024px) {
    .flow {
        padding: 80px 0;
    }
    
    .flow-steps {
        gap: 35px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .flow-step {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .flow-step:not(:last-child)::after {
        top: 25px;
        font-size: 1.8rem;
    }
}

/* タブレット縦向き用（768px以下） */
@media (max-width: 768px) {
    .flow {
        padding: 60px 0;
    }
    
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .flow-step:not(:last-child)::after {
        display: none; /* 矢印を非表示 */
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* スマホ用（480px以下）：スライダー表示 */
@media (max-width: 480px) {
    .flow {
        padding: 50px 15px;
        overflow: hidden;
    }
    
    /* スライダーコンテナ */
    .flow-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        position: relative;
        margin: 0 -15px;
    }
    
    .flow-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .flow-slider {
        display: flex;
        gap: 20px;
        width: max-content;
        padding: 20px 15px 30px 15px;
    }
    
    .flow-steps {
        display: flex;
        gap: 20px;
        grid-template-columns: none;
    }
    
    .flow-step {
        min-width: 260px;
        width: 260px;
        flex-shrink: 0;
        padding: 25px 20px;
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 20px;
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.08),
            0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 107, 107, 0.1);
        position: relative;
    }
    
    .flow-step:hover {
        transform: none; /* スマホではホバー効果を無効化 */
    }
    
    .flow-step:not(:last-child)::after {
        display: none; /* 矢印を非表示 */
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 15px;
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
    }
    
    .flow-step:hover .step-number {
        transform: none; /* スマホではホバー効果を無効化 */
    }
    
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #2c3e50;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #555;
    }
    
    /* スワイプヒント矢印 */
    .flow-slider-container::before {
        content: '→';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .flow-slider-container:hover::before {
        animation-play-state: paused;
        opacity: 0;
    }
}

/* 極小スマホ用（360px以下） */
@media (max-width: 360px) {
    .flow-step {
        min-width: 240px;
        width: 240px;
        padding: 20px 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .step-content h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* 横向きスマホ用 */
@media (max-width: 812px) and (orientation: landscape) {
    .flow {
        padding: 40px 0;
    }
    
    .flow-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .flow-step {
        padding: 20px 10px;
    }
    
    .flow-step:not(:last-child)::after {
        top: 20px;
        font-size: 1.5rem;
        right: -12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .step-content h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* 大画面用（1200px以上） */
@media (min-width: 1200px) {
    .flow {
        padding: 120px 0;
    }
    
    .flow-steps {
        gap: 50px;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .flow-step {
        padding: 40px 25px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .step-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .flow-step:not(:last-child)::after {
        top: 35px;
        font-size: 2.2rem;
        right: -25px;
    }
}

/* デスクトップでは矢印を非表示 */
@media (hover: hover) and (pointer: fine) {
    .flow-slider-container::before {
        display: none;
    }
}

/* ========================================
   FAQセクション - レスポンシブ対応
======================================== */

/* 基本スタイル（デスクトップ） */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #ff6b6b;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
}

.faq-question:hover {
    background: #f8f9fc;
    color: #ff6b6b;
}

.faq-item.active .faq-question {
    background: #fff5f5;
    color: #ff6b6b;
}

.faq-icon {
    font-size: 1.5rem;
    color: #ff6b6b;
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* タブレット用（1024px以下） */
@media (max-width: 1024px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-list {
        padding: 0 30px;
    }
    
    .faq-question {
        padding: 22px 25px;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 22px 25px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .faq-icon {
        font-size: 1.4rem;
        margin-left: 12px;
    }
}

/* タブレット縦向き用（768px以下） */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-list {
        padding: 0 20px;
    }
    
    .faq-item {
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px 22px;
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 22px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 22px;
        max-height: 250px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-icon {
        font-size: 1.3rem;
        margin-left: 10px;
    }
}

/* スマホ用（480px以下） */
@media (max-width: 480px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq-list {
        padding: 0 15px;
    }
    
    .faq-item {
        border-radius: 10px;
        margin-bottom: 12px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
        line-height: 1.3;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-question:hover {
        background: #f8f9fc;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
        max-height: 220px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .faq-icon {
        font-size: 1.2rem;
        margin-left: 8px;
        margin-top: 2px;
    }
}

/* 極小スマホ用（360px以下） */
@media (max-width: 360px) {
    .faq-list {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 18px;
        max-height: 200px;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 1.1rem;
        margin-left: 6px;
    }
}

/* 横向きスマホ用 */
@media (max-width: 812px) and (orientation: landscape) {
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
        max-height: 180px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* 大画面用（1200px以上） */
@media (min-width: 1200px) {
    .faq {
        padding: 120px 0;
    }
    
    .faq-list {
        max-width: 900px;
    }
    
    .faq-item {
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 30px 35px;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 0 35px;
    }
    
    .faq-item.active .faq-answer {
        padding: 30px 35px;
        max-height: 350px;
    }
    
    .faq-answer p {
        font-size: 1.1rem;
        line-height: 1.9;
    }
    
    .faq-icon {
        font-size: 1.6rem;
        margin-left: 18px;
    }
}

/* ========================================
   UTAGEフォーム用CSS - ランディングページ統一デザイン
======================================== */

/* フォーム全体のコンテナ */
.utage-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

/* UTAGEフォーム自体のスタイリング */
form[action*="utage-system.com"] {
    padding: 0;
    margin: 0;
}

form[action*="utage-system.com"] .card-body {
    padding: 50px;
    background: white;
}

/* フォームグループ */
form[action*="utage-system.com"] .form-group {
    margin-bottom: 25px;
}

/* ラベルスタイル */
form[action*="utage-system.com"] .font-weight-bold {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
}

/* 必須バッジ */
form[action*="utage-system.com"] .badge-danger {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 500;
}

/* 入力フィールド */
form[action*="utage-system.com"] .form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

form[action*="utage-system.com"] .form-control:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

form[action*="utage-system.com"] .form-control::placeholder {
    color: #999;
}

/* テキストエリア */
form[action*="utage-system.com"] textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ラジオボタンとチェックボックスの共通スタイル */
form[action*="utage-system.com"] .custom-control {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    line-height: 1.4;
    margin-bottom: 10px;
}

form[action*="utage-system.com"] .custom-control:hover {
    background-color: rgba(255, 107, 107, 0.05);
}

/* ラジオボタンの隠し */
form[action*="utage-system.com"] .custom-control-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* カスタムラジオボタン */
form[action*="utage-system.com"] .custom-radio .custom-control-input + .custom-control-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 50%;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
    display: inline-block;
    vertical-align: top;
}

form[action*="utage-system.com"] .custom-radio .custom-control-input:checked + .custom-control-label::before {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

form[action*="utage-system.com"] .custom-radio .custom-control-input:checked + .custom-control-label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

/* カスタムチェックボックス */
form[action*="utage-system.com"] .custom-checkbox .custom-control-input + .custom-control-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
    background: white;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
    display: inline-block;
    vertical-align: top;
}

form[action*="utage-system.com"] .custom-checkbox .custom-control-input:checked + .custom-control-label::before {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

form[action*="utage-system.com"] .custom-checkbox .custom-control-input:checked + .custom-control-label::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 1px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

/* ラベルテキスト */
form[action*="utage-system.com"] .custom-control-label {
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin-left: 8px;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

/* 送信ボタン */
form[action*="utage-system.com"] .btn-success {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border: none;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

form[action*="utage-system.com"] .btn-success::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;
}

form[action*="utage-system.com"] .btn-success:hover::before {
    left: 100%;
}

form[action*="utage-system.com"] .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

form[action*="utage-system.com"] .btn-success:active {
    transform: translateY(-1px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .utage-form-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    form[action*="utage-system.com"] .card-body {
        padding: 30px 25px;
    }
    
    form[action*="utage-system.com"] .form-group {
        margin-bottom: 20px;
    }
    
    form[action*="utage-system.com"] .font-weight-bold {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    form[action*="utage-system.com"] .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    form[action*="utage-system.com"] .custom-control {
        padding: 10px 12px;
    }
    
    form[action*="utage-system.com"] .custom-control-label {
        font-size: 0.9rem;
    }
    
    form[action*="utage-system.com"] .btn-success {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    form[action*="utage-system.com"] .card-body {
        padding: 25px 20px;
    }
    
    form[action*="utage-system.com"] .form-group {
        margin-bottom: 18px;
    }
    
    form[action*="utage-system.com"] .font-weight-bold {
        font-size: 0.9rem;
    }
    
    form[action*="utage-system.com"] .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    form[action*="utage-system.com"] .custom-control {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    form[action*="utage-system.com"] .custom-control-label {
        font-size: 0.85rem;
    }
    
    form[action*="utage-system.com"] .badge-danger {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    form[action*="utage-system.com"] .btn-success {
        padding: 15px 30px;
        font-size: 1rem;
        margin-top: 25px;
    }
}

/* フォームバリデーション */
form[action*="utage-system.com"] .form-control:invalid {
    border-color: #dc3545;
}

form[action*="utage-system.com"] .form-control:valid {
    border-color: #28a745;
}

/* ローディング状態 */
form[action*="utage-system.com"] .btn-success:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

form[action*="utage-system.com"] .btn-success:disabled:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(204, 204, 204, 0.3);
}

/* フォームの前後にコンテンツがある場合の調整 */
.utage-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(245, 245, 245, 0.6) 0%, 
        rgba(255, 255, 255, 1) 100%
    );
}

.utage-form-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   フッター修正版
======================================== */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
    overflow-x: hidden;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

.footer-logo {
    width: 100%;
    max-width: 300px;
}

.footer-logo img {
    height: 80px;
    max-width: 100%;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.footer-nav {
    flex: 1;
    min-width: 0;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: #bbb;
    transition: color 0.3s ease;
    word-wrap: break-word;
    text-decoration: none;
}

.footer-nav a:hover {
    color: white;
}

/* フッターソーシャル（画像アイコン対応） */
.footer-social {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
}

.footer-social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 10px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    color: white;
    overflow: hidden;
}

.social-link.line img {
    pointer-events: none !important;
}

/* ソーシャルアイコン画像共通スタイル */
.social-icon-img {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* 各SNSのホバー効果 */
.social-link:hover {
    transform: translateY(-2px) scale(1.05);
}

.social-link.line:hover {
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.social-link.tiktok:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-link:hover .social-icon-img {
    transform: scale(1.05);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    width: 100%;
    word-wrap: break-word;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
        margin: 0 auto;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-nav ul {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-social-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer .container {
        padding: 0 10px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-nav ul {
        gap: 8px;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-icon-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* スクロールアニメーション用クラス */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   ローディングアニメーション
======================================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   スクロールバーカスタマイズ
======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6b95ff, #8ebdff);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5278ff, #79a8ff);
}

/* ========================================
   ダークモード対応
======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #ffffff;
        --card-bg: #2d2d2d;
        --border-color: #404040;
    }
    
    /* ダークモードでは基本の背景色のみ変更し、
       ブランドカラーは維持 */
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .designer-card,
    .voice-card,
    .pricing-card,
    .instructor-card,
    .faq-item {
        background: var(--card-bg);
        border-color: var(--border-color);
    }
}

/* ========================================
   アクセシビリティ
======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* フォーカス時のアウトライン */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 3px solid #ff6b6b;
    outline-offset: 2px;
}

/* ========================================
   パフォーマンス最適化
======================================== */
.hero-image img,
.work-item img,
.instructor-image img {
    will-change: transform;
}

.btn {
    will-change: transform;
}

/* GPU加速を有効にする */
.hero-bg-decoration,
.designer-card,
.work-item {
    transform: translateZ(0);
}

/* ========================================
   追加のマイクロインタラクション
======================================== */
.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.faq-question:active {
    transform: scale(0.98);
}

.work-item:active {
    transform: translateY(-3px) scale(0.98);
}

/* ホバー時のグラデーション変化 */
.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff7979);
}

.btn-line:hover {
    background: linear-gradient(135deg, #00a844, #00e850);
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #42a5f5, #1e88e5);
}

/* ========================================
   派手な追従バナー - スマホメイン仕様
======================================== */
.floating-cta {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(200px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    max-width: 350px;
    width: calc(100% - 30px);
    padding: 0;
}

.floating-cta.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: dramaticEntrance 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 超派手な登場アニメーション */
@keyframes dramaticEntrance {
    0% {
        transform: translateX(-50%) translateY(200px) scale(0.3) rotateZ(-15deg);
        opacity: 0;
        filter: blur(10px) brightness(0.5);
    }
    25% {
        transform: translateX(-50%) translateY(-30px) scale(1.2) rotateZ(5deg);
        opacity: 0.7;
        filter: blur(3px) brightness(1.2);
    }
    50% {
        transform: translateX(-50%) translateY(15px) scale(0.9) rotateZ(-3deg);
        opacity: 0.9;
        filter: blur(1px) brightness(1.1);
    }
    75% {
        transform: translateX(-50%) translateY(-8px) scale(1.05) rotateZ(2deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    100% {
        transform: translateX(-50%) translateY(0) scale(1) rotateZ(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}

/* 常に動くメインバナー */
.floating-banner {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 251, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    animation: 
        bannerFloat 4s ease-in-out infinite,
        bannerGlow 3s ease-in-out infinite,
        bannerBorderShine 5s linear infinite;
    box-shadow: 
        0 20px 60px rgba(6, 199, 85, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* 常時浮遊アニメーション */
@keyframes bannerFloat {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-8px) rotateZ(1deg);
    }
    50% {
        transform: translateY(-12px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-8px) rotateZ(-1deg);
    }
}

/* 常時光るアニメーション */
@keyframes bannerGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(6, 199, 85, 0.25),
            0 10px 30px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow: 
            0 25px 80px rgba(6, 199, 85, 0.4),
            0 15px 50px rgba(74, 144, 226, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
}

/* 境界線のキラキラ */
@keyframes bannerBorderShine {
    0% {
        border-color: rgba(6, 199, 85, 0.3);
    }
    25% {
        border-color: rgba(74, 144, 226, 0.4);
    }
    50% {
        border-color: rgba(255, 107, 107, 0.3);
    }
    75% {
        border-color: rgba(255, 193, 7, 0.4);
    }
    100% {
        border-color: rgba(6, 199, 85, 0.3);
    }
}

/* 常時動く背景エフェクト */
.floating-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(6, 199, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(74, 144, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    animation: sparkleRotate 8s linear infinite;
    border-radius: 25px;
    pointer-events: none;
}

@keyframes sparkleRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(1);
        opacity: 0.8;
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.7;
    }
}

/* わかりやすい閉じるボタン */
.banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    font-family: system-ui, -apple-system, sans-serif;
    animation: closeButtonPulse 2s ease-in-out infinite;
}

@keyframes closeButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(255, 107, 107, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(255, 107, 107, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

.banner-close:hover {
    background: linear-gradient(135deg, #ff5252, #ff7979);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.banner-close:active {
    transform: scale(1.05) rotate(90deg);
    box-shadow: 
        0 4px 15px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* バナー内容 */
.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

/* テキストエリア */
.banner-text {
    flex: 1;
    min-width: 0;
}

.banner-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0 0 6px 0;
    line-height: 1.3;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        color: #2c3e50;
        text-shadow: none;
    }
    50% {
        color: #4a90e2;
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    }
}

.banner-highlight {
    color: #06C755;
    font-weight: 900;
    position: relative;
    animation: highlightGlow 2s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% {
        color: #06C755;
        text-shadow: 0 0 5px rgba(6, 199, 85, 0.3);
    }
    50% {
        color: #05B94A;
        text-shadow: 0 0 15px rgba(6, 199, 85, 0.6);
    }
}

.banner-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    animation: subtitleFade 4s ease-in-out infinite;
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* 超派手なCTAボタン */
.banner-cta {
    background: linear-gradient(135deg, #06C755 0%, #05B94A 50%, #04A043 100%);
    background-size: 200% 200%;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 
        0 8px 25px rgba(6, 199, 85, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    animation: 
        buttonBounce 2s ease-in-out infinite,
        buttonGradientShift 3s ease-in-out infinite,
        buttonGlow 2.5s ease-in-out infinite;
}

/* ボタンの常時バウンス */
@keyframes buttonBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

/* ボタンのグラデーション変化 */
@keyframes buttonGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ボタンの光る効果 */
@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(6, 199, 85, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(6, 199, 85, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

/* 光の流れエフェクト */
.banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: buttonShine 2s ease-in-out infinite;
}

@keyframes buttonShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.banner-cta:hover {
    transform: translateY(-2px) scale(1.05);
    animation-play-state: paused;
    background: linear-gradient(135deg, #05B94A 0%, #04A043 50%, #038A3B 100%);
    box-shadow: 
        0 15px 40px rgba(6, 199, 85, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.banner-cta:active {
    transform: translateY(0) scale(1);
    box-shadow: 
        0 6px 20px rgba(6, 199, 85, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* スマホメイン対応 */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 120px;
        left: 15px;
        right: 15px;
        transform: translateY(200px);
        max-width: none;
        width: calc(100% - 30px);
    }
    
    .floating-cta.show {
        transform: translateY(0);
    }
    
    .floating-banner {
        padding: 18px;
        border-radius: 22px;
    }
    
    .banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: center;
    }
    
    .banner-cta {
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 25px;
    }
    
    .banner-close {
        top: 8px;
        right: 8px;
    }
    
    .banner-title {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }
    
    .banner-subtitle {
        font-size: 0.8rem;
    }
    
    @keyframes dramaticEntrance {
        0% {
            transform: translateY(200px) scale(0.3) rotateZ(-15deg);
            opacity: 0;
            filter: blur(10px) brightness(0.5);
        }
        25% {
            transform: translateY(-30px) scale(1.2) rotateZ(5deg);
            opacity: 0.7;
            filter: blur(3px) brightness(1.2);
        }
        50% {
            transform: translateY(15px) scale(0.9) rotateZ(-3deg);
            opacity: 0.9;
            filter: blur(1px) brightness(1.1);
        }
        75% {
            transform: translateY(-8px) scale(1.05) rotateZ(2deg);
            opacity: 1;
            filter: blur(0px) brightness(1);
        }
        100% {
            transform: translateY(0) scale(1) rotateZ(0deg);
            opacity: 1;
            filter: blur(0px) brightness(1);
        }
    }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 150px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
    
    .floating-banner {
        padding: 16px;
        border-radius: 20px;
    }
    
    .banner-content {
        gap: 12px;
    }
    
    .banner-title {
        font-size: 1rem;
    }
    
    .banner-subtitle {
        font-size: 0.75rem;
    }
    
    .banner-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .banner-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
        border-radius: 15px;
    }
}