/*
 * style.css
 * 株式会社Echelon Labs 共通スタイル
 * 【デザイン案3：固定サイドバー & フルスクリーンメニュー】
 */

/* 1. CSS カスタムプロパティ (変数) */
/* 1. CSS カスタムプロパティ (変数) */
:root {
    --sidebar-width: 250px; /* サイドバーの固定幅 */
    --color-primary: #2c3e50;         /* ディープネイビー (メインカラー) */
    --color-secondary: #34495e;       /* ダークブルー (ホバー/強調) */
    --color-accent: #3498db;          /* モダンブルー (新しいアクセント) */
    --color-background: #efefef;      /* オフホワイト (背景) */
    --color-text-main: #333;          /* 濃いテキスト */
    --color-text-light: #666;         /* 薄いテキスト */
    --font-family-main: 'Helvetica Neue', Arial, sans-serif;
    --spacing-lg: 40px;
    --spacing-md: 20px;
}

/* 2. リセットと基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-main);
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-background);
    scroll-behavior: smooth;
    transition: padding-left 0.3s;
    overflow-x: hidden; /* 横方向のスクロールバーを非表示に */
}

a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent); /* ホバー時の色をアクセントカラーに */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ------------------------------------------------------------------ */
/* 3. レイアウト共通 */
/* ------------------------------------------------------------------ */
.container {
    max-width: 1100px; 
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* メインコンテンツの位置設定 */
main {
    transition: margin-left 0.3s ease;
    /* ★初期状態: margin-left: 0; で画面いっぱいに表示 */
    margin-left: 0; 
}

.section-padding {
    padding: 320px 0;
    /* transition 設定のみを維持 */
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.section-padding2 {
    padding: 200px 0;
    /* transition 設定のみを維持 */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* フェードイン対象にのみ初期状態を適用 */
.fade-in-target {
    opacity: 0;
    transform: translateY(20px);
}

/* フェードインアニメーション用クラス */
.section-padding.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* フェードインアニメーション用クラス */
.section-padding2.is-visible {
    opacity: 1;
    transform: translateY(0);
}


h1, h2, h3 {
    margin-bottom: var(--spacing-md);
    font-weight: bold;
}

h2 {
    font-size: 2.5em;
    text-align: left; /* 左寄せに変更 */
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 15px; /* 下線のために余白を増やす */
    display: inline-block; /* 下線の幅をコンテンツに合わせる */
}

h2::after {
    content: '';
    position: absolute;
    left: 0; /* 左寄せ */
    bottom: 0;
    transform: translateX(0); /* トランスフォームを削除 */
    width: 80px; /* 線幅を長く */
    height: 4px; /* 線を太く */
    background-color: var(--color-accent); /* アクセントカラーを適用 */
}

/* h2の例外スタイル (お問い合わせセクションなど) */
.contact-section h2 {
    color: #fff; /* お問い合わせセクションのh2は白に */
    text-align: center;
}
.contact-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
/* education.htmlの最終CTAセクション */
.center-text-section h2 {
    text-align: center;
}
.center-text-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}


/* 見出しのカラーバリエーション */
.secondary-color-h3 {
    color: var(--color-secondary);
    font-size: 30px;
}
.primary-color-h3 {
    color: var(--color-primary);
    font-size: 30px;
    border-bottom: 1px solid;
}

/* ------------------------------------------------------------------ */
/* 4. ヘッダー (固定サイドバー - PC/共通スタイル) */
/* ------------------------------------------------------------------ */
header {
    width: var(--sidebar-width);
    height: 100vh;
    background-color: var(--color-primary);
    position: fixed;
    top: 0;
    /* ★初期状態: 画面外に隠す */
    left: calc(0px - var(--sidebar-width)); 
    z-index: 1000;
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: left 0.3s ease; /* スムーズなアニメーション */
}

.header-content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    height: 100%;
    width: 100%;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
    padding-top: var(--spacing-md);
    text-align: center;
    width: 100%;
}

nav {
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    color: var(--color-accent);
    background-color: var(--color-secondary);
    border-bottom: none;
}

/* ------------------------------------------------------------------ */
/* ハンバーガーアイコンの固定スタイル (PC/モバイル共通) */
/* ------------------------------------------------------------------ */
.menu-toggle {
    position: fixed; 
    top: var(--spacing-md);
    left: var(--spacing-md);
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 2000; 
}
.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary); /* デフォルトはメインカラー */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* ------------------------------------------------------------------ */
/* PC表示時: サイドバー開閉アニメーション (769px以上) */
/* ------------------------------------------------------------------ */
@media (min-width: 769px) {
    
    /* ★初期状態: main は margin-left: 0; （画面いっぱい）*/
    
    /* サイドバーが開いている状態 (JSで body.is-sidebar-open がトグルされる) */
    body.is-sidebar-open header {
        left: 0; /* サイドバーを表示 */
    }

    /* ★修正点: サイドバーが開いている状態: メインコンテンツを右に押しのける */
    body.is-sidebar-open main {
        margin-left: var(--sidebar-width); 
    }

    /* ハンバーガーメニューの色調整: サイドバーが開いた時、アイコンを白くして見やすく */
    body.is-sidebar-open .menu-toggle .bar {
        background-color: #fff;
    }

    /* ハンバーガーメニューの位置調整: サイドバーが開いたら右に移動 */
    body.is-sidebar-open .menu-toggle {
        left: calc(var(--sidebar-width) + var(--spacing-md));
        transition: left 0.3s ease;
    }
}

