@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  template_c2.css
 style info :  corporate No.2 用の cssの定義
=================================================================== */
/*-----------------------------------------------------------------

common 共通

-----------------------------------------------------------------*/

/* p タグのフォントサイズ（PC: 50%大きく、モバイル: 20%大きく） */
p {
    font-size: 1.5em;
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    p {
        font-size: 1.2em;
    }
}

/* 記事の幅設定 */
.article-wrapper{
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%; /* スマートフォン用に100%幅に変更 */
}

#archive {
    margin-bottom: 24px; /* お好みでpx数を調整 */
}

/* ウェビナー一覧コンテナ */
.webinar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* ウェビナーアイテム */
.webinar-item {
    width: 100%;
    margin-bottom: 20px;
}

/* ウェビナー終了テキストのスタイル */
.webinar-ended-text {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
    padding: 12px 20px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

/* ウェビナーセクションタイトル */
.webinar-section-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    border-bottom: 2px solid #343579;
    padding-bottom: 10px;
}

/* 終了済みウェビナーの見出し */
.webinar-section-title-ended {
    border-bottom: 2px solid #343579;
}

/* 今後のウェビナーコンテナ */
.upcoming-webinar-container {
    margin: 20px 0;
}

/* 今後のウェビナーアイテム */
.upcoming-webinar-item {
    width: 100%;
    margin-bottom: 20px;
}

/* ウェビナー個別調整 */
.webinar-speaker-small {
    font-size: 90%;
}

/* スマートフォン表示時の今後のウェビナーレイアウト */
@media screen and (max-width: 767px) {
    .upcoming-webinar-item .col2_m {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .upcoming-webinar-item .col2_m .col {
        width: 100%;
    }
}

/* PC表示時（画面幅が768px以上の場合） */
@media screen and (min-width: 768px) {
    .article-wrapper { /* クラス名のタイプミスを修正 */
        width: 900px; /* PC用に固定幅900pxに設定 */
        max-width: 900px;
    }
    
    /* ウェビナー一覧を横並びに変更 */
    .webinar-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
        max-width: 100%;
        margin: 20px auto;
    }
    
    /* 各ウェビナーアイテムの幅を調整 */
    .webinar-item {
        width: calc((100% - 30px) / 3);
        margin-bottom: 0;
    }
    
    /* 今後のウェビナーの横並びレイアウト - layout.cssの既存スタイルを上書き */
    .upcoming-webinar-item .col2_m {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px;
        align-items: flex-start;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .upcoming-webinar-item .col2_m .col {
        flex: 1;
        box-sizing: border-box;
        width: auto !important;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .upcoming-webinar-item .col2_m .col:first-child {
        flex: 0 0 50% !important;
        max-width: 50%;
    }
    
    .upcoming-webinar-item .col2_m .col:last-child {
        flex: 0 0 50% !important;
        max-width: 50%;
    }
    
    /* 今後のウェビナーの画像調整 */
    .upcoming-webinar-item .col2_m .col figure {
        width: 100%;
        margin-bottom: 0;
    }
    
    .upcoming-webinar-item .col2_m .col figure img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }
}

/* タブレット表示時（画面幅が768px以上1024px未満の場合） */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .webinar-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .webinar-item {
        width: calc((100% - 15px) / 2);
    }
}

/* PC表示時のウェビナー内部レイアウト調整 */
@media screen and (min-width: 1024px) {
    /* ウェビナー内の要素を縦並びに配置 */
    .webinar-item .dlb_inner {
        display: flex;
        flex-direction: column;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    /* サムネイル画像のスタイル調整 */
    .webinar-item .dlb_inner figure {
        width: 100%;
        margin-bottom: 15px;
        padding: 0;
    }
    
    .webinar-item .dlb_inner figure img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }
    
    /* タイトル部分のスタイル調整 */
    .webinar-item .dlb_inner .ttl_link {
        margin-bottom: 8px;
    }
    
    .webinar-item .dlb_inner h3 {
        margin-bottom: 10px;
    }
    
    /* テキスト部分のパディング調整 */
    .webinar-item .dlb_inner p {
        margin: 15px 0;
        padding: 0;
    }
    
    /* 終了テキストの配置調整 */
    .webinar-item .dlb_inner .mt30 {
        margin-top: 20px;
        text-align: center;
        padding: 0;
    }
    
    /* ウェビナー終了テキストの幅を統一 */
    .webinar-item .webinar-ended-text {
        width: 100%;
        box-sizing: border-box;
    }
}

