@charset "utf-8";
@import url("https://unpkg.com/sanitize.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Roboto:wght@400;700;900&display=swap");

/* Root Variables */
:root {
    --bg-color: #FFFFFF;
    --text-color: #333333;
    --accent-color: #E60012;
    /* Noah Red */
    --gray-color: #F5F5F5;
    --light-gray: #DDDDDD;
    --font-heading: "Roboto", sans-serif;
    --font-body: "Noto Sans JP", sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid var(--accent-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

#logo img {
    height: 40px;
    width: auto;
    filter: invert(1);
    /* Invert white logo to black for white header */
}

#g-nav {
    display: flex;
    align-items: center;
}

#g-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#g-nav li {
    margin-left: 30px;
}

#g-nav a {
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

#g-nav a span.ja {
    font-size: 10px;
    font-weight: 400;
    color: #888;
    margin-top: 3px;
    font-family: var(--font-body);
}

#g-nav a:hover span.ja {
    color: var(--accent-color);
}

/* Mobile Menu Button */
#menubar_hdr {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

#menubar_hdr span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    transition: all 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
    top: 0;
}

#menubar_hdr span:nth-of-type(2) {
    top: 9px;
}

#menubar_hdr span:nth-of-type(3) {
    bottom: 0;
}

/* Main Visual */
#main-visual {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.slide-item {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    animation: bgZoom 20s linear infinite alternate;
}

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

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

.slide-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 80%;
}

.slide-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-style: italic;
}

.slide-text p {
    font-size: clamp(18px, 2vw, 24px);
    border-left: 6px solid var(--accent-color);
    padding-left: 25px;
    font-weight: 700;
    line-height: 1.6;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    padding-right: 20px;
    display: inline-block;
}

/* Sections Common */
section {
    padding: 100px 5%;
    border-bottom: 1px solid #EEEEEE;
}

.section-header,
.section-title {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 20px;
}

.section-title h2,
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin: 0;
    line-height: 1;
    color: #000;
}

.section-title p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* News Section */
#news-section {
    background: #FAFAFA;
    padding-bottom: 120px;
}

.view-all {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 5px;
}

.view-all:hover {
    color: var(--accent-color);
}

.news-list {
    margin: 0;
    border-top: 1px solid #DDDDDD;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #DDDDDD;
    transition: background 0.3s;
}

.news-item:hover {
    background: #F0F0F0;
}

.news-item dt {
    width: 150px;
    font-weight: 700;
    color: #333;
    font-family: var(--font-heading);
    opacity: 0.8;
}

.news-item dd {
    flex: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news-item a {
    color: #333;
    font-weight: 500;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    border: 1px solid #ccc;
    color: #666;
    font-size: 11px;
    margin-right: 20px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

.news-item:hover .tag {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Studio Grid */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background: #fff;
    border: none;
}

.studio-card {
    background: #fff;
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.studio-card .thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(0%);
}

.studio-card:hover .thumb {
    transform: scale(1.1);
}

.studio-card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    z-index: 2;
}

.studio-card h3 {
    margin: 0 0 5px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

.studio-card .spec {
    color: #fff;
    font-size: 16px;
    margin: 0;
    display: flex;
    gap: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.studio-card:hover h3 {
    color: var(--accent-color);
}

/* Concept Section (Revised) */
#concept-section {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.concept-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    background-attachment: fixed;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.concept-card {
    width: 50%;
    min-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid #EEE;
}

.concept-card h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    color: #000;
    margin: 0 0 10px;
    line-height: 1;
    letter-spacing: -2px;
}

.concept-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 30px;
    letter-spacing: 0.1em;
}

.concept-card p {
    color: #333;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
    margin-bottom: 40px;
}

.btn-line {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #000;
    font-weight: 700;
    font-family: var(--font-heading);
    border: 2px solid #000;
    text-align: center;
    transition: all 0.3s;
}

.btn-line:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 900px) {
    .container {
        justify-content: center;
    }

    .concept-card {
        width: 100%;
        min-width: auto;
        padding: 40px;
    }
}


/* Footer - Keeping Dark for Contrast */
footer {
    background: #111;
    padding: 80px 0 40px;
    border-top: 5px solid var(--accent-color);
    color: #888;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 40px;
}

.footer-links {
    margin-bottom: 60px;
}