/* ------------------------------------------------------------------ */
/* 10. レスポンシブ対応 (モバイルメニュー - 768px以下) */
/* ------------------------------------------------------------------ */
@media (max-width: 768px) {
    /* ... (既存のモバイルCSSはそのまま維持) ... */
    
    /* モバイル時: header はトップバーとして機能（開閉はナビゲーションで処理） */
    header {
        /* ... (既存のモバイルヘッダー固定スタイル) ... */
        z-index: 998;
    }
    
    /* モバイル時: ハンバーガーアイコンの位置を調整 */
    .menu-toggle {
        left: auto;
        right: var(--spacing-md);
        top: var(--spacing-md);
    }
    .logo {
      text-align: left;
      padding-left: 20px;
    }
    /* モバイル時: ナビゲーションメニュー本体 (フルスクリーンメニュー) */
    nav {
        /* フルスクリーンメニューの初期状態は CSS で非表示 (visibility: hidden, opacity: 0) */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(44, 62, 80, 0.98); /* ダークな背景（PCサイドバー色） */
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    /* モバイルメニューが開いている状態 */
    nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        width: 80%;
        gap: 30px;
        flex-direction: column;
        text-align: center;
        /* ★修正点1: ul内の文字色を確実に白にする */
        color: #fff; 
        padding: 0; /* ulのデフォルトパディングをリセット */
    }
    
    nav ul li a {
        font-size: 1.2em;
        padding: 15px;
        /* ★修正点2: aタグの文字色も上書きで確実に白にする */
        color: #fff !important; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    /* ... (その他のモバイルCSSはそのまま維持) ... */
}
/* ------------------------------------------------------------------ */
/* 共通: ハンバーガーアイコン アニメーション */
/* ------------------------------------------------------------------ */
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* PC: ハンバーガーアイコンの色 */
@media (min-width: 769px) {
    /* サイドバーが閉じている時（初期状態）、アイコンは var(--color-primary) */
    .menu-toggle .bar {
        background-color: var(--color-primary);
    }
    /* サイドバーが開いている時、アイコンは白 */
    body.is-sidebar-open .menu-toggle .bar {
        background-color: #16204a;
    }
    /* サイドバーが開いていて、かつアイコンがアクティブ（X印）の時、アイコンは白 */
    body.is-sidebar-open .menu-toggle.is-active .bar {
        background-color: #16204a;
    }
}

/* モバイル: ハンバーガーアイコンの色 */
@media (max-width: 768px) {
    /* モバイル時は常に var(--color-primary) */
    .menu-toggle .bar {
        background-color: var(--color-primary);
    }
    /* モバイルでアイコンがアクティブ（X印）の時も var(--color-primary) */
    .menu-toggle.is-active .bar {
        background-color: var(--color-primary);
    }
}


/* ------------------------------------------------------------------ */
/* 5. フッター */
/* ------------------------------------------------------------------ */
footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.9em;
}

/* ------------------------------------------------------------------ */
/* 10. レスポンシブ対応 (モバイルメニュー) */
/* ------------------------------------------------------------------ */
@media (min-width: 769px) {
    /* ★修正点2: PC表示時、main の左側にサイドバー幅のマージンを設定 */
    main {
        margin-left: 70px;; 
    }
    
    /* body の padding-left は 0 のまま */
    
    /* コンテナの最大幅は維持 */
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    /* モバイル時: body の padding をリセット (現状維持) */
    body {
        padding-left: 0;
    }

    /* モバイル時: header をトップバーに変更 */
    header {
        width: 100%;
        height: auto;
        position: sticky; /* スクロールしても上部に固定 */
        top: 0;
        left: 0;
        padding: 3px;
        background-color: #fff; /* モバイルでは明るいヘッダー */
        flex-direction: row;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        color: var(--color-primary); /* ロゴをメインカラーに戻す */
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    /* ハンバーガーアイコンを有効化 */
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    .menu-toggle .bar {
        background-color: var(--color-primary);
        margin: 5px;
    }

    /* アイコンアニメーション: ×印へ */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #ffffff; /* アイコン色を維持 */
    }
    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #ffffff; /* アイコン色を維持 */
    }
    
    /* モバイル時: main の位置もリセット (現状維持) */
    main {
        margin-left: 0;
    }

    /* ... (他の既存レスポンシブCSSはそのまま維持) ... */
}


/* 6. ボタン共通 */
.btn-primary {
    display: inline-block;
    padding: 12px 60px;
    background-color: #ffca00; /* アクセントカラーを背景に */
    color: #222222;
    border: 2px solid #ffca00;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* 7. index.html 専用スタイル */

/* ヒーローセクション */
.hero-section {
    background: linear-gradient(to top, rgb(0 0 0 / 96%) 0%, rgb(11 194 217 / 70%) 100%), url(./img/link_img01.jpg); /* 背景画像指定 */
    color: #fff; /* 全体の文字色を白に */
    background-position: center;
    text-align: center;
    padding-top: 320px;
    padding-bottom: 320px;
}
.hero-section h1 {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}
.hero-subtext {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 40px;
}
.hero-btn {
    background-color: #ffca00;
    border-color: #ffca00;
}
.hero-btn:hover {
    background-color: #fff;
    color: var(--color-accent);
    border-color: #fff;
}


/* 会社概要セクション */
.about-content {
    display: flex;
    gap: var(--spacing-lg);
}
.about-text {
    flex: 1;
}
.about-visual {
    flex: 0.6;
    min-height: 250px;
}
.text-light-p {
    color: var(--color-text-light);
    line-height: 1.8;
}
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-md);
}
.company-table th, .company-table td {
    text-align: left;
    padding: 10px 0;
}
.company-table th {
    border-bottom: 1px solid var(--color-accent);
    width: 30%;
}
.company-table tr td {
    border-bottom: 1px solid #ffca00;
}