/*-----------------------------------------------------------------

ヒーローセクション - Shape the Future of Education

-----------------------------------------------------------------*/

/* ヒーローセクション全体 */
.educators-hero {
    position: relative;
    overflow: hidden;
    background: #9196FF;
    padding: 60px 0;
    color: #000000; /* ブランドガイドライン準拠: Black on Periwinkle */
}

/* ヒーローセクションコンテナ（10カラム幅） */
.educators-hero-container {
    width: 83.33%;
    max-width: 83.33%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

/* ヒーローセクション左側（画像） */
.educators-hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.educators-hero-left img {
    width: 100%;
    height: auto;
    display: block;
}

/* ヒーローセクション右側（画像） */
.educators-hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.educators-hero-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* ヒーローボタン共通スタイル */
.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

/* プライマリーボタン */
.hero-btn-primary {
    background: #ffffff;
    color: #0066cc;
}

.hero-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* セカンダリーボタン */
.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* スマートフォン表示時のヒーローセクション */
@media screen and (max-width: 768px) {
    .educators-hero {
        padding: 40px 0;
    }
    
    .educators-hero-container {
        width: 90%;
        max-width: 90%;
        flex-direction: column;
        gap: 30px;
    }
    
    .educators-hero-left,
    .educators-hero-right {
        flex: 1;
        width: 100%;
    }
    
    .educators-hero-left img,
    .educators-hero-right img {
        width: 100%;
        height: auto;
    }
}

/*-----------------------------------------------------------------

区切り線

-----------------------------------------------------------------*/

/* ウェビナー区切り線 */
.webinar-divider {
    border: none;
    border-top: 1px solid #808080;
    margin: 1em 0;
}

/*-----------------------------------------------------------------

TOPプログラム用スタイル

-----------------------------------------------------------------*/

/* 固定ヘッダー分の余白をbodyから削除（hero-sectionがヘッダーの直下に配置される） */
body:has(.hero-section):has(.custom-header) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

@media only screen and (max-width: 979px) {
    body:has(.hero-section):has(.custom-header) {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

@media only screen and (max-width: 690px) {
    body:has(.hero-section):has(.custom-header) {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* ヒーローセクション */
.hero-section {
    background: #9196FF;
    color: #000000; /* ブランドガイドライン準拠: Black on Periwinkle */
    margin-top: 0 !important;
    padding-top: 100px; /* PC用ヘッダー高さ分 */
    padding-bottom: 10px; /* 20px → 10px に縮小 */
    text-align: center;
    overflow-x: hidden;
}

/* タブレット用（979px以下） */
@media only screen and (max-width: 979px) {
    .hero-section {
        margin-top: 0 !important;
        padding-top: 50px; /* タブレット用ヘッダー高さ分 */
        padding-bottom: 10px; /* 20px → 10px に縮小 */
    }
}

/* モバイル用（690px以下） */
@media only screen and (max-width: 690px) {
    .hero-section {
        margin-top: 0 !important;
        padding-top: 40px; /* モバイル用ヘッダー高さ分 */
        padding-bottom: 8px; /* 15px → 8px に縮小 */
    }
}

.hero-title {
    font-size: 5em;
    font-weight: 900;
    margin-bottom: 30px;
}

.hero-visual {
    position: relative;
    margin: 40px auto;
    padding: 0;
    box-sizing: border-box;
    max-width: 800px;
}

/* 2つの画像を横並びにするレイアウト */
.hero-visual.hero-visual-dual {
    max-width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end; /* 下辺を揃える */
    gap: 0; /* 隙間なし */
}

.hero-visual.hero-visual-dual figure {
    flex: 1;
    max-width: 50%;
    margin: 0;
}

/* 右側の画像を1px左に重ねる */
.hero-visual.hero-visual-dual .hero-img-right {
    margin-left: -1px;
}

.hero-visual.hero-visual-dual img {
    width: 100%;
    height: auto;
    display: block;
}

/* モバイル */
@media screen and (max-width: 768px) {
    .hero-visual.hero-visual-dual {
        max-width: 100%;
    }
    
    /* 左側の画像を非表示 */
    .hero-visual.hero-visual-dual .hero-img-left {
        display: none;
    }
    
    .hero-visual.hero-visual-dual .hero-img-right {
        max-width: 100%;
        margin-left: 0;
    }
}

.hero-visual figure {
    margin: 0;
    width: 100%;
}

.hero-visual img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* CTAボタン */
.cta-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: #FF8F60;
    color: #000000; /* ブランドガイドライン準拠: Black on Highlighter Orange */
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    margin-bottom: 20px; /* 下の余白を追加 */
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #e67d4d;
}

/* セクション共通 */
.section {
    padding: 60px 0;
}

/* 全セクションのマージンを統一（common.cssの margin: 100px auto を上書き） */
.section#overview,
.section#schools,
.section#features,
.section#faq,
.section#contact {
    margin: 0 auto !important;
}

.section#overview {
    padding: 20px 0 40px 0;
    background: #ffffff;
}

.section#features {
    background: #F5F5F5; /* 4%グレー */
}

.section#faq {
    background: #ffffff; /* 白背景 */
}

