/* ===============================
 * 女性詳細ページ（single）専用
=============================== */

/* --- CTA：フォーム＋LINEボタン --- */
.to-woman-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: stretch;
}

.to-woman-cta-btns .contact-toggle {
    width: auto;
    flex: 1 1 260px;
    margin: 0;
}

.to-woman-line-btn {
    flex: 1 1 260px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #06c755, #22b94a);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.25);
    transition: all .25s ease;
}

.to-woman-line-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(6, 199, 85, 0.35);
    color: #fff;
}

.to-woman-line-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* --- LINE QR・ID --- */
.to-woman-line-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.to-woman-qr {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

.to-woman-line-id {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.to-woman-line-id span {
    font-size: 17px;
    font-weight: 700;
    color: #06c755;
    letter-spacing: 0.02em;
}

/* --- 他の女性セクション（記事幅にあわせて縮小） --- */
.other-women.women-profiles {
    padding-bottom: 0;
    margin-top: 60px;
}

.other-women .section-head {
    max-width: 100%;
    padding: 0 0 24px;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}

.other-women .section-title {
    font-size: 26px;
}

.other-women .button {
    white-space: nowrap;
    padding: 12px 28px;
}

.other-women-list.profiles-list {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 28px 0 0;
}

@media (max-width: 1024px) {
    .other-women-list.profiles-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .other-women .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 0 0 20px;
    }

    .other-women-list.profiles-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 0 0;
    }
}

/* --- 追従LINEボタン（SPで指が届く位置） --- */
.single-line-float {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50rem;
    background: linear-gradient(135deg, #06c755, #22b94a);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
    transition: transform .2s ease;
}

.single-line-float:hover {
    transform: translateY(-2px);
    color: #fff;
}

.single-line-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .single-line-float {
        right: 14px;
        bottom: 16px;
        padding: 12px 18px;
    }
}
