/* ============================================
   会員登録申請ページ Styles
   ============================================ */

/* Container */
.member-registration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.member-registration-main {
    background-color: #E8F4F8;
    min-height: 100vh;
}

/* ============================================
   Breadcrumb Section
   ============================================ */
.member-registration-breadcrumb-section {
    background-color: #53834F;
    padding: 15px 20px;
}

.member-breadcrumbs {
    font-size: 14px;
    color: white;
}

.member-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.member-breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: white;
}

.breadcrumb-current {
    color: white;
}

/* ============================================
   Hero Section
   ============================================ */
.member-registration-hero-section {
    background: #53834F;
    padding: 50px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.member-registration-title {
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 10;
    letter-spacing: 0.1em;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.member-registration-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.member-dot {
    width: 14px;
    height: 14px;
    background-color: #E6AE25;
    border-radius: 50%;
}

/* ============================================
   Main Content Section
   ============================================ */
.member-registration-content-section {
    padding: 80px 20px 80px;
    background-color: #B8D8E8;
    position: relative;
}

/* Content Wrapper */
.member-content-wrapper {
    position: relative;
    overflow: visible;
    padding: 0;
}

/* Cloud Decorations */
.member-cloud {
    position: absolute;
    z-index: 5;
    opacity: 0.9;
}

.member-cloud img {
    width: 100%;
    height: auto;
}

.member-cloud-1 {
    top: 20px;
    left: 0;
    width: 150px;
}

.member-cloud-2 {
    top: 50px;
    left: 15%;
    width: 120px;
}

.member-cloud-3 {
    top: 30px;
    right: 5%;
    width: 180px;
}

.member-cloud-4 {
    bottom: 100px;
    right: 10%;
    width: 140px;
}

/* Introduction Text */
.member-introduction-text {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

/* Illustration - 上半身だけ見える */
.member-hero-illustration {
    position: relative;
    width: 500px;
    max-width: 90%;
    margin: 0 auto -100px;
    overflow: hidden;
    height: 300px;
    z-index: 0;
}

.member-hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.intro-line {
    font-size: 16px;
    line-height: 2;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

/* ============================================
   Registration Card
   ============================================ */
.member-registration-card {
    background: white;
    padding: 60px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.card-title {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.1em;
}

.card-description {
    text-align: center;
    margin-bottom: 30px;
}

.description-line {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

/* Links */
.member-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.member-info-link {
    font-size: 16px;
    color: #53834F;
    text-decoration: underline;
    transition: color 0.3s ease;
    line-height: 1.8;
    font-weight: 700;
}

.member-info-link:hover {
    color: #42210B;
}

/* Registration Buttons */
.member-registration-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.member-register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 120px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    text-align: center;
    line-height: 1.6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Zen Maru Gothic', sans-serif;
}

.member-register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.general-member-button {
    background-color: #6B8E6F;
}

.general-member-button:hover {
    background-color: #5A7D5E;
}

.corporate-member-button {
    background-color: #E6AE25;
}

.corporate-member-button:hover {
    background-color: #D69D1E;
}

/* ============================================
   Info Sections
   ============================================ */
.info-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-section-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #6B8E6F;
}

.info-section-content {
    color: #555;
    line-height: 1.8;
}

.info-section-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #6B8E6F;
}

.info-section-content h4:first-child {
    margin-top: 0;
}

.info-section-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.info-section-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.info-section-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.info-section-content strong {
    color: #6B8E6F;
    font-weight: 600;
}

/* ============================================
   Contact Section
   ============================================ */
.member-contact-section {
    background: #53834F;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.contact-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-button {
    display: inline-block;
    padding: 16px 50px;
    background-color: white;
    color: #6B8E6F;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .member-registration-card {
        padding: 40px;
    }
    
    .info-section {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .member-registration-hero-section {
        padding: 30px 20px;
    }
    
    .member-registration-title {
        font-size: 32px;
    }
    
    .member-cloud-1 {
        width: 100px;
        top: 15px;
    }
    
    .member-cloud-2 {
        width: 80px;
        top: 40px;
    }
    
    .member-cloud-3 {
        width: 120px;
        top: 20px;
    }
    
    .member-cloud-4 {
        width: 90px;
        bottom: 80px;
    }
    
    .member-introduction-text {
        margin-top: 40px;
    }
    
    .intro-line {
        font-size: 14px;
    }
    
    .member-hero-illustration {
        width: 400px;
        height: 250px;
        margin-bottom: 40px;
    }
    
    .member-registration-card {
        padding: 40px 30px 30px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .description-line {
        font-size: 14px;
    }
    
    .member-registration-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .member-register-button {
        width: 100%;
        max-width: 300px;
    }
    
    .info-section {
        padding: 25px;
    }
    
    .info-section-title {
        font-size: 22px;
    }
    
    .info-section-content h4 {
        font-size: 18px;
    }
    
    .member-contact-section {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .member-registration-breadcrumb-section {
        padding: 12px 15px;
    }
    
    .member-breadcrumbs {
        font-size: 12px;
    }
    
    .member-registration-hero-section {
        padding: 25px 15px;
    }
    
    .member-registration-title {
        font-size: 26px;
    }
    
    .member-registration-dots {
        gap: 8px;
    }
    
    .member-dot {
        width: 10px;
        height: 10px;
    }
    
    .member-cloud-1 {
        width: 80px;
        top: 10px;
    }
    
    .member-cloud-2 {
        width: 60px;
        top: 30px;
    }
    
    .member-cloud-3 {
        width: 100px;
        top: 15px;
    }
    
    .member-cloud-4 {
        width: 70px;
        bottom: 60px;
    }
    
    .member-registration-content-section {
        padding: 60px 15px 60px;
    }
    
    .member-introduction-text {
        margin-top: 30px;
    }
    
    .intro-line {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .member-hero-illustration {
        width: 300px;
        height: 200px;
        margin-bottom: 30px;
    }
    
    .member-registration-card {
        padding: 30px 20px 25px;
        border-radius: 15px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .description-line {
        font-size: 13px;
    }
    
    .member-info-link {
        font-size: 12px;
    }
    
    .member-register-button {
        font-size: 18px;
        height: 100px;
    }
    
    .info-section {
        padding: 20px;
        border-radius: 12px;
    }
    
    .info-section-title {
        font-size: 20px;
    }
    
    .info-section-content h4 {
        font-size: 16px;
        margin-top: 25px;
    }
    
    .info-section-content p,
    .info-section-content li {
        font-size: 14px;
    }
    
    .member-contact-section {
        padding: 35px 20px;
        border-radius: 12px;
    }
    
    .contact-section-title {
        font-size: 24px;
    }
    
    .contact-description {
        font-size: 14px;
    }
    
    .contact-button {
        padding: 14px 40px;
        font-size: 16px;
    }
}

/* ============================================
   Smooth Scrolling for Anchor Links
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Add padding to sections for anchor links */
.info-section[id] {
    scroll-margin-top: 20px;
}

