@charset "UTF-8";

/* =========================================================
   Base & Variables
   ========================================================= */
:root {
    --primary-color: #ff7bac;
    --secondary-color: #ffb3c6;
    --accent-color: #ff4d85;
    --bg-light: #fff0f5;
    --text-main: #593b45;
    --white: #ffffff;
    --gold: #f6c863;
}

body {
    font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', 'Rounded Mplus 1c', sans-serif;
    color: var(--text-main);
    background-color: #ffdde9;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)), url('../img/heart-bg.png') repeat-y center top;
    background-size: 100% auto;
    box-shadow: 0 0 20px rgba(255, 100, 150, 0.15);
    overflow: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.pink {
    color: var(--accent-color);
}

section {
    padding: 40px 20px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
    display: inline-block;
}

.section-title-wrap {
    text-align: center;
}

.section-title::before,
.section-title::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.section-title::before {
    left: -25px;
}

.section-title::after {
    right: -25px;
}

.btn-cta {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
    border-radius: 50px;
    padding: 20px 10px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 123, 172, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    margin: 0 20px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.btn-cta::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.btn-sub {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

/* 1. HERO */
.hero {
    position: relative;
    padding: 0;
    min-height: 70vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 240, 245, 1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center top;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 30px 20px 40px;
    text-align: center;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
}

.hero-catch {
    font-size: 26px;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
}

/* 2. Member Count (Pink Base) */
.member-count-pink {
    text-align: center;
    padding: 30px 15px;
    margin: 30px 15px;
    background-color: #fff0f5;
    background-image: radial-gradient(#ffe0e9 20%, transparent 20%), radial-gradient(#ffe0e9 20%, transparent 20%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    border: 3px dashed #ffb3c6;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 100, 150, 0.1);
    position: relative;
}

.member-count-pink .member-count-text {
    font-size: 15px;
    font-weight: 900;
    color: #ff4d85;
    margin-bottom: 5px;
}

.member-num-wrapper {
    color: #593b45;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    margin-bottom: 15px;
}

.member-num-wrapper .prefix {
    font-size: 16px;
    font-weight: 900;
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    color: #ff4d85;
    border: 2px solid #ffb3c6;
    margin-bottom: 10px;
}

.member-num-wrapper .main-numbers {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.member-num-wrapper .soon {
    font-size: 20px;
    font-weight: 900;
    color: #ff4d85;
    margin-right: 5px;
}

.member-num-wrapper .num {
    font-size: 60px;
    font-weight: 900;
    color: #ff4d85;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    line-height: 1;
    margin: 0 5px;
    letter-spacing: -2px;
}

.member-num-wrapper .suffix {
    font-size: 20px;
    font-weight: 900;
    color: #ff4d85;
    margin-left: 5px;
}

/* 3. Price (5th image style / ピンク基調) */
.price-section {
    padding: 0;
}

.price-box-new {
    background-color: #fff;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    border: 4px solid #f6c863;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 30px 20px;
    color: var(--accent-color);
    text-align: center;
    box-shadow: 0 8px 15px rgba(255, 77, 133, 0.15);
    position: relative;
    overflow: hidden;
}

.price-box-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    pointer-events: none;
}

.price-box-new>* {
    position: relative;
    z-index: 10;
}

.price-box-new p {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 15px;
    color: var(--primary-color);
}

.price-box-new .price-amount {
    margin: 10px 0;
}

.price-box-new .sub-text {
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
    color: var(--text-main);
}

/* 4. Empathy */
.empathy {
    background-color: #ffb3c6;
    margin-top: 40px;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

@keyframes popIn {
    0% { transform: scale(0) rotate(-15deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.empathy-aoi-img {
    position: absolute;
    top: 10px;
    right: 2%;
    width: 85px;
    height: auto;
    opacity: 0;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.empathy.visible .empathy-aoi-img {
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.3s;
}

.empathy-list {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 3px solid var(--secondary-color);
}

.empathy-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empathy-list li {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.empathy-list li::before {
    content: '💭';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
}

/* 5. Solution */
.solution {
    text-align: center;
}

.solution-catch {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.solution-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.solution-item {
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: var(--accent-color);
    border: 2px solid var(--secondary-color);
}

/* 6. Community */
.community {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin: 0 20px;
    padding: 30px 20px;
    border: 2px dashed var(--secondary-color);
}

.community p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    text-align: left;
}

.community p span {
    color: var(--accent-color);
    font-size: 18px;
}

/* 7. Benefit */
.benefit {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.benefit .section-title {
    color: #fff;
}

.benefit-list {
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
}

.benefit-list span {
    display: block;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* 8. Privilege Details */
.privilege-detail {
    background-color: var(--bg-light);
    border-radius: 20px;
    margin: 0 20px 20px;
    padding: 25px 20px;
    border: 2px solid var(--secondary-color);
    position: relative;
}

.privilege-detail::before {
    content: '🎀';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 26px;
}

.privilege-detail h3 {
    font-size: 20px;
    color: var(--accent-color);
    margin-top: 5px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.privilege-detail p {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.7;
}

.privilege-detail p span.highlight {
    background: linear-gradient(transparent 60%, #fff0f5 60%);
    color: var(--accent-color);
}

/* 9. Other Perks */
.other-perks {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    margin: 0 20px;
    border: 2px dashed var(--primary-color);
}

.other-perks ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: bold;
    line-height: 2;
    font-size: 15px;
}

.other-perks li {
    border-bottom: 1px solid #fce4ec;
    padding: 5px 0;
}

.other-perks li::before {
    content: '💗';
    margin-right: 5px;
}

/* Scarcity & Rebenefit */
.scarcity {
    background-color: #5c3a41;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.scarcity h2 {
    color: #ffb3c6;
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 900;
}

.scarcity ul {
    list-style: none;
    padding: 0;
    font-weight: bold;
    font-size: 18px;
}

.re-benefit {
    text-align: center;
}

.re-benefit p {
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
}

.re-benefit-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* 13. Member Intro */
.member-list {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    margin: 0 10px;
}

.member-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.member-icon {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 15px;
    background: #ffe0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.member-info h4 {
    margin: 0 0 5px;
    color: var(--accent-color);
    font-size: 16px;
}

.member-info p {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-main);
}

/* 14. Flow */
.flow {
    padding: 40px 20px;
}

.flow-step {
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    font-weight: bold;
}

.flow-step::after {
    content: '↓';
    display: block;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.flow-step:last-child::after {
    display: none;
}

.flow-step span {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 5px;
}

/* 15. Jobs List (3rd image style) */
.jobs-section {
    padding: 0;
    margin-bottom: 40px;
}

.jobs-title-wrap {
    background: #ffe0e9;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-left: 5px solid #ff7bac;
}

.jobs-title-wrap h2 {
    font-size: 22px;
    font-weight: 900;
    margin: 0;
    color: var(--text-main);
}

.jobs-container {
    background: #fff;
    border: 8px solid #ffb3c6;
    padding: 20px;
    margin: 0 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(255, 100, 150, 0.1);
}

.jobs-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
    text-align: left;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-main);
    margin: 0;
    padding: 0 5px;
    list-style: none;
}

.jobs-grid-new li {
    position: relative;
    padding-left: 12px;
}

.jobs-grid-new li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #999;
}

/* 16. Message (2nd image style) */
.message-section {
    background-color: rgba(255, 240, 245, 0.8);
    border-top: 2px dashed #ffb3c6;
    border-bottom: 2px dashed #ffb3c6;
    padding: 40px 0;
    margin-top: 40px;
    position: relative;
}

.message-bg-title {
    text-align: center;
    color: var(--text-main);
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
}

.message-bg-title span {
    display: inline-block;
    border-bottom: 1px solid #ffb3c6;
    padding: 0 40px;
}

.message-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 40px;
    color: var(--text-main);
    letter-spacing: 2px;
}

.message-card-wrapper {
    padding: 0 20px;
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
}

.message-card {
    background: #fff;
    border: 2px solid #ffb3c6;
    border-radius: 4px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(255, 100, 150, 0.1);
    width: 85%;
    margin-left: auto;
    box-sizing: border-box;
}

.message-card-label {
    color: #ff4d85;
    font-size: 11px;
    font-weight: 900;
    font-style: italic;
    border-bottom: 2px solid #ff4d85;
    display: inline-block;
    padding-bottom: 2px;
    padding-right: 20px;
    margin-bottom: 15px;
}

.message-author {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.message-author span {
    font-size: 11px;
    font-weight: bold;
    padding-left: 10px;
}

.message-author::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background: #ffe0e9;
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: -1;
}

.message-bio {
    font-size: 11px;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
}

.message-photo-wrapper {
    margin: 0 20px 30px;
    position: relative;
    z-index: 5;
    text-align: left;
}

.message-photo {
    width: 75%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 100, 150, 0.15);
    border: 2px solid #fff;
}

.message-text {
    padding: 0 20px;
    text-align: left;
}

.message-text-head {
    color: #ff4d85;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 900;
    margin-bottom: 20px;
}

.message-text-body {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: bold;
    margin: 0;
}

/* 17. FAQ */
.faq {
    padding: 40px 20px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--secondary-color);
}

.faq-q {
    color: var(--accent-color);
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.faq-q::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
}

.faq-a {
    color: var(--text-main);
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.faq-a::before {
    content: 'A.';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffb3c6;
    font-size: 18px;
}

/* 18. Floating CTA */
.cta-section {
    text-align: center;
    padding: 40px 20px 100px;
}

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
    box-sizing: border-box;
    border-top: 1px solid var(--secondary-color);
}

.benefit-aoi-img {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 85px;
    height: auto;
    opacity: 0;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

@keyframes popInLeft {
    0% { transform: scale(0) rotate(15deg) translateX(-20px); opacity: 0; }
    60% { transform: scale(1.1) rotate(-5deg) translateX(5px); opacity: 1; }
    100% { transform: scale(1) rotate(0deg) translateX(0); opacity: 1; }
}

.benefit.visible .benefit-aoi-img {
    animation: popInLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.3s;
}

/* Member section decoration */
.member-aoi-img {
    position: absolute;
    top: 10px;
    right: 2%;
    width: 100px;
    height: auto;
    opacity: 0;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

@keyframes popInRight {
    0% { transform: scale(0) rotate(-15deg) translateX(20px); opacity: 0; }
    60% { transform: scale(1.1) rotate(5deg) translateX(-5px); opacity: 1; }
    100% { transform: scale(1) rotate(0deg) translateX(0); opacity: 1; }
}

.member-section-wrap.visible .member-aoi-img {
    animation: popInRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.3s;
}

/* FAQ Accordion */
.faq-body {
    display: none;
    padding: 12px 15px 15px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-main);
    border-top: 1px dashed #ffb3c6;
}

.faq-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 8px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-item.open .faq-body {
    display: block;
}

/* Price image animation */
@keyframes pricePop {
    0% { transform: scale(0.5) translateY(30px) rotate(-5deg); opacity: 0; }
    60% { transform: scale(1.05) translateY(-5px) rotate(2deg); opacity: 1; }
    100% { transform: scale(1) translateY(0) rotate(0deg); opacity: 1; }
}

.price-img-animated {
    opacity: 0;
    transition: none;
}

.price-img-animated.visible {
    animation: pricePop 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Girl float animation for jobs section */
@keyframes girlFloat {
    0%   { transform: translateY(0px) rotate(0deg); }
    25%  { transform: translateY(-8px) rotate(1deg); }
    50%  { transform: translateY(-12px) rotate(0deg); }
    75%  { transform: translateY(-6px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}