.footer-links a {
    color: #888;
    margin: 0 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    color: #555;
    font-size: 10px;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 900px) {
    .header-inner {
        padding: 0 20px;
    }

    /* NOA Style Full Screen Menu */
    #g-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;

        /* Animation Initial State */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
        pointer-events: none;
    }

    #g-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Scroll Lock */
    body.menu-open {
        overflow: hidden;
    }

    /* Menu Items */
    #g-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    #g-nav li {
        width: 100%;
        text-align: center;
        margin: 32px 0;

        /* Animation Initial State */
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    }

    /* Staggered Animation */
    #g-nav.active li {
        opacity: 1;
        transform: translateY(0);
    }

    #g-nav.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    #g-nav.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    #g-nav.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    #g-nav.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    /* Links */
    #g-nav a {
        color: #ffffff;
        font-family: var(--font-heading);
        font-weight: 900;
        font-size: 24px;
        letter-spacing: 0.1em;
        transition: color 0.3s;
    }

    #g-nav a:hover {
        color: var(--accent-color);
    }

    #g-nav a span.ja {
        color: #888;
        font-size: 15px;
        margin-top: 5px;
        font-weight: 400;
        font-family: var(--font-body);
    }

    /* Hamburger Button & Colors */
    #menubar_hdr {
        display: block;
        z-index: 1001;
    }

    /* Turn button white when menu is open */
    body.menu-open #menubar_hdr span {
        background: #fff;
    }

    .slide-text h2 {
        font-size: 40px;
    }

    #concept-section .inner {
        flex-direction: column-reverse;
    }

    .text-box,
    .img-box {
        width: 100%;
    }

    .text-box {
        padding: 60px 20px;
    }

    .footer-links a {
        display: block;
        margin: 15px 0;
    }
}

