/* ========================================
   Variables & Reset
   ======================================== */
:root {
    --primary-color: #6f7247;
    --secondary-color: #d7cbab;
    --accent-color: #6d5f51;
    --text-dark: #2a2520;
    --text-gray: #6d5f51;
    --text-light: #a69b8f;
    --bg-white: #ffffff;
    --bg-cream: #d7cbab;
    --bg-olive: #6f7247;
    --bg-light-olive: #8a8d5e;
    --bg-light-cream: #ebe3d5;
    
    --font-primary: 'Zen Kaku Gothic New', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-display: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Page Loading Animation */
body.page-loading {
    overflow: hidden;
}

body.page-loading .header {
    opacity: 0;
}

body.page-loading .hero-content {
    opacity: 0;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #6f7247 0%, #8a8d5e 100%);
    z-index: 9999;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

.page-loader.fade-out {
    opacity: 0;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23d7cbab" opacity="0.08"/></svg>');
    opacity: 0.4;
}

@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-content {
    animation: heroContentReveal 1.5s ease-out forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-100%);
    transition: background-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.header.scroll-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h1 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--bg-white);
    text-transform: uppercase;
    transition: color 0.5s ease;
}

.header.scroll-header .nav-logo h1 {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: color 0.5s ease, opacity 0.3s ease;
    position: relative;
}

.header.scroll-header .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    opacity: 0.8;
}

.header.scroll-header .nav-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active-link {
    opacity: 1;
}

.header.scroll-header .nav-link.active-link {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--bg-white);
    cursor: pointer;
    transition: color 0.5s ease;
}

.header.scroll-header .nav-toggle {
    color: var(--primary-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

/* PC表示のみ: 画像の高さを制限して全体を表示 */
@media screen and (min-width: 769px) {
    .hero-image-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 85vh;
    }
    
    .hero-image {
        max-height: 85vh;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

.hero-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    z-index: 3;
    pointer-events: none;
    transition: background-color 0.1s linear;
    will-change: background-color;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: heroContentReveal 1.5s ease-out forwards;
    transition: opacity 0.1s linear, transform 0.1s linear;
    will-change: opacity, transform;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--bg-light-cream);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--bg-white);
    margin-bottom: 2rem;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bg-light-cream), transparent);
}

