/* Registration Guide Page Styles - Premium Version */

:root {
    --primary-color: #1c2d24; /* Deep Forest Green */
    --accent-color: #d1b272;  /* Gold */
    --bg-light: #fdfaf5;      /* Ivory White */
    --text-main: #333;
    --card-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.join_guide_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px;
    font-family: 'Outfit', 'Noto Serif JP', serif;
}

.join_section {
    margin-bottom: 120px;
}

.join_section_title {
    text-align: center;
    margin-bottom: 60px;
}

.join_section_title h2 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.join_section_title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.join_section_title p {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 300;
}

/* Shopping Member Style */
.shopping_member_box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.shopping_member_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.shopping_member_box p {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1.8;
    font-weight: 600;
}

/* Planner Member Style (Steps) */
.planner_intro_box {
    background: transparent;
    color: var(--primary-color);
    padding: 15px 0;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
    border-bottom: 1px dashed var(--accent-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.registration_steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.step_item {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step_item:hover {
    transform: translateY(-10px);
}

.step_content {
    flex: 1;
}

.step_number {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.step_text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Noto Serif JP', serif;
}

.step_note {
    font-size: 1.4rem;
    color: #cb4335;
    background: #fdedec;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 500;
}

.step_image {
    flex: 2;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: var(--bg-light);
    border: 8px solid #fff;
}

.step_image img {
    width: 100%;
    display: block;
    mix-blend-mode: multiply; /* Make product screenshots blend better with light bg */
}

/* Alternate Layout for Steps on PC */
.step_item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .step_item {
        gap: 30px;
        padding: 40px;
    }
}

@media screen and (max-width: 860px) {
    .join_section_title h2 { font-size: 2.4rem; }
    .step_item, .step_item:nth-child(even) {
        flex-direction: column;
        padding: 30px;
    }
    .step_image {
        max-width: 100%;
        margin-top: 20px;
    }
    .step_text {
        font-size: 1.8rem;
    }
    .shopping_member_box p { font-size: 1.6rem; }
}