/* Sub-page Header */
.page-header {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.page-header h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header h2 span {
    display: block;
    font-size: 14px;
    color: var(--accent-color);
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: none;
}

/* Breadcrumbs */
.breadcrumb {
    max-width: 1200px;
    margin: -30px auto 60px;
    padding: 0 20px;
    font-size: 12px;
    color: #888;
}

.breadcrumb a {
    color: #888;
    margin-right: 10px;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 10px;
}

/* Article/Content Styles */
.page-content {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.page-content p {
    color: #333;
    font-size: 15px;
    margin-bottom: 30px;
}

.page-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #000;
    border-left: 5px solid var(--accent-color);
    padding-left: 20px;
    margin: 60px 0 30px;
}

.table-spec {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Added shadow for white theme */
}

.table-spec th,
.table-spec td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.table-spec th {
    width: 25%;
    color: var(--accent-color);
    font-weight: 700;
    background: #FAFAFA;
    /* Light background for headers */
}

.bg1 {
    background: #FAFAFA;
}

.bg2 {
    background: #F0F0F0;
}

/* Availability Box */
.availability-box {
    background: #FAFAFA;
    padding: 20px;
    text-align: center;
    border: 1px solid #EEE;
    margin-bottom: 40px;
}

.availability-box p {
    color: #333 !important;
    /* Override any specific p styles if needed */
}

.table-spec td {
    color: #333;
}

/* Availability Table (Specific Schedule Style) */
.table-availability {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 13px;
    /* Slightly larger for readability */
}

.table-availability th,
.table-availability td {
    border: 1px solid #ddd;
    /* Visible grid */
    padding: 12px 5px;
    text-align: center;
    color: #333;
}

.table-availability th {
    background: #333;
    /* Dark header for strong contrast */
    color: #fff;
    font-weight: 700;
    width: auto;
    /* Let columns adjust */
}

/* First column (Time) specificity if needed */
.table-availability tr td:first-child {
    background: #f5f5f5;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Zebra Striping */
.table-availability tr:nth-child(even) td:not(:first-child) {
    background: #fafafa;
}

.table-availability tr:hover td {
    background-color: #f0f0f0;
    /* Hover effect for tracking rows */
}

/* Studio List Page Styles */
.studio-list-group {
    margin-bottom: 80px;
}

.studio-list-group h3 {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.studio-list-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin-bottom: 40px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.studio-list-item .thumb {
    width: 40%;
    min-width: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.studio-list-item .data {
    width: 60%;
    padding: 30px;
}

.studio-list-item h4 {
    font-size: 24px;
    margin: 0 0 20px;
    color: #000;
    font-family: var(--font-heading);
}

.studio-list-item h4 a {
    color: #000;
}

.studio-list-item h4 a:hover {
    color: var(--accent-color);
}

.studio-list-item .newicon {
    font-size: 11px;
    background: var(--accent-color);
    color: #fff;
    padding: 2px 6px;
    margin-left: 10px;
    vertical-align: middle;
}

.studio-list-item dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
}

.studio-list-item dt {
    width: 20%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: var(--accent-color);
    font-weight: 700;
}

.studio-list-item dd {
    width: 80%;
    padding: 15px 0 15px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    margin: 0;
}

@media (max-width: 900px) {
    .studio-list-item {
        flex-direction: column;
    }

    .studio-list-item .thumb,
    .studio-list-item .data {
        width: 100%;
    }

    .studio-list-item .thumb {
        height: 250px;
    }

    .studio-list-item dt,
    .studio-list-item dd {
        width: 100%;
        display: block;
        padding: 5px 0;
        border: none;
    }

    .studio-list-item dt {
        margin-top: 10px;
        color: #000;
        background: #fafafa;
        padding: 5px 10px;
    }

    .studio-list-item dd {
        padding-left: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
}

/* High Emphasis CTA Button for Reservation */
.btn-cta {
    display: inline-block;
    padding: 15px 50px;
    background: #E60012;
    /* Noah Red */
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(230, 0, 18, 0.2);
    margin-top: 20px;
}

.btn-cta:hover {
    background: #c0000f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 0, 18, 0.3);
}

.btn-cta i {
    margin-right: 10px;
}

/* Access Section Styles (Added for Tabbed Map) */
.access-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.access-map {
    flex: 1;
    min-width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.access-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.access-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.access-item:hover {
    border-color: #E60012;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.access-item.active {
    border-color: #E60012;
    background-color: #fff9f9;
}

.access-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: #E60012;
}

.access-icon {
    font-size: 1.5rem;
    color: #ccc;
    margin-right: 15px;
    margin-top: 2px;
}

.access-item.active .access-icon {
    color: #E60012;
}

.access-info h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    padding: 0;
    font-family: var(--font-body);
}

.access-info p {
    margin: 0;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #666;
}

.access-info .note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .access-container {
        flex-direction: column;
    }

    .access-map iframe {
        height: 300px;
    }
}

.btn-map {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background-color: #f5f5f5;
    color: #E60012;
    border-color: #E60012;
}

/* Access Tabs */
.access-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 30px;
    border: 1px solid #333;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #333;
    color: #fff;
}

.tab-btn:hover {
    background: #333;
    color: #fff;
}

/* =========================================
   Hope Page (開校希望の方) Styles
   ========================================= */
.hope-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.hope-intro h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--accent-color);
    border: none;
    padding: 0;
}

.hope-point {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.bg-gray {
    background-color: #f9f9f9;
}

.point-header {
    text-align: center;
    margin-bottom: 40px;
}

.point-img {
    height: 100px;
    /* Adjust based on actual image size */
    width: auto;
}

.point-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.point-content.reverse {
    flex-direction: row-reverse;
}

.point-text {
    flex: 1;
}

.point-image {
    flex: 1;
    text-align: center;
}

.point-image img {
    max-width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.sub-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sub-point img {
    width: 100px;
    /* Adjust */
    margin-right: 20px;
    flex-shrink: 0;
}

.sub-point p {
    margin: 0;
    font-size: 15px;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1em;
}

.support-list {
    background: #fff;
    padding: 30px;
    border: 2px solid #eee;
    margin-top: 30px;
    border-radius: 8px;
}

.support-list h4 {
    color: var(--accent-color);
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

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

.support-list li {
    margin-bottom: 10px;
    padding-left: 10px;
    text-indent: -10px;
}

.regist-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: #f0f0f0;
    border-radius: 8px;
}

.regist-cta p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .point-content,
    .point-content.reverse {
        flex-direction: column;
    }

    .point-image {
        margin-top: 30px;
    }

    .school-item {
        flex-direction: column;
    }

    .school-thumb {
        width: 100%;
        height: 200px;
        /* Fixed height for mobile */
    }

    .school-info {
        width: 100%;
    }
}