/* ========================================
   LOGZA SCHOOL - カスタムCSS
   ======================================== */

/* フォント読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

/* フォント統一 */
html, body, h1, h2, h3, h4, h5, h6, p, span, a, li, div, input, textarea, select, button {
    font-family: "Noto Serif JP", serif;
}

/* ========================================
   ヒーロー全画面動画
   ======================================== */
.hero-fullscreen-4829 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-4829 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay-4829 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(44, 74, 62, 0.75);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-4829 {
    padding: 4rem;
    max-width: 100%;
    width: 100%;
}

.hero-title-4829 {
    font-size: 5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-title-4829 em {
    font-style: italic;
    font-weight: 300;
}

.hero-desc-4829 {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    letter-spacing: 0.05em;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
    .hero-overlay-4829 {
        width: 60%;
    }

    .hero-title-4829 {
        font-size: 4rem;
    }

    .hero-desc-4829 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-fullscreen-4829 {
        height: 70vh;
    }

    .hero-overlay-4829 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 74, 62, 0.7);
    }

    .hero-content-4829 {
        padding: 3rem 1.5rem;
    }

    .hero-title-4829 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-desc-4829 {
        font-size: 1rem;
        line-height: 1.8;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-overlay-4829 {
        min-height: 60vh;
    }

    .hero-content-4829 {
        padding: 2rem 1rem;
    }

    .hero-title-4829 {
        font-size: 2rem;
    }

    .hero-desc-4829 {
        font-size: 0.95rem;
    }
}

/* ========================================
   4つの強みセクション（グリッド形式）
   ======================================== */
.features-grid-4829 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c4a3e 0%, #1a2e26 100%);
}

.features-grid-container-4829 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid-title-4829 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}

.features-grid-title-4829 em {
    font-style: normal;
    color: #c9a96e;
}

.features-grid-wrap-4829 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card-4829 {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-4829:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon-4829 {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #c9a96e;
}

.feature-icon-4829 svg {
    width: 100%;
    height: 100%;
}

.feature-card-4829 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-card-4829 p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ========================================
   お知らせセクション（カード形式）
   ======================================== */
.news-cards-4829 {
    padding: 6rem 0;
    background: #f8f8f8;
}

.news-cards-container-4829 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-cards-header-4829 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.news-cards-header-4829 h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #191919;
    letter-spacing: 0.1em;
}

.news-more-4829 {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-more-4829:hover {
    color: #2c4a3e;
}

.news-cards-wrap-4829 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card-4829 {
    display: block;
    background: #fff;
    padding: 2rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card-4829:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.news-card-cat-4829 {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #2c4a3e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-card-date-4829 {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.news-card-title-4829 {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* ========================================
   コースセクション
   ======================================== */
.courses-section-4829 {
    padding: 6rem 0;
    background: #fff;
}

.courses-container-4829 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.courses-title-4829 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #191919;
    margin-bottom: 4rem;
    letter-spacing: 0.1em;
}

.courses-title-4829 em {
    font-style: normal;
    color: #c9a96e;
}

.courses-grid-4829 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.course-card-4829 {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.course-card-4829:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.course-image-4829 {
    overflow: hidden;
}

.course-image-4829 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-4829:hover .course-image-4829 img {
    transform: scale(1.1);
}

.course-content-4829 {
    padding: 1.5rem;
}

.course-content-4829 h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #191919;
    margin-bottom: 0.8rem;
}

.course-content-4829 p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   セクション共通 レスポンシブ
   ======================================== */
@media screen and (max-width: 1024px) {
    .features-grid-wrap-4829 {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid-4829 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .features-grid-4829,
    .news-cards-4829,
    .courses-section-4829 {
        padding: 4rem 0;
    }

    .features-grid-title-4829,
    .courses-title-4829 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .news-cards-wrap-4829 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-cards-header-4829 h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .features-grid-wrap-4829,
    .courses-grid-4829 {
        grid-template-columns: 1fr;
    }

    .feature-card-4829 {
        padding: 2rem 1.5rem;
    }

    .news-cards-container-4829,
    .courses-container-4829,
    .features-grid-container-4829 {
        padding: 0 1rem;
    }
}

/* ========================================
   合格実績セクション
   ======================================== */
.results-section-4829 {
    padding: 6rem 0;
    background: #fff;
}

.results-container-4829 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.results-title-4829 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #191919;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.results-title-4829 em {
    font-style: normal;
    color: #c9a96e;
}

.results-subtitle-4829 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* 年度別ブロック */
.results-year-4829 {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.results-year-4829:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.results-year-title-4829 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c4a3e;
    margin-bottom: 2rem;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, #2c4a3e 0%, #3d6b5a 100%);
    color: #fff;
    border-radius: 30px;
}

.results-grid-4829 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.result-category-4829 {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
}

.result-category-4829 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c4a3e;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #c9a96e;
}

.result-category-4829 h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c4a3e;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #c9a96e;
}

.result-category-4829 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-category-4829 li {
    font-size: 0.95rem;
    color: #333;
    padding: 0.7rem 0;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-category-4829 li:last-child {
    border-bottom: none;
}

.result-count-4829 {
    font-weight: 600;
    color: #c9a96e;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.result-count-4829::before {
    content: "💮";
    margin-right: 0.3rem;
    filter: hue-rotate(320deg) saturate(2);
}

/* ========================================
   無料体験CTAセクション
   ======================================== */
.cta-section-4829 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #c9a96e 0%, #a88a4e 100%);
    text-align: center;
}

.cta-container-4829 {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title-4829 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.cta-title-4829 em {
    font-style: normal;
    font-family: "Noto Serif JP", serif;
}

.cta-desc-4829 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: 2.5rem;
}

.cta-buttons-4829 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary-4829 {
    display: inline-block;
    padding: 1rem 3rem;
    background: #fff;
    color: #2c4a3e;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-primary-4829:hover {
    background: #2c4a3e;
    color: #fff;
}

.cta-btn-secondary-4829 {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-secondary-4829:hover {
    background: #fff;
    color: #2c4a3e;
}

/* 合格実績・CTA レスポンシブ */
@media screen and (max-width: 768px) {
    .results-section-4829,
    .cta-section-4829 {
        padding: 4rem 0;
    }

    .results-title-4829,
    .cta-title-4829 {
        font-size: 1.8rem;
    }

    .results-grid-4829 {
        grid-template-columns: 1fr;
    }

    .results-year-title-4829 {
        font-size: 1.2rem;
        padding: 0.4rem 1.5rem;
    }

    .results-year-4829 {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .cta-desc-4829 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta-btn-primary-4829,
    .cta-btn-secondary-4829 {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   地図セクション
   ======================================== */
.map-section-4829 {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.map-section-4829 iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-section-4829 iframe:hover {
    filter: grayscale(0%);
}