.hero-description {
    font-size: 1.3rem;
    color: var(--bg-light-cream);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-location i {
    color: var(--accent-color);
}

.hero-location span {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.scroll-down {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(109, 95, 81, 0.8);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    z-index: 10;
    margin: 2rem auto;
    transition: opacity 0.1s linear;
    will-change: opacity;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(109, 95, 81, 0.8);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background-color: var(--bg-light-cream);
    padding-bottom: 1rem !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 2rem;
    line-height: 2;
    letter-spacing: 0.05em;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-description {
    font-size: 1rem;
    color: var(--text-gray);
}

.about-vision {
    font-size: 1rem;
    color: var(--text-gray);
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.4;
}

/* ========================================
   Recruitment Section
   ======================================== */
.recruitment {
    background-color: var(--bg-light-cream);
    padding: 0.5rem 0 3rem 0 !important;
}

.recruitment .section-header {
    margin-bottom: 2rem;
}

.recruitment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 550px;
    margin: 0 auto;
}

.recruitment-card {
    background-color: var(--bg-white);
    padding: 1.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(111, 114, 71, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recruitment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.recruitment-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(111, 114, 71, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.recruitment-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.recruitment-description {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: none;
}

.recruitment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.recruitment-card:hover .recruitment-button {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.recruitment-button i {
    font-size: 0.75rem;
}

.ticket-button:hover {
    background-color: var(--bg-olive-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 114, 71, 0.4);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background-color: #6f7247;
    padding: 8rem 0;
}

.features-header {
    text-align: left;
    margin-bottom: 5rem;
}

.features-main-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin: 0;
    padding: 0;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.feature-card-new {
    background-color: transparent;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.feature-number-large {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    height: 3.5rem;
    width: 100%;
}

.feature-title-new {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    height: 4.2rem;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.feature-description-new {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    height: 11rem;
    overflow: hidden;
    width: 100%;
}

.feature-image {
    width: 100%;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ========================================
   Info Section
   ======================================== */
.info {
    background-color: var(--bg-light-cream);
}

.info-block {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--primary-color);
}

.info-row {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--bg-light-cream);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-child {
    padding-top: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.info-main {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.info-sub {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Access Section
   ======================================== */
.access {
    background-color: var(--bg-white);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.access-methods {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.access-method {
    background-color: var(--bg-light-cream);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.access-recommended {
    background-color: #ffffff;
    border: 3px solid var(--primary-color);
    box-shadow: 0 6px 30px rgba(111, 114, 71, 0.15);
}

.access-method p {
    line-height: 1.8;
    color: var(--text-gray);
}

.access-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.access-method-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.access-list {
    list-style: none;
    padding-left: 0;
}

.access-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.8;
}

.access-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.access-map {
    display: flex;
    align-items: center;
}

.access-map iframe {
    width: 100%;
    min-height: 450px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Contact Section (Instagram CTA)
   ======================================== */
.contact {
    background: linear-gradient(135deg, #6f7247 0%, #8a8d5e 100%);
    padding: 8rem 0;
}

.instagram-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5rem 3rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.instagram-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.instagram-cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.instagram-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.instagram-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.instagram-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.instagram-cta-button:hover::before {
    left: 100%;
}

.instagram-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.instagram-cta-button i:first-child {
    font-size: 1.5rem;
}

.instagram-cta-button i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.instagram-cta-button:hover i:last-child {
    transform: translateX(5px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--bg-olive);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* ========================================
   Responsive Design
   ======================================== */
@media screen and (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .recruitment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem;
        max-width: 480px;
    }
    
    .recruitment-card {
        padding: 1.2rem 0.8rem;
    }
    
    .recruitment-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .recruitment-title {
        font-size: 0.85rem;
    }
    
    .recruitment-button {
        padding: 0.45rem 1rem;
        font-size: 0.75rem;
    }
    
    .recruitment-title {
        font-size: 1.5rem;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 2rem;
    }
    
    .nav-menu.show-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding-bottom: 0;
    }
    
    .hero-image-wrapper {
        width: 100%;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .scroll-down {
        margin: 1.5rem auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 0.05em;
    }
    
    .hero-title::after {
        width: 80px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    

    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        padding: 4rem 0;
    }
    
    .features-main-title {
        font-size: 1.5rem;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-card-new {
        display: flex;
        width: 100%;
    }
    
    .feature-card-new:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 3rem;
    }
    
    .feature-number-large {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        height: auto;
    }
    
    .feature-title-new {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        height: auto;
    }
    
    .feature-description-new {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        height: auto;
    }
    
    .feature-image {
        height: 220px;
    }
    
    .info-block {
        padding: 2rem 1.5rem;
    }
    
    .info-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .info-title {
        font-size: 0.9rem;
    }
    
    .info-main {
        font-size: 1.2rem;
    }
    
    .info-sub {
        font-size: 0.85rem;
    }
    
    .instagram-cta {
        padding: 3rem 2rem;
    }
    
    .instagram-cta-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .instagram-cta-title {
        font-size: 1.8rem;
    }
    
    .instagram-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .instagram-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-location {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .recruitment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        max-width: 380px;
    }
    
    .recruitment-card {
        padding: 1rem 0.7rem;
    }
    
    .recruitment-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .recruitment-title {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .recruitment-button {
        padding: 0.4rem 0.9rem;
        font-size: 0.7rem;
    }
    
    .info-block {
        padding: 1.5rem 1rem;
    }
    
    .info-main {
        font-size: 1.2rem;
    }
    
    .info-sub {
        font-size: 0.9rem;
    }
    
    .access-map iframe {
        min-height: 300px;
        border-radius: 12px;
    }
    
    .instagram-cta {
        padding: 2rem 1.5rem;
    }
    
    .instagram-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .instagram-cta-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .instagram-cta-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .instagram-cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
