/* 学園トップページ専用スタイル */

/* =================================
基本設定
================================== */
:root {
    --color-primary: #1a3a6b; /* 深い紺色 */
    --color-secondary: #007bc4;
    --color-accent: #e4a200; /* ゴールド */
    --color-text: #333;
    --color-bg-gray: #f5f5f5;
    --font-family-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
    background-color: #fff;
    margin: 0;
}

/* --- 下層ページ用の固定ヘッダー分の余白を確保 --- */
/* bodyにportal-pageクラスが「付いていない」ページにのみ適用 */
body:not(.portal-page) {
    padding-top: 71px;
}

img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: var(--color-primary); text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }

.section { padding: 80px 20px; }
.section--bg-gray { background-color: var(--color-bg-gray); }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__title { font-size: 2.2rem; font-weight: bold; text-align: center; margin: 0 0 60px 0; color: var(--color-primary); }
.section__title--en { display: block; font-size: 1rem; color: var(--color-secondary); margin-top: 5px; }

/* =================================
ヘッダー
================================== */
.header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 20px 0;
}
.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo a { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.header__logo img { height: 50px; }
.header__logo h1 { font-size: 1.2rem; color: #fff; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); margin: 0; }
.header__nav ul { display: flex; list-style: none; padding: 0; margin: 0; gap: 30px; }
.header__nav a { color: #fff; font-weight: bold; text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.hamburger { display: none; }

/* =================================
メインビジュアル
================================== */
.hero--portal {
    position: relative;
    height: 70vh; min-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
}
.hero__overlay--dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(26, 58, 107, 0.5); /* 青みを帯びたフィルターに変更 */
    z-index: 2;
}
.hero__text-wrapper {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}
.hero__title { font-size: 3rem; font-weight: bold; line-height: 1.4; margin: 0; }
.hero__subtitle { font-size: 1.2rem; margin-top: 20px; }

/* =================================
メインビジュアル(動画)
================================== 
.hero--portal {
    position: relative;
    height: 70vh; min-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero__video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay--dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); z-index: 2; }
.hero__text-wrapper { position: relative; z-index: 3; color: #fff; text-align: center; text-shadow: 1px 1px 8px rgba(0,0,0,0.6); }
.hero__title { font-size: 3rem; font-weight: bold; line-height: 1.4; margin: 0; }
.hero__subtitle { font-size: 1.2rem; margin-top: 20px; }*/

/* =================================
各校紹介
================================== */
.schools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background-color: #ddd; border: 1px solid #ddd; }
.school-card { display: block; text-decoration: none; background-color: #fff; transition: all 0.3s ease; position: relative; overflow: hidden; }
.school-card:hover { opacity: 0.85; }
.school-card__image { width: 100%; height: 300px; }
.school-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.school-card:hover .school-card__image img { transform: scale(1.05); }
.school-card__content { padding: 25px; }
.school-card__title { font-size: 1.6rem; font-weight: bold; color: var(--color-primary); margin: 0 0 10px 0; }
.school-card__text { font-size: 1rem; color: var(--color-text); line-height: 1.7; margin: 0; }

/* =================================
お知らせ & ブログ
================================== */
.portal-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.section__title--left-aligned { text-align: left; margin-bottom: 30px; }
.portal-news-list, .portal-blog-list { border-top: 2px solid var(--color-primary); }
.portal-news-item, .portal-blog-item { display: block; padding: 18px 10px; border-bottom: 1px solid #ddd; text-decoration: none; color: var(--color-text); }
.portal-news-item:hover, .portal-blog-item:hover { background-color: #fff; opacity: 1; }
.portal-news-item time, .portal-blog-item__content time { display: block; font-size: 0.9rem; color: #777; margin-bottom: 5px; }
.portal-blog-item { display: flex; gap: 15px; align-items: flex-start; }
.portal-blog-item__school { flex-shrink: 0; font-size: 0.8rem; font-weight: bold; color: #fff; padding: 3px 10px; border-radius: 4px; }
.school-label--you { background-color: #ffa726; }
.school-label--syo { background-color: #66bb6a; }
.school-label--jr-hs { background-color: #d9534f; }
.portal-blog-item__content { flex-grow: 1; }

/* =================================
学園について (カード)
================================== */
.info-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-card { background-color: #fff; border-radius: 8px; padding: 30px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); }
.info-card__title-large { font-size: 1.5rem; font-weight: bold; color: var(--color-primary); margin: 0 0 20px 0; padding-bottom: 15px; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 10px; }
.action-buttons { margin-top: 30px; }
.btn-secondary { display: inline-block; background-color: #fff; color: var(--color-primary); border: 2px solid var(--color-primary); padding: 10px 25px; border-radius: 50px; font-weight: bold; }
.btn-secondary:hover { background-color: var(--color-primary); color: #fff; opacity: 1; }

/* =================================
フッター
================================== */
.site-footer { background-color: #343a40; color: #f8f9fa; padding: 60px 20px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 40px; }
.footer-info { flex: 1 1 300px; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-info h4 { font-size: 1.1rem; margin: 0 0 15px 0; color: #fff; }
.footer-info p { margin: 0 0 10px 0; line-height: 1.7; color: #adb5bd; }
.footer-nav { flex: 2 1 600px; display: flex; gap: 30px; }
.footer-nav-column h4 { font-size: 1rem; font-weight: bold; color: #fff; margin: 0 0 15px 0; }
.footer-nav-column ul { list-style: none; padding: 0; margin: 0; }
.footer-nav-column li { margin-bottom: 12px; }
.footer-nav-column a { color: #adb5bd; }
.copyright { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #495057; }
.copyright p { margin: 0; font-size: 0.85rem; color: #6c757d; }

/* =================================
レスポンシブ対応
================================== */
@media (max-width: 960px) {
    .section { padding: 60px 20px; }
    .schools-grid { grid-template-columns: repeat(2, 1fr); }
    .portal-news-grid { grid-template-columns: 1fr; }
    .info-card-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; }
}

@media (max-width: 768px) {
    .schools-grid { grid-template-columns: 1fr; }
    .school-card__image { height: 250px; }
}
/* ================================================================== */
/* ▼▼▼ 関連情報カード（4枚組）のスタイル ▼▼▼ */
/* ================================================================== */

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.related-link-card {
    display: flex; /* Flexboxに変更して高さを揃える */
    flex-direction: column; /* 要素を縦に並べる */
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}
.related-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 59, 124, 0.1);
    opacity: 1;
    border-bottom-color: var(--color-accent);
}
.related-link-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}
.related-link-card:hover i {
    transform: scale(1.1);
}
.related-link-card__title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 10px 0;
}
.related-link-card__text {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1; /* この要素が伸びて高さを揃える */
}

/* アイコンの個別カラー */
.icon-color-1 { color: #29b6f6; } /* 水色 */
.icon-color-2 { color: #ffa726; } /* オレンジ */
.icon-color-3 { color: #66bb6a; } /* 緑 */
.icon-color-4 { color: #ef5350; } /* 赤 */


/* --- レスポンシブ対応 --- */
@media (max-width: 960px) {
    .related-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-links-grid {
        gap: 15px;
    }
    .related-link-card {
        padding: 20px 15px;
    }
    .related-link-card__title {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .related-links-grid {
        grid-template-columns: 1fr;
    }
}
/* ================================================================== */
/* ▼▼▼ オープンスクール情報カードのスタイル (index.html) ▼▼▼ */
/* ================================================================== */

.school-event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.school-event-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    /* 背景を少し半透明にして、下の背景画像が透けるように見せる */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); /* 影を少し濃くして浮かび上がらせる */
    transition: all 0.3s ease;
}
.school-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 1;
}
.school-event-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.school-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.school-event-card:hover .school-event-card__image img {
    transform: scale(1.08);
}
.school-event-card__content {
    padding: 25px;
    flex-grow: 1;
}
.school-event-card__title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 10px 0;
}
.school-event-card__text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.8;
    margin: 0;
}

/* --- カード内ボタンのスタイル --- */
.school-event-card__action {
    padding: 0 25px 25px 25px;
    margin-top: auto;
}
.btn-portal-card {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}
.school-event-card:hover .btn-portal-card {
    background-color: #c88f00; /* ホバー時に少し濃い色に */
}

/* --- レスポンシブ対応 (変更なし) --- */
@media (max-width: 960px) { ... }
@media (max-width: 480px) { ... }


/* ================================================================== */
/* ▼▼▼ 背景画像付きセクションのスタイル (学園トップ) ▼▼▼ */
/* ================================================================== */
.section--bg-image-portal {
    position: relative;
    /* ここにお好みの校舎の画像などを設定してください */
    background-image: url('https://www.keiai.net/images/gakuen_campus.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.section--bg-image-portal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* 小学校サイトと同じ青いスクリーン */
    background-color: rgba(0, 59, 124, 0.8); 
    z-index: -1;
}
/* ▼▼▼ この部分を追加 ▼▼▼ */
/* --- 白文字のセクションタイトル --- */
.section__title--white { 
    color: #fff; 
}
.section__title--white .section__title--en { 
    color: rgba(255, 255, 255, 0.7); 
}

/* ================================================================== */
/* ▼▼▼ 横スクロールフォトギャラリーのスタイル ▼▼▼ */
/* ================================================================== */
.scroll-gallery-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.scroll-gallery {
    display: flex;
    /* ▼▼▼ サイズを小学校サイトと同じに変更 ▼▼▼ */
    /* (横幅400px + 余白20px) × 12枚 = 5040px */
    width: calc((400px + 20px) * 12); 
    animation: scrollAnimation 40s linear infinite;
}

.scroll-gallery__item {
    flex-shrink: 0;
    /* ▼▼▼ サイズを小学校サイトと同じに変更 ▼▼▼ */
    width: 400px;
    height: 260px;
    margin-right: 20px;
}

.scroll-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.scroll-gallery-wrapper:hover .scroll-gallery {
    animation-play-state: paused;
}

@keyframes scrollAnimation {
    from { transform: translateX(0); }
    to { 
        /* ▼▼▼ サイズを小学校サイトと同じに変更 ▼▼▼ */
        /* (横幅400px + 余白20px) × 6枚分 左に移動 */
        transform: translateX(calc(-1 * (400px + 20px) * 6)); 
    }
}

/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 768px) {
    /* (スマホ用のサイズは変更なし) */
    .scroll-gallery {
        width: calc((280px + 15px) * 12); 
        animation-name: scrollAnimationMobile;
    }
    .scroll-gallery__item {
        width: 280px;
        height: 180px;
        margin-right: 15px;
    }
    @keyframes scrollAnimationMobile {
        from { transform: translateX(0); }
        to {
            transform: translateX(calc(-1 * (280px + 15px) * 6));
        }
    }
}
/* ================================================================== */
/* ▼▼▼ アクセスマップセクションのスタイル (index.html) ▼▼▼ */
/* ================================================================== */

#access {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}
#access .access-section__bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* 背景に使う画像。差し替えも可能です */
    background-image: url('images/gakuen_hero_poster.jpg'); 
    background-size: cover; 
    background-position: center;
    filter: blur(5px); 
    transform: scale(1.1);
    z-index: -2;
}
#access::before {
    content: ''; 
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(245, 245, 245, 0.9);
    z-index: -1;
}
#access .access-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
#access .access-section__map iframe {
    width: 100%; 
    height: 450px;
    border: none; 
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
#access .access-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 10px 0;
    text-align: left;
}
#access .access-section__school-name { 
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 20px 0;
    text-align: left;
}
#access .access-section__address { 
    font-style: normal; 
    line-height: 1.8; 
    margin-bottom: 25px;
    text-align: left;
}
#access .access-section__button {
    display: inline-block;
    margin-top: 20px;
    background-color: var(--color-primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}
#access .access-section__button:hover {
    opacity: 0.8;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 960px) {
    #access { 
        padding: 60px 20px; 
    }
    #access .access-section__inner {
        grid-template-columns: 1fr;
    }
    #access .access-section__map {
        order: 2; /* 地図を下に */
    }
    #access .access-section__info {
        order: 1; /* 情報を上に */
        text-align: center;
    }
     #access .access-section__title,
     #access .access-section__school-name,
     #access .access-section__address {
        text-align: center;
     }
}
/* ================================================================== */
/* ▼▼▼ 下層ページ共通コンポーネント & 募集ページ専用スタイル ▼▼▼ */
/* ================================================================== */

/* --- 下層ページ用のヘッダー背景色 --- */
.header.is-solid {
    position: fixed;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.header.is-solid .header__logo a,
.header.is-solid .header__nav a {
    color: var(--color-text);
    text-shadow: none;
}
.header.is-solid .hamburger span {
    background-color: var(--color-primary);
}
.header.is-solid .header__logo h1 {
    color: var(--color-text);
}

/* --- 下層ページ共通ヘッダービジュアル --- */
.page-header-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-color: var(--color-primary);
	/* ▼▼▼ この一行を追加 ▼▼▼ */
    /* 固定ヘッダー(高さ71px)に隠れないように、上部に余白を追加 */
    padding-top: 71px; 
}





.page-header-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}
.page-header-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(26, 58, 107, 0.7); /* var(--color-primary)のRGBA版 */
}
.page-header-content {
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}
.page-title-ja {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}
.page-title-en {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
    margin-top: 10px;
}

/* --- パンくずリスト --- */
.breadcrumb {
    background-color: var(--color-bg-gray);
    padding: 15px 20px;
    font-size: 0.9rem;
}
.breadcrumb__inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb ul { display: flex; list-style: none; margin: 0; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: '>'; margin: 0 10px; color: #999; }

/* --- コンテンツエリアの基本設定 --- */
.content-wrapper--narrow { max-width: 900px; margin-left: auto; margin-right: auto; }
.about-content { text-align: center; margin-bottom: 50px; }
.about-content__title { font-size: 1.8rem; font-weight: bold; color: var(--color-primary); margin-bottom: 20px; }
.about-content__text { font-size: 1.1rem; line-height: 2; }

/* --- 強調表示カード (.info-card--highlight) --- */
.info-card--highlight {
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
}
.info-card--highlight .info-card__title { color: #fff; }
.info-card--highlight .info-card__icon { font-size: 3rem; margin-bottom: 20px; color: var(--color-accent); }
.btn-arrow {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff !important;
    padding: 12px 50px 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}
.btn-arrow::after { content: '→'; position: absolute; right: 25px; top: 50%; transform: translateY(-50%); }

/* --- 情報ブロックカード (.info-block) --- */
.info-block {
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
}
.info-block__title {
    background-color: var(--color-bg-gray);
    padding: 18px 25px;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0;
    border-bottom: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- 募集情報リンクリスト --- */
.recruitment-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recruitment-link-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    border-top: 1px solid #f0f0f0;
}
.info-block .recruitment-link-list li:first-child a {
    border-top: none;
}
.recruitment-link-list a:hover {
    background-color: #f8f9fa;
    opacity: 1;
    color: var(--color-secondary);
}
.recruitment-link-list a i {
    font-size: 1.1rem;
    color: var(--color-secondary);
}


/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    .page-header-visual { height: 300px; }
    .page-title-ja { font-size: 2rem; }
    .info-block__title { font-size: 1.2rem; padding: 15px 20px; }
    .recruitment-link-list a { font-size: 1rem; padding: 18px 20px; }
}
/* ================================================================== */
/* ▼▼▼ ページ内コンテンツ画像のスタイル ▼▼▼ */
/* ================================================================== */
.page-content-image {
    margin-top: 40px; /* 上のテキストとの余白 */
    margin-bottom: 40px; /* 下のセクションとの余白 */
}
.page-content-image img {
    border-radius: 8px; /* 角を丸くする */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* 影をつける */
}

/* ================================================================== */
/* ▼▼▼ Ken Burns エフェクト スライドショーのスタイル (6枚構成版) ▼▼▼ */
/* ================================================================== 

.ken-burns-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ken-burns-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* ▼▼▼ 1枚あたりの表示時間を約8秒として、合計時間を 8s * 6枚 = 48s に変更 ▼▼▼ 
    animation: imageFade 48s infinite;
}

.ken-burns-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- アニメーションのタイミングをずらす (6枚用に調整) --- 
.ken-burns-slider .slide:nth-child(2) { animation-delay: 8s; }
.ken-burns-slider .slide:nth-child(3) { animation-delay: 16s; }
.ken-burns-slider .slide:nth-child(4) { animation-delay: 24s; }
.ken-burns-slider .slide:nth-child(5) { animation-delay: 32s; }
.ken-burns-slider .slide:nth-child(6) { animation-delay: 40s; }

/* --- 画像の動き（Ken Burns エフェクト）の定義 (6枚用に調整) --- 
/* アニメーションの合計時間も 48s に変更 
.ken-burns-slider .slide:nth-child(1) img { animation: kenBurnsEffect1 48s infinite; }
.ken-burns-slider .slide:nth-child(2) img { animation: kenBurnsEffect2 48s infinite; }
.ken-burns-slider .slide:nth-child(3) img { animation: kenBurnsEffect3 48s infinite; }
.ken-burns-slider .slide:nth-child(4) img { animation: kenBurnsEffect4 48s infinite; }
/* 5枚目、6枚目は1, 2の動きを繰り返して自然に見せる 
.ken-burns-slider .slide:nth-child(5) img { animation: kenBurnsEffect1 48s infinite; animation-delay: 8s; } /* 遅延をかけて動きの開始をずらす 
.ken-burns-slider .slide:nth-child(6) img { animation: kenBurnsEffect2 48s infinite; animation-delay: 16s; }

/* フェードイン・フェードアウトのアニメーション (1枚あたりの表示割合を調整) 
@keyframes imageFade {
    0% { opacity: 0; }
    3% { opacity: 1; }   /* 1/6 ≒ 16.6% なので、その中での割合 
    13% { opacity: 1; }
    16.66% { opacity: 0; } /* 1枚の表示が終わるタイミング 
    100% { opacity: 0; }
}

/* 動きのパターン (アニメーション時間は各画像の表示時間に合わせるため変更不要)
@keyframes kenBurnsEffect1 {
    0% { transform: scale(1.1) translate(-2%, -2%); }
    100% { transform: scale(1) translate(0, 0); }
}
@keyframes kenBurnsEffect2 {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}
@keyframes kenBurnsEffect3 {
    0% { transform: scale(1.1) translate(2%, -2%); }
    100% { transform: scale(1) translate(0, 0); }
}
@keyframes kenBurnsEffect4 {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(2%, -2%); }
} */
/* ================================================================== */
/* ▼▼▼ 斜めフローティングスライドショー【画像100%表示・最終決定版】▼▼▼ */
/* ================================================================== */

.floating-slider__list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.floating-slider__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: floatingFade 48s infinite;
}

.floating-slider__item img {
    /* ▼▼▼ ここが修正のポイントです ▼▼▼ */
    /* 画像サイズは100%で表示します */
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    
    /* 初期位置と移動量を調整して黒枠を防ぎます */
    /* top, left はリセット */
    
    animation: floatingMoveFinal 48s ease-in-out infinite;
    /* ▲▲▲ ここまでが修正のポイントです ▲▲▲ */
}

/* 各スライドのアニメーション開始タイミング (6枚用・変更なし) */
.floating-slider__item:nth-child(2),
.floating-slider__item:nth-child(2) img { animation-delay: 8s; }
.floating-slider__item:nth-child(3),
.floating-slider__item:nth-child(3) img { animation-delay: 16s; }
.floating-slider__item:nth-child(4),
.floating-slider__item:nth-child(4) img { animation-delay: 24s; }
.floating-slider__item:nth-child(5),
.floating-slider__item:nth-child(5) img { animation-delay: 32s; }
.floating-slider__item:nth-child(6),
.floating-slider__item:nth-child(6) img { animation-delay: 40s; }

/* フェードイン・フェードアウトのタイミング (6枚用・変更なし) */
@keyframes floatingFade {
    0%   { opacity: 0; animation-timing-function: ease-in; }
    4%   { opacity: 1; }
    12%  { opacity: 1; }
    16.66% { opacity: 0; animation-timing-function: ease-out; }
    100% { opacity: 0; }
}

/* ▼ 新しい移動アニメーションの定義 */
@keyframes floatingMoveFinal {
    0% {
        /* アニメーション開始時 */
        transform: scale(1.15) translate(5%, -5%);
    }
    100% {
        /* アニメーション終了時 */
        transform: scale(1.15) translate(-5%, 5%);
    }
}
/* ================================================================== */
/* ▼▼▼ オープンスクールカード レスポンシブ対応修正 ▼▼▼ */
/* ================================================================== */

/* --- タブレット表示 (画面幅が960px以下) --- */
@media (max-width: 960px) {
    .school-event-grid {
        /* 2列表示に変更 */
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- スマートフォン表示 (画面幅が480px以下) --- */
@media (max-width: 480px) {
    .school-event-grid {
        /* 1列表示に変更 */
        grid-template-columns: 1fr;
    }
}
/* ================================================================== */
/* ▼▼▼ ハンバーガーメニュー関連スタイル【最終決定版】▼▼▼ */
/* ================================================================== */

/* --- 960px以下の画面サイズで適用 --- */
@media (max-width: 960px) {

    /* --- ハンバーガーボタン本体 --- */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 101; /* メニューより手前に表示 */
    }
    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: #fff; /* ポータルページでは白 */
        border-radius: 3px;
        transition: all 0.3s;
        position: relative;
    }
    
    /* 下層ページではボタンの色を紺色に */
    .header.is-solid .hamburger span {
        background-color: var(--color-primary);
    }

    /* --- is-activeクラスが付いた時のボタン（×印）の動き --- */
    .hamburger.is-active span:nth-of-type(1) {
        transform: translateY(10.5px) rotate(45deg);
    }
    .hamburger.is-active span:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger.is-active span:nth-of-type(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    /* --- ナビゲーションメニュー本体 --- */
    .header__nav {
        display: block; /* display:flexから変更 */
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態では画面右外に隠す */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.5s ease;
        padding-top: 80px; /* ヘッダーと重ならないように余白 */
        z-index: 100; /* ヘッダー本体と同じ階層 */
    }

    /* メニューが開いた時のスタイル */
    .header__nav.is-active {
        right: 0; /* is-activeクラスが付いたら右からスライドイン */
    }
    
    /* メニュー内のリストとリンクのスタイル */
    .header__nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .header__nav li {
        width: 100%;
        margin-left: 0;
        border-bottom: 1px solid #eee;
    }
    .header__nav li:first-child {
        border-top: 1px solid #eee;
    }
    .header__nav a {
        display: block;
        padding: 20px;
        width: 100%;
        text-align: center;
        color: var(--color-primary); /* 文字色を紺色に */
        text-shadow: none;
    }
    
    /* --- 閉じるボタン --- */
    .nav-close-button {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 32px;
        height: 32px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 102; /* ボタン自体は最前面に */
    }
    .nav-close-button span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--color-primary);
        position: absolute;
        top: 14.5px;
    }
    .nav-close-button span:nth-of-type(1) {
        transform: rotate(45deg);
    }
    .nav-close-button span:nth-of-type(2) {
        transform: rotate(-45deg);
    }
}

/* --- PC表示 (961px以上) では、スマホ用のナビゲーションを非表示に --- */
@media (min-width: 961px) {
    .header__nav {
        display: block; /* PCでは表示 */
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        box-shadow: none;
        padding-top: 0;
    }
    .header__nav ul {
        flex-direction: row;
        gap: 30px;
    }
    .header__nav li {
        width: auto;
        border: none;
    }
    .header__nav li:first-child {
        border-top: none;
    }
    .header__nav a {
        padding: 0;
        color: #fff; /* ポータルページのデフォルト色 */
        text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }
    .header.is-solid .header__nav a {
        color: var(--color-text); /* 下層ページの文字色 */
        text-shadow: none;
    }
    .nav-close-button {
        display: none; /* PCでは閉じるボタンは不要 */
    }
}
/* ================================================================== */
/* ▼▼▼ ヒーローイメージ スマートフォン表示調整【最終決定版】▼▼▼ */
/* ================================================================== */

/* --- 画面幅が960px以下（タブレット）の場合に適用 --- */
@media (max-width: 960px) {
    .hero__title {
        font-size: 2.5rem;
    }
}

/* --- 画面幅が768px以下（スマートフォン）の場合に適用 --- */
@media (max-width: 768px) {
    .hero--portal {
        height: 60vh; /* スマホでは高さを少し調整 */
		
    }

    /* テキスト全体を、より中央に配置します */
    .hero__text-wrapper {
       padding-top: 5vh;   /*下に余白を追加して中央に寄せる */
    }

    /* メインタイトルのフォントサイズを可変に */
    .hero__title {
        /* 
         * vw単位を使い、画面横幅に応じてフォントサイズを自動調整。
         * これにより、一行に収まるようになります。
        */
        font-size: 6.5vw;
        line-height: 1.5; /* 行間を少し詰める */
    }

    /* サブタイトルのフォントサイズも同様に調整 */
    .hero__subtitle {
        font-size: 3.8vw;
        padding: 0 10px; /* 左右に少し余白を持たせる */
    }
}
	/* ================================================================== */
/* ▼▼▼ 同窓会ページ (gra.html) 専用スタイル ▼▼▼ */
/* ================================================================== */

/* --- recruitment-link-listを汎用的に使えるように調整 --- */
.recruitment-link-list a .list-date {
    font-size: 1rem;
    color: #555;
    margin-right: 20px;
    flex-shrink: 0;
}
.recruitment-link-list a span {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .recruitment-link-list a {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* ================================================================== */
/* ▼▼▼ イベントポスター表示用のスタイル (gra.html) ▼▼▼ */
/* ================================================================== */

.event-poster-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.event-poster-image {
    flex: 0 0 300px; /* 画像の幅を300pxで固定 */
}

.event-poster-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-poster-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-poster-text p {
    flex-grow: 1; /* テキストエリアを伸ばす */
}

.event-poster-text .action-buttons {
    margin-top: auto; /* ボタンを一番下に配置 */
    justify-content: flex-start; /* ボタンを左揃えに */
}


/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 768px) {
    .event-poster-wrapper {
        flex-direction: column; /* 縦並びに変更 */
        gap: 20px;
    }
    .event-poster-image {
        flex-basis: auto; /* 幅の固定を解除 */
        max-width: 300px; /* 大きくなりすぎないように */
        margin: 0 auto; /* 中央寄せ */
    }
    .event-poster-text .action-buttons {
        justify-content: center; /* ボタンを中央揃えに */
    }
}