/* 教育概要セクション */
.education-overview-section {
    background-color: #ffffff;
}
.education-overview-inner {
    text-align: center;
}
.education-overview-text {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 60px auto 60px;
    text-align: left;
}

.education-overview-text2 {
    font-size: 1.1em;
    max-width: 800px;
    margin: 60px 0 300px;
    text-align: left;
}
.education-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}
.feature-item {
    width: 30%;
    text-align: center;
    background: #fffdf3;
    border: 2px solid #ffca00;
    border-radius: 10px;
    padding: 60px 30px;
}


/* お問い合わせセクション */
.contact-section {
    background-color: var(--color-primary);
    color: #fff; /* 全体の文字色を白に */
    text-align: center;
}
.contact-subtext {
    font-size: 1.2em;
    margin-bottom: var(--spacing-lg);
}
.contact-btn {
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.contact-btn:hover {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.course_txt{
  margin: 20px 0;
}

/* 8. education.html 専用スタイル */

/* ヒーローセクション */
.education-hero-section {
    background: linear-gradient(to top, rgb(0 0 0 / 96%) 0%, rgb(11 194 217 / 70%) 100%), url(./img/link_img02.jpg); /* 背景画像指定 */
    color: #fff; /* 全体の文字色を白に */
    text-align: center;
}
.education-hero-section2 {
    background: linear-gradient(to top, rgb(0 0 0 / 96%) 0%, rgb(217 188 11 / 70%) 100%), url(./img/link_img04.jpg); /* 背景画像指定 */
    color: #fff; /* 全体の文字色を白に */
    text-align: center;
}
.education-hero-title {
    font-size: 3em;
    margin-bottom: 10px;
}
.education-hero-subtext {
    font-size: 1.1em;
    color: #ffffff;
}

/* カリキュラムセクション */
.curriculum-intro-text {
    text-align: left;
    max-width: 900px;
    margin: 50px auto 80px;
    line-height: 1.8;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.curriculum-item {
    background-color: #fff;
    padding: var(--spacing-md);
    border: 1px solid rgba(189, 195, 199, 0.5);
    border-left: 8px solid #ffca00;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    /* ボタンの位置調整のため */
    display: flex;
    flex-direction: column;
}

.curriculum-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.curriculum-item p {
    color: var(--color-text-light);
    font-size: 0.95em;
    flex-grow: 1; /* 内容が少ないモジュールでもボタンが下に揃うように */
    margin-bottom: var(--spacing-md);
}
.curriculum-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.4em;
}

/* 詳細を見るボタン */
.btn-module-detail {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.btn-module-detail:hover {
    background-color: var(--color-accent);
    color: #fff;
}


/* 研修の強みセクション */
.education-features-section {
    background-color: #ffffff;
}
.education-strengths-grid {
    margin-top: 100px;
    display: flex;
    gap: var(--spacing-lg);
    text-align: left;
    flex-direction: column;
}
.strength-item {
    flex: 1;
}

/* 最後のコールトゥアクションセクション */
.center-text-section {
    text-align: center;
}
.large-h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* 9. ポップアップ (モーダル) スタイル */
.modal {
    /* display: none; は削除し、.modal-hidden クラスで制御します */
    position: fixed;
    z-index: 2000; /* ヘッダーより上に表示 */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒い背景 */
    backdrop-filter: blur(5px); /* 背景をぼかす (モダンなエフェクト) */
}

/* **新規追加**: 初期状態で強制的に非表示にするクラス */
.modal-hidden {
    display: none !important; 
}


.modal-content {
    background-color: #fff;
    margin: 10% auto; /* 上下に10%の余白をとり、中央に配置 */
    padding: var(--spacing-lg);
    border: 1px solid var(--color-accent);
    width: 80%; /* 幅を調整 */
    max-width: 600px; /* 最大幅 */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* ポップアップのアニメーション */
    transform: translateY(-50px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.modal.is-open .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-content h3 {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 10px;
    margin-bottom: var(--spacing-md);
}
.modal-content li {
    padding: 10px 0;
    border-bottom: 1px solid #c5c5c5;
}
.modal-content h4 {
      font-size: 18px;
    padding: 20px 0;
    text-align: end;
}
.modal-content img {
 margin: 0 auto;
}
.modal-content h5 {
    font-size: 20px;
    color: var(--color-primary);
    border-bottom: 1px solid #d1d1d1;
    padding: 10px;
    background: #f7f7f7;
    margin-bottom: var(--spacing-md);
}
.modal-content p {
     margin-bottom: 10px;
}

.modal-note {
    font-size: 0.8em;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
    padding-top: 10px;
    border-top: 1px dashed var(--color-accent);
}

.close-btn {
    color: var(--color-primary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.3s;
}
.close-btn:hover,
.close-btn:focus {
    color: var(--color-accent);
    text-decoration: none;
}


/* 10. レスポンシブ対応 (簡易) */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5em;
        text-align: center;
        margin: 0 auto 40px;
        padding-bottom: 10px;
        display: block;
    }
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-padding {
        padding: 300px 0;
    }
    .section-padding2 {
        padding: 80px 0;
    }

    .header-content {
        justify-content: center; /* モバイル時はロゴを中央に */
    }

    .about-content {
        flex-direction: column;
    }
    .about-visual {
        order: -1; /* ビジュアルを上に移動 */
        margin-bottom: var(--spacing-md);
    }
    .education-features, .education-strengths-grid {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .feature-item, .strength-item {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

.headline01{
    max-width: 940px;
    margin: 130px auto 50px;
}

/* =============================================
- entry_body
================================================ */
/* ... (既存の entry_body スタイルは変更なし) ... */
/* ... (その他のスタイルは変更なし) ... */

/* 研修の流れセクション (Flow Section) */
.flow-section {
    background-color: #ffffff; /* 薄い背景色で区別 */
    text-align: left;
}

.flow-section h2::after {
    left: 11%;
    transform: translateX(-50%);
}

.flow-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* アイテムの上端を揃える */
    gap: 20px; /* アイテム間の余白 */
    flex-wrap: wrap; /* スマホで折り返す */
}

.flow-item {
    flex: 1; /* アイテムが均等な幅になるように */
    min-width: 200px; /* アイテムの最小幅 */
    max-width: 250px; /* アイテムの最大幅 */
    min-height: 390px;
    background-color: #ffffff;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* 控えめな影 */
    text-align: center;
    display: flex; /* 内部をflexboxにしてヘッダーとコンテンツを調整 */
    flex-direction: column;
    align-items: center;
}

.flow-item .step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.flow-item .step-number {
    font-size: 0.9em;
    font-weight: bold;
    color: var(--color-primary); /* ダークグレー */
    background-color: #ffca00; /* 薄いグレーの背景 */
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 15px; /* アイコンとの間に少し余白 */
    letter-spacing: 0.05em;
}

.flow-icon {
    width: 130px;
    height: 130px;
    /* アイコン画像の背景色を元画像に合わせて調整 */
    padding: 10px; /* アイコンと背景の余白 */
    object-fit: contain; /* 画像がはみ出さないように */
}

.flow-item h3 {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.flow-item p {
    font-size: 0.9em;
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1; /* 内容の少ないアイテムでも均等な高さに */
}

.flow-arrow {
    font-size: 1em;
    color: var(--color-primary); /* 矢印の色 */
    align-self: center; /* 中央に配置 */
    padding: 0;
    display: flex;
    align-items: center;
}


/* レスポンシブ対応 (スマートフォン縦表示) */
@media (max-width: 768px) {
    .flow-grid {
        flex-direction: column; /* 縦並びにする */
        gap: 0; /* 縦並びの時はアイテム間のギャップをなくす */
        align-items: center; /* 中央寄せ */
    }

    .flow-item {
        width: 90%; /* スマホでは幅を広めに */
        max-width: 350px; /* 最大幅を設定して大きくなりすぎないように */
        margin-bottom: 20px; /* アイテム下の余白 */
    }

    .flow-arrow {
        transform: rotate(90deg); /* 矢印を90度回転 */
        margin: 10px 0; /* 縦方向の余白 */
    }

    /* 最後の矢印は非表示 */
    .flow-grid .flow-item:last-of-type + .flow-arrow {
        display: none;
    }
}

/* 矢印の調整 (PC時) */
@media (min-width: 769px) {
    .flow-grid .flow-item:last-of-type + .flow-arrow {
        display: none; /* PCで最後の矢印は非表示 */
    }
}
/* 7. index.html 専用スタイル (追加) */

/* ... (既存のindex.html専用スタイル) ... */

/* 受講で身につくスキルセクション (Skills Section) */
.skills-section {
    background-color: #f9f9f9; /* 画像の背景色に近い薄いブルー */
}

/* 中央寄せのセクションタイトル用 */
.section-title-center {
    font-size: 2.2em;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: 10px;
    display: block; /* 中央寄せのためブロック要素に */
}

.section-title-center::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px; /* 線幅を長く */
    height: 3px;
    background-color: var(--color-secondary); /* メインアクセントカラー */
}

.skills-grid {
    display: grid;
    /* PC: 3列均等幅 */
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--spacing-md);
}

.skill-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 250px; /* 高さを揃えるため最小高さを設定 */
    align-items: center;
}

.skill-item h3 {
    font-size: 1.2em;
    color: var(--color-primary);
    /* 画像内の青いBOXに合わせたスタイル */
    background-color: #4c84a8; 
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.skill-item p {
    color: var(--color-text-light);
    font-size: 0.9em;
}

.skill-icon-wrap {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 50%;
    background-color: #fff; 
    border: 2px solid #4c84a8; /* アイコンの外枠 */
}

.skill-icon {
    width: 50px;
    height: 50px;
    /* プレースホルダー画像の色を統一 */
    background-color: #4c84a8; 
    border-radius: 50%; 
    padding: 5px;
    object-fit: contain;
}

/* レスポンシブ対応 (スマートフォン縦表示) */
@media (max-width: 768px) {
    .skills-grid {
        /* スマホ: 1列表示 */
        grid-template-columns: 1fr; 
        gap: var(--spacing-lg);
    }

    .skill-item {
        min-height: auto;
        align-items: center; /* スマホでは中央寄せ */
        text-align: center;
        padding: var(--spacing-lg);
    }
    
    .skill-item h3 {
        width: 100%; /* スマホではヘッダーを横幅いっぱいに */
        text-align: center;
    }
}

/* =============================================
- entry_body
================================================ */
.entry_body {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
}
.entry_body select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: none transparent;
}
.entry_body select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.entry_body ::-ms-expand {
  display: none;
}
.entry_body .requre {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
  padding: 0.4em 0.5em 0.4em 0.5em;
  margin-left: 0.8em;
  background-color: #ff4a4a;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: -0.1em;
}
@media screen and (min-width: 980px) {
  .entry_body .requre {
    font-weight: bold;
  }
}
.entry_body dl {
  margin-bottom: 18px;
}
.entry_body dl dt {
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.entry_body dl + dl {
  margin-top: 25px;
}
.entry_body textarea,
.entry_body input[type="text"],
.entry_body select {
  width: 100%;
  font-size: 16px;
  padding: 0.9em 1em;
  border: 1px solid #b7b7b7;
  border-radius: 0px;
}
.entry_body textarea:-moz-placeholder-shown,
.entry_body input[type="text"]:-moz-placeholder-shown,
.entry_body select:-moz-placeholder-shown {
  color: #999;
}
.entry_body textarea:-ms-input-placeholder,
.entry_body input[type="text"]:-ms-input-placeholder,
.entry_body select:-ms-input-placeholder {
  color: #999;
}
.entry_body textarea:placeholder-shown,
.entry_body input[type="text"]:placeholder-shown,
.entry_body select:placeholder-shown {
  color: #999;
}
.entry_body textarea::-webkit-input-placeholder,
.entry_body input[type="text"]::-webkit-input-placeholder,
.entry_body select::-webkit-input-placeholder {
  color: #999;
}
.entry_body textarea:-moz-placeholder,
.entry_body input[type="text"]:-moz-placeholder,
.entry_body select:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.entry_body textarea::-moz-placeholder,
.entry_body input[type="text"]::-moz-placeholder,
.entry_body select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.entry_body textarea:-ms-input-placeholder,
.entry_body input[type="text"]:-ms-input-placeholder,
.entry_body select:-ms-input-placeholder {
  color: #999;
}
.entry_body textarea:focus,
.entry_body input[type="text"]:focus,
.entry_body select:focus {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.entry_body select.active {
  color: #333333;
}
.entry_body select.active .selectWrap {
  color: #333333;
}
.entry_body .noticeGroup {
  margin-top: 10px;
}
.entry_body .noticeGroup p {
  color: #333333;
  font-size: 13px;
  line-height: 1.6em;
}
.entry_body option:-moz-placeholder-shown {
  color: #333;
}
.entry_body option:-ms-input-placeholder {
  color: #333;
}
.entry_body option:placeholder-shown {
  color: #333;
}
.entry_body option::-webkit-input-placeholder {
  color: #333;
}
.entry_body option:-moz-placeholder {
  color: #333;
  opacity: 1;
}
.entry_body option::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.entry_body option:-ms-input-placeholder {
  color: #333;
}
.entry_body textarea {
  vertical-align: bottom;
  height: 150px;
  padding: 1.3em 1em;
}
.entry_body .selectWrap + .input {
  margin-top: 10px;
}
.entry_body .selectWrap {
  position: relative;
  border-radius: 0px;
  color: #333333;
}
.entry_body .selectWrap:after {
  content: "";
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #b4b4b4;
  border-right: 1px solid #b4b4b4;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3px;
}
.entry_body .selectWrap.address {
  max-width: 200px;
}
.entry_body .postalGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.entry_body .postalGroup .mark {
  display: inline-block;
  padding-right: 5px;
}
.entry_body .postalGroup .line {
  display: inline-block;
  padding: 0px 5px;
}
.entry_body .postalGroup .input {
  width: 70px;
}
.entry_body .postalGroup .input:nth-of-type(2) {
  width: 80px;
}
.entry_body .bottom_area {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .entry_body .bottom_area .text {
    text-align: center;
  }
}
.entry_body .bottom_area .text a {
  color: #1d54a7;
  text-decoration: underline;
}
.entry_body .bottom_area .check_group .horizontal-item {
  text-align: center;
  margin-top: 10px;
}
.entry_body .bottom_area .error {
  display: block;
  text-align: center;
}
.entry_body .bottom_area .box {
  padding: 20px;
  border: 1px solid #333333;
}
.entry_body .bottom_area .box .link {
  text-align: center;
  margin-bottom: 8px;
}
.entry_body .bottom_area .box .link a {
  display: inline-block;
  position: relative;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  padding-right: 15px;
}
@media screen and (min-width: 980px) {
  .entry_body .bottom_area .box .link a {
    font-weight: bold;
  }
}
.entry_body .bottom_area .box .link a:after {
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  width: 6px;
  height: 6px;
  border-color: #333333;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -4px;
  border-width: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.entry_body .btn_area {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .entry_body .btn_area .btn_style01 + .btn_style01 {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .entry_body {
    max-width: 940px;
    margin: 0px auto 100px;
  }
  .entry_body dl {
    margin: 0px;
    padding: 25px 0px;
  }
  .entry_body dl dt {
    margin-bottom: 10px;
  }
  .entry_body dl dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .entry_body dl + dl {
    margin: 0px;
  }
  .entry_body textarea,
  .entry_body input[type="text"] {
    padding: 0.9em 1em;
  }
  .entry_body select {
    padding: 0.9em 1em;
  }
  .entry_body textarea {
    height: 250px;
    padding: 1.2em 1em;
  }
  .entry_body .selectWrap {
    max-width: 500px;
  }
  .entry_body .selectWrap + .input {
    margin-top: 15px;
  }
  .entry_body .btn_area {
    margin-top: 50px;
  }
  .entry_body .addressWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .entry_body .addressWrap .text {
    font-size: 1.5rem;
    line-height: 1.8em;
    margin-left: 20px;
  }
  .entry_body .bottom_area {
    margin-top: 25px;
  }
  .entry_body .bottom_area .check_group {
    text-align: center;
    margin-top: 10px;
  }
  .entry_body .bottom_area .box {
    padding: 30px;
    border: 1px solid #333333;
  }
  .entry_body .bottom_area .box .link {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .entry_body .bottom_area .box .link a {
    padding-right: 15px;
  }
  .entry_body .bottom_area .error_message {
    text-align: center;
  }
  .entry_body .bottom_area .error_message span:before {
    display: none;
  }
  .entry_body .btn_area {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .entry_body .btn_area .btnSend {
    margin-left: 5%;
  }
}
@media screen and (min-width: 980px) {
  .entry_body dl dt {
    font-size: 16px;
    padding-top: 6px;
  }
  .entry_body .bottom_area {
    padding-bottom: 0px;
    margin-top: 100px;
  }
  .entry_body .bottom_area .text {
    text-align: center;
  }
  .entry_body .bottom_area a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .entry_body .bottom_area a:hover {
    color: #333333;
  }
  .entry_body .btn_area {
    margin-top: 70px;
  }
  .entry_body .btn_area .btnSend {
    margin-left: 10%;
  }
}
.check_group .horizontal-item {
  display: block;
}
@media screen and (min-width: 768px) {
  .check_group .horizontal-item {
    margin-right: 20px;
  }
}
@media screen and (min-width: 980px) {
  .check_group .horizontal-item {
    margin-right: 30px;
  }
}
.check_group .horizontal-item + .horizontal-item {
  margin-left: 0px;
}
.check_group label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  padding-left: 23px;
  display: inline-block;
}
.check_group label input[type="checkbox"] {
  display: none;
}
.check_group label input[type="checkbox"] + span {
  display: inline-block;
  font-size: 15px;
  color: #0f0f0f;
}
.check_group label input[type="checkbox"] + span:before,
.check_group label input[type="checkbox"] + span:after {
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.check_group label input[type="checkbox"] + span:before {
  z-index: 0;
  background-color: #fff;
  width: 16px;
  height: 16px;
  border: 1px #e0e0e0 solid;
}
.check_group label input[type="checkbox"] + span:after {
  z-index: 1;
  width: 5px;
  height: 7px;
  opacity: 0;
  margin-left: 6px;
  margin-top: -4px;
}
.check_group label input[type="checkbox"]:checked + span:before {
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}
.check_group label input[type="checkbox"]:checked + span:after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media screen and (min-width: 768px) {
  .check_group label {
    line-height: 20px;
    padding-left: 30px;
  }
  .check_group label input[type="checkbox"] + span {
    font-size: 20px;
  }
  .check_group label input[type="checkbox"] + span:before {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }
  .check_group label input[type="checkbox"] + span:after {
    width: 6px;
    height: 9px;
    margin-left: 7px;
    margin-top: -5px;
  }
}
input[type="file"] {
  display: none;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
}

.upload {
  max-width: 540px;
  position: relative;
}
.upload .label {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #0f0f0f;
  color: #fff;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}
@media screen and (min-width: 980px) {
  .upload .label {
    font-weight: bold;
  }
}

@media screen and (min-width: 768px) {
  .upload .fake_file {
    background-color: rgba(0, 0, 0, 0);
  }
  .upload .label {
    margin-top: 0px;
    position: absolute;
    z-index: -1;
    right: 0px;
    top: 0px;
    height: 100%;
    padding: 0px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
/* =============================================
- error
================================================ */
.error,
.error_message {
  margin-top: 12px;
}
.error span,
.error_message span {
  display: inline-block;
  background-color: #d64141;
  color: #fff;
  padding: 6px 10px;
  line-height: 1em;
  position: relative;
}

form:not(.confirm) .btnBack,
form:not(.confirm) .btnSend {
  display: none;
}

/* =============================================
- mw_wp_form_confirm,.confirm
================================================ */
.mw_wp_form_confirm .entry_head,
.confirm .entry_head {
  display: none;
}
.mw_wp_form_confirm textarea,
.mw_wp_form_confirm input[type="text"],
.mw_wp_form_confirm select,
.confirm textarea,
.confirm input[type="text"],
.confirm select {
  display: none;
}
.mw_wp_form_confirm dl,
.confirm dl {
  padding: 30px 0px;
  border-top: 1px solid #ccc;
}
.mw_wp_form_confirm dl dt,
.confirm dl dt {
  padding-top: 0px !important;
  line-height: 1em;
  font-weight: normal;
  margin-bottom: 20px;
}
.mw_wp_form_confirm dl dd,
.confirm dl dd {
  line-height: 1em;
  font-size: 110%;
  font-weight: 600;
}
@media screen and (min-width: 980px) {
  .mw_wp_form_confirm dl dd,
  .confirm dl dd {
    font-weight: bold;
  }
}
.mw_wp_form_confirm dl dd.textarea,
.confirm dl dd.textarea {
  font-size: 100%;
}
.mw_wp_form_confirm dl:last-of-type,
.confirm dl:last-of-type {
  border-bottom: 1px solid #ccc;
}
.mw_wp_form_confirm .postalGroup .input,
.confirm .postalGroup .input {
  width: 35px;
}
.mw_wp_form_confirm .upload .label,
.confirm .upload .label {
  display: none;
}
.mw_wp_form_confirm .noticeGroup,
.mw_wp_form_confirm .requre,
.mw_wp_form_confirm .btnaddress,
.confirm .noticeGroup,
.confirm .requre,
.confirm .btnaddress {
  display: none;
}
.mw_wp_form_confirm .selectWrap,
.confirm .selectWrap {
  margin-left: 0px;
  color: #474342;
}
.mw_wp_form_confirm .selectWrap:before,
.mw_wp_form_confirm .selectWrap:after,
.confirm .selectWrap:before,
.confirm .selectWrap:after {
  display: none;
}
.mw_wp_form_confirm .btnConfirm,
.confirm .btnConfirm {
  display: none;
}
@media screen and (max-width: 767px) {
  .mw_wp_form_confirm .btnSend,
  .confirm .btnSend {
    margin-top: 25px;
  }
}
.mw_wp_form_confirm .addressWrap .text,
.confirm .addressWrap .text {
  display: none;
}
.mw_wp_form_confirm .bottom_area,
.confirm .bottom_area {
  display: none;
}
.mw_wp_form_confirm .btn_area,
.confirm .btn_area {
  -moz-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .mw_wp_form_confirm dl dt,
  .confirm dl dt {
    font-size: 1.5rem;
  }
}
/* =============================================
- thanksBlock
================================================ */
.thanks_block {
  margin-top: 0px;
  padding: 0px 0px;
}
.thanks_block .titleStyle03 {
  margin-bottom: 30px;
}
.thanks_block .titleStyle03 .title {
  font-size: 18px;
}
.thanks_block .midashi {
  font-size: 16px;
}
.thanks_block .textarea {
  margin-top: 15px;
}
.thanks_block .textarea p + p {
  margin-top: 1.5em;
}
.thanks_block .btn_area {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .thanks_block {
    padding: 0px 0px;
  }
  .thanks_block .midashi03 {
    text-align: center;
  }
  .thanks_block .textarea {
    max-width: 800px;
    margin: 0px auto 0px auto;
  }
  .thanks_block .textarea p {
    font-size: 16px;
    line-height: 2.3em;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .thanks_block .btn_area {
    text-align: center;
    margin-top: 80px;
  }
}
/* =============================================
- BUTTON
================================================ */
.btn_area {
  text-align: center;
}
.btn_area.ar_right {
  text-align: right;
  width: 100%;
}

/* =============================================
- style01
================================================ */
.btn_style01 {
  position: relative;
  display: inline-block;
  color: #b40000;
  padding-right: 50px;
}

.btn_style01 .en,
.btn_style01 .text {
  display: inline-block;
  line-height: 1em;
}
.btn_style01 .en {
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 4.8vw;
  letter-spacing: 0.05em;
  font-style: italic;
}
@media screen and (min-width: 980px) {
  .btn_style01 .en {
    font-weight: bold;
  }
}
.btn_style01 .text {
  padding-left: 4vw;
  font-size: 4.2vw;
}
.btn_style01:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #b40000;
  position: absolute;
  right: 0px;
  top: 50%;
}
.btn_style01:after {
  content: "";
  width: 8px;
  height: 1px;
  background-color: #b40000;
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: 2px;
  -webkit-transform: rotate(35deg) translateX(-100%);
  transform: rotate(35deg) translateX(-100%);
}
.btn_style01.white {
  color: #fff;
}
.btn_style01.white:before {
  background-color: #fff;
}
.btn_style01.white:after {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .btn_style01 {
    padding-right: 55px;
  }
  .btn_style01 .en {
    font-size: 2.7rem;
    position: relative;
    top: 0.1em;
  }
  .btn_style01 .text {
    padding-left: 20px;
    font-size: 1.6rem;
  }
  .btn_style01:before {
    width: 30px;
  }
  .btn_style01:after {
    width: 8px;
    right: -6px;
    margin-top: 2px;
    -webkit-transform: rotate(35deg) translateX(-100%);
    transform: rotate(35deg) translateX(-100%);
  }
}
@media screen and (min-width: 980px) {
  .btn_style01 {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .btn_style01 .en,
  .btn_style01 .text {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .btn_style01:before,
  .btn_style01:after {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .btn_style01:hover {
    color: #1d54a7;
    margin-right: -5px;
  }
  .btn_style01:hover:before,
  .btn_style01:hover:after {
    background-color: #1d54a7;
  }
}
/* =============================================
- style02
================================================ */
.btn_style02 {
  position: relative;
  display: inline-block;
  padding-right: 70px;
}
.btn_style02 .text {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  padding-bottom: 3px;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  margin-top: -13px;
  font-size: 1.3rem;
}
@media screen and (min-width: 980px) {
  .btn_style02 .text {
    font-weight: bold;
  }
}
.btn_style02 .text:after,
.btn_style02 .text:before {
  content: "";
  width: 110px;
  height: 2px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.btn_style02 .text:before {
  width: 110px;
  right: 0px;
  background-color: #fff;
}
.btn_style02 .text:after {
  width: 40px;
  right: 70px;
  background-color: #0d0d0d;
}
.btn_style02 .circle {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
}
.btn_style02.black .text {
  color: #0d0d0d;
}
.btn_style02.black .text:before {
  background-color: #0d0d0d;
}
.btn_style02.black .text:after {
  background-color: #fff;
}
.btn_style02.black .circle {
  background-color: #0d0d0d;
}

@media screen and (min-width: 980px) {
  .btn_style02 .text {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .btn_style02 .text:after,
  .btn_style02 .text:before {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .btn_style02 .circle {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    position: relative;
    right: -1px;
  }
  .btn_style02:hover .circle {
    -webkit-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
  }
}
@media screen and (min-width: 1280px) {
  .btn_style02:hover .circle {
    right: -11px;
    -webkit-transform: scale(2.2, 2.2);
    transform: scale(2.2, 2.2);
  }
}
/* =============================================
- style01
================================================ */
.btn_style03 {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #0d0d0d;
  letter-spacing: 0.05em;
  padding: 1.2em 5px 1.2em 5px;
  border: 1px solid #0d0d0d;
  background-color: #fff;
  width: 100%;
  max-width: 360px;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 980px) {
  .btn_style03 {
    font-weight: bold;
  }
}

@media screen and (min-width: 980px) {
  .btn_style03:hover {
    background-color: #0d0d0d;
    color: #fff;
  }
}

@media (max-width: 768px) {
    .hero-section h1 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
    }
    .hero-subtext {
    font-size: 1em;
    color: #fff;
    margin-bottom: 40px;
    }
    .company-table th {
    border-bottom: 1px solid var(--color-accent);
    width: 38%;
    }
    .text-light-p {
    margin-bottom: 30px;
    }
    .contact-subtext {
    font-size: 1em;
    margin-bottom: var(--spacing-lg);
    }
    .education-hero-title {
    font-size: 2em;
    margin-bottom: 10px;
    }
    .education-hero-subtext {
    font-size: 1em;
    }
    .curriculum-intro-text {
    margin: 50px auto 50px;
    }
    .primary-color-h3 {
    font-size: 25px;
    }
    .education-strengths-grid {
    margin-top: 50px;
    }
    .flow-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    }
}

.corp_ttl{
    font-size: 1.8em;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: bold;
}

.display_flex{
  display: flex;
  justify-content: center;
}

.corp_txt{
    font-size: 18px;
    font-weight: bold;
    background: #4c84a8;
    color: #fff;
    padding: 15px 50px;
    margin: 10px;
    border-radius: 7px;
    
}

.corp_txt2{
  background: #2c3e50;
    color: #fff;
    text-align: center;
    font-size: 32px;
    padding: 20px;
    font-weight: bold;
    margin-top: 40px;
}

.corp_txt3{
  font-size: 55px;
    color: #2c3e50;
    font-weight: bold;
    margin-top: 100px;
    text-align: center;
}

.point_flex{
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: 40px;
}

.point_flex_box{
  width: 480px;
  border: 2px solid #2c3e50;
  border-radius: 8px;
}

.point_flex_ttl{
    background: #2c3e50;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    text-align: center;
}

.point_flex_txt{
    font-size: 16px;
    padding: 15px;
    line-height: 2;
    text-align: center;
}
.text-light-p2{
  font-size: 25px;
    color: #2c3e50;
    font-weight: bold;
    margin: 20px 0;
}
.text-light-ttl{
    font-size: 20px;
    margin: 10px 0;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 2px solid #ebebeb;
}
.flow{
  border-left: 10px solid #2c3e50;
      background: #f9f9f9;
    padding: 15px;
}
.point-number{
  font-size: 35px;
  color: #ffca00;
  font-weight: bold;
}

.money{
    font-size: 36px;
    font-weight: bold;
}

@media (max-width: 768px) {
  .display_flex {
    flex-direction: column;
  }
  .corp_txt {
    font-size: 15px;
    padding: 15px 25px;
  }
  .corp_ttl {
    font-size: 1.3em;
  }
  .corp_txt2 {
    font-size: 22px;
  }
  .corp_txt3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .point-number {
    font-size: 25px;
  }
  .point_flex {
    flex-direction: column;
  }
  .point_flex_box {
    width: auto;
  }
}

/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}

.chat_support{
  display: flex;
  align-items: center;
  margin-top: 100px;
  border-radius: 10px;
  background: #fff;
  border-radius: 10px;
}
.chat_img{
  width: 250px;
  padding: 30px;
}
.support_txarea{
  margin-left: 20px;
}
.support_ttl{
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
}

.support_text{
  margin-top: 20px;
    line-height: 1.8;
}
@media screen and (max-width:768px) {
  .chat_support {
        flex-direction: column;
  }
  .support_ttl {
    font-size: 22px;
    text-align: center;
  }
  .support_txarea {
    margin: 20px;
  }
}