.section#contact {
    background: #F5F5F5; /* 4%グレー */
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    font-size: 4em;
    font-weight: 900;
    color: #000000;
    margin-top: 0; /* ブラウザのデフォルトマージンを削除 */
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #9196FF;
    padding-bottom: 15px;
}

.section-description {
    font-size: 1.2em;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ステージ画像 */
.stages-image {
    margin-top: 40px;
    text-align: center;
}

.stages-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* h2要素全般のスタイル */
h2 {
    font-size: 4em;
    font-weight: 900;
    color: #000000;
}

/* 概要テキスト */
.overview-text {
    font-size: 0.95em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    background: #f0f0f0;
    padding: 30px 40px;
    border-radius: 8px;
}

/* ステージセクション */
.stage-section {
    margin-bottom: 40px;
}

.stage-heading {
    font-size: 1.8em;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    border-bottom: 3px solid #000000;
    color: #000000;
    background: none;
}

.stage-heading-3 {
    /* 統一スタイル - 下線は黒 */
}

.stage-heading-2 {
    /* 統一スタイル - 下線は黒 */
}

.stage-heading-1 {
    /* 統一スタイル - 下線は黒 */
}

/* 学校グリッド共通 */
.school-grid {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

/* STAGE 3 - 大きめ表示（画像付き） */
.school-grid-stage3 {
    grid-template-columns: repeat(2, 1fr);
}

.school-item-large {
    background: linear-gradient(135deg, #f0f1ff 0%, #e6e8ff 100%);
    border: 3px solid #343579;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(52, 53, 121, 0.2);
}

.school-item-large .school-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    overflow: hidden;
}

.school-item-large .school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.school-item-large .school-info {
    padding: 20px;
    text-align: center;
}

.school-item-large h4 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.school-badge {
    display: inline-block;
    background: #343579;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: bold;
}

/* STAGE 2 - 中サイズ表示 */
.school-grid-stage2 {
    grid-template-columns: repeat(4, 1fr);
}

.school-item-medium {
    background: linear-gradient(135deg, #f0f1ff 0%, #e6e8ff 100%);
    border: 2px solid #343579;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(52, 53, 121, 0.15);
}

.school-item-medium h4 {
    font-size: 1.1em;
    color: #333;
    margin: 0;
}

/* STAGE 1 - コンパクト表示 */
.school-grid-stage1 {
    grid-template-columns: repeat(4, 1fr);
}

.school-item-small {
    background: #ffffff;
    border: 1px solid #343579;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(52, 53, 121, 0.1);
}

.school-item-small h4 {
    font-size: 1em;
    color: #333;
    margin: 0;
}

/* カテゴリ見出し（大学・高校） */
.school-category {
    font-size: 1.2em;
    font-weight: bold;
    color: #343579;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #343579;
}

/* 特徴グリッド */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #343579; /* ブランドガイドライン準拠: Duskwinkle on White */
    font-size: 1.3em;
    margin-bottom: 15px;
}

.feature-item ul {
    list-style: none;
    padding: 0;
}

.feature-item li:before {
    content: "✓ ";
    color: #FF8F60; /* ハイライトオレンジ */
    font-weight: bold;
    font-size: 1.3em; /* 少し大きく */
    margin-right: 8px;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    color: #343579; /* ブランドガイドライン準拠: Duskwinkle on White */
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.faq-question:before {
    content: "Q: ";
    color: #FF8F60;
}

.faq-answer {
    color: #333;
    line-height: 1.6;
}

.faq-answer:before {
    content: "A: ";
    color: #343579; /* ブランドガイドライン準拠: Duskwinkle on White */
    font-weight: bold;
}

/* お問い合わせボックス */
.contact-box {
    background: white;
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-info {
    font-size: 1.1em;
    line-height: 2;
    margin: 20px 0;
}

.contact-info strong {
    color: #343579; /* ブランドガイドライン準拠: Duskwinkle on White */
}

/* 詳細注釈 */
.detail-note {
    background: #f0f0f0;
    border-left: 4px solid #FF8F60;
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 4px;
    text-align: center;
}

.detail-note strong {
    color: #FF8F60;
}

/* ヒーローセクション追加スタイル */
.hero-subtitle {
    font-size: 1.2em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.hero-visual-text {
    font-size: 1.2em;
}

/* 参加校セクション追加スタイル */
.school-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.school-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #666;
}

/* お問い合わせセクション追加スタイル */
.contact-intro {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.contact-email-link {
    color: #343579; /* ブランドガイドライン準拠: Duskwinkle on White */
    text-decoration: underline;
}

.contact-note {
    margin-top: 30px;
    color: #666;
    font-size: 0.9em;
}

/* フッタースペーサー */
.footer-spacer {
    height: 50px;
    background: #f8f9fa;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    /* .hero-section の margin-top と padding は 405-417行目で設定 */
    
    .hero-title {
        font-size: 3.6em;
    }
    
    .hero-visual {
        position: relative;
        max-width: 100%;
        margin: 40px auto;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 3em;
    }
    
    h2 {
        font-size: 3em;
        font-weight: 900;
    }
    
    .school-grid {
        grid-template-columns: 1fr;
    }
    
    .school-grid-stage3 {
        grid-template-columns: 1fr;
    }
    
    .school-grid-stage2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .school-grid-stage1 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stage-heading {
        font-size: 1.4em;
        padding: 8px 0;
        border-bottom: 2px solid #000000;
    }
    
    .school-item.stage3 {
        grid-column: span 1;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ハンバーガーメニューアイコン（Font Awesome不使用） */
.btn_menu {
    display: flex;
    align-items: center;
    gap: 8px; /* アイコンとテキストの間隔 */
}

/* 3本線アイコン */
.menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 18px;
    height: 14px;
    flex-shrink: 0;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.menu-icon::before {
    box-shadow: 0 6px 0 #fff; /* 中央の線 */
}