/* ==========================================
   ヒーローセクション - 完全最適化
   ========================================== */
.hero {
    background: linear-gradient(180deg, #ff5563 0%, #ff6874 100%);
    color: #ffffff;
    padding: 12px 12px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: auto;
    margin-bottom: 0;
}

/* 背景の▶マーク */
.hero-play-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.play-icon {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 35px solid rgba(255, 192, 203, 0.25);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    animation: playPulse 3s ease-in-out infinite;
}

.play-icon:nth-child(odd) {
    animation-delay: 0.5s;
}

.play-icon:nth-child(even) {
    animation-delay: 1s;
}

@keyframes playPulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
}

/* 左上: 美容師TikTok集客CAMP - 固定 */
.service-badge {
    position: fixed;
    top: 8px;
    left: 8px;
    font-size: 10px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
    z-index: 100;
    white-space: nowrap;
}

/* 強調ワード: サロンの売上3000万増加 */
.hero-highlight-text {
    margin-top: 45px;
    margin-bottom: 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    border: 3px solid rgba(255, 215, 0, 0.7);
    border-radius: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.4);
    animation: highlightGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-highlight-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: highlightShine 3s linear infinite;
}

.highlight-amount {
    font-size: 32px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: amountPulse 1.5s ease-in-out infinite;
}

@keyframes highlightGlow {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.6);
    }
}

@keyframes highlightShine {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

@keyframes amountPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.6), 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 20px rgba(255, 215, 0, 1), 0 0 35px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

/* 月の白丸 - 非表示 */
.hero-day-section {
    margin-top: -15px;
    margin-bottom: -10px;
    text-align: center;
}

.day-circle-wrapper,
.day-circle {
    display: none;
}

/* たった1日で */
.hero-main-catchphrase {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: -5px 0 -35px 0;
    padding: 8px 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.highlight-number {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    display: inline;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* メインスキルボックス - 新デザイン */
.hero-skills-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 0;
    padding: 28px 15px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 95%;
    position: relative;
    z-index: 3;
}

.skill-item-main {
    flex: 1;
    text-align: center;
    position: relative;
}

.skill-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-text {
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.skill-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    flex-shrink: 0;
}

/* 美容師TikTok集客CAMP バッジ - 強調版（最上部配置） */
.hero-camp-badge-enhanced {
    text-align: center;
    margin: 10px auto 15px;
    position: relative;
    padding: 5px 20px;
    max-width: 90%;
    z-index: 10;
}

.camp-badge-decoration {
    display: none;
}

.camp-badge-text {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    margin: 5px 0;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.camp-badge-underline {
    display: none;
}

/* 中央コンテンツ */
.hero-main-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 12px;
    padding: 8px 6px;
    margin: -20px 0 15px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.content-left {
    flex: 0 0 47%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}

.person-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-person-image {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

.person-label {
    font-size: 9px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 3px 8px;
    border-radius: 4px;
    width: calc(100% - 16px);
    backdrop-filter: blur(4px);
}

.tiktok-profile-image {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.content-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.achievement-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 7px 5px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.achievement-box-endorsement {
    padding: 5px;
}

.achievement-arrow {
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #ffffff;
}

.achievement-text {
    font-size: 10px;
    font-weight: 600;
    color: #333333;
    margin: 1px 0;
    line-height: 1.4;
}

.achievement-number {
    color: #ff0050;
    font-weight: 900;
    font-size: 14px;
}

.achievement-sub {
    font-size: 9px;
    color: #666666;
    margin-top: 2px;
}

.endorsement-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.endorsement-small-image {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.endorsement-text {
    flex: 1;
    text-align: left;
}

.endorsement-stat {
    font-size: 9px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 2px 0;
}

.endorsement-name {
    font-size: 9px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

/* セナさんの賞賛 */
.sena-endorsement {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 10px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.sena-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sena-text {
    flex: 1;
    text-align: left;
}

.sena-stat {
    font-size: 11px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 3px 0;
}

.sena-number {
    color: #ff0050;
    font-weight: 900;
    font-size: 15px;
}

.sena-name {
    font-size: 11px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

/* CTAボタン */
.hero-cta-wrapper {
    margin-top: 10px;
    margin-bottom: 0;
}

.cta-hero {
    display: block;
    width: 100%;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-hero:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px rgba(183, 28, 28, 0.5);
    }
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .hero {
        padding: 80px 20px 100px;
    }
    
    .service-badge {
        top: 30px;
        left: 30px;
        font-size: 18px;
        position: absolute;
    }
    
    .hero-main-catchphrase {
        font-size: 40px;
        margin: -10px 0 -50px;
        padding: 12px 35px;
    }
    
    .highlight-number {
        font-size: 40px;
    }
    
    .skill-line {
        font-size: 28px;
        margin: 8px 0;
    }
    
    .hero-skills-box {
        gap: 30px;
        padding: 38px 25px 30px;
        max-width: 800px;
        margin: 0 auto 0;
    }
    
    .skill-number {
        font-size: 48px;
        margin-bottom: 12px;
        min-height: 55px;
    }
    
    .skill-text {
        font-size: 20px;
    }
    
    .skill-divider {
        height: 80px;
    }
    
    .hero-camp-badge {
        font-size: 18px;
        margin: 15px 0 10px;
    }
    
    .hero-camp-badge-enhanced {
        padding: 8px 30px;
        max-width: 600px;
        margin: 20px auto 20px;
    }
    
    .camp-badge-text {
        font-size: 22px;
        padding: 12px 40px;
        letter-spacing: 3px;
        margin: 8px 0;
    }
    
    .hero-main-content {
        padding: 20px 20px;
        margin: -25px auto 20px;
        max-width: 900px;
    }
    
    .content-left {
        padding-top: 30px;
    }
    
    .content-right {
        padding-top: 0;
    }
    
    .hero-person-image {
        max-width: 280px;
    }
    
    .tiktok-profile-image {
        max-width: 280px;
    }
    
    .person-label {
        font-size: 12px;
        padding: 5px 12px;
        bottom: 15px;
    }
    
    .sena-endorsement {
        max-width: 600px;
        margin: 20px auto;
    }
    
    .cta-hero {
        font-size: 22px;
        max-width: 700px;
        margin: 0 auto;
        padding: 22px 30px;
    }
}
