    <style>
        /* --- 全体ベース --- */
        body {
            font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", serif;
            line-height: 1.8;
            margin: 0;
            padding: 0;
            color: #444;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --- ヘッダー・ナビゲーション --- */
        header {
            background-color: #FFFFFF;
            width: 100%;
            position: relative;
            z-index: 100;
            border-bottom: 2px solid #330000;
            margin-bottom: 5px;
        }

        .header-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            box-sizing: border-box;
            height: 42px;
        }

        .logo-area img {
            height: 30px;
            width: auto;
            display: block;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
        }
        nav ul li {
            position: relative;
            border-left: 1px solid #f0f0f0;
        }
        nav ul li:first-child { border-left: none; }

        nav ul li a {
            display: block;
            padding: 0 15px;
            line-height: 42px;
            text-decoration: none;
            color: #330000;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        nav ul li a:hover { background-color: #f9f9f9; }

        .btn-red { background-color: #e63946 !important; color: #ffffff !important; }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #FFFFFF;
            min-width: 200px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 101;
            text-align: left;
            border: 1px solid #eeeeee;
        }
        .dropdown-menu li { border: none; border-bottom: 1px solid #f9f9f9; width: 100%; }
        .dropdown-menu li a { color: #330000; padding: 10px 15px; line-height: 1.5; font-size: 11px; background-color: transparent !important; }
        .dropdown-menu li a:hover { background-color: #f5f5f5 !important; }
        li:hover > .dropdown-menu { display: block; }

        /* --- メインビジュアル --- */
        .main-visual {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            height: 350px;
            position: relative;
            overflow: hidden;
        }
        .main-visual img { width: 100%; height: 100%; object-fit: cover; }
        .main-visual-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            text-align: center;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        .main-visual-text h1 { font-size: 32px; margin: 0; letter-spacing: 0.1em; }
        .main-visual-text p { font-size: 18px; margin-top: 10px; font-weight: bold; }

/* ===== privacy ===== */
.front .privacy {
  padding: 45px 0;
  background-color: #f1f1f1;
}

.front .privacy > div {
  width:100%;
  max-width: 1000px;
  margin: 0 auto;
}

#contents .front .privacy h4 {
  font-size: 1.5rem;
}


/* ===== セクション共通 ===== */
.section{
    padding:30px 20px;
    text-align:center;
}

.section-title{
    font-size:1.8rem;
    margin-bottom:40px;
    color:#222;
}

/* ===== カードレイアウト ===== */
.card-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.card{
    width:250px;
    padding:30px 20px;
    border-radius:10px;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* 研修ごとの色分け（ご希望仕様） */
.card-green{
    border-top:5px solid #2e8b57;
}

.card-gold{
    border-top:5px solid #c9a227;
}

.card-brown{
    border-top:5px solid #8b5a2b;
}

.card h3{
    margin-bottom:15px;
    font-size:1.3rem;
}

.card p{
    font-size:0.95rem;
    margin-bottom:20px;
}

        /* --- コンテンツ共通エリア --- */
        .main-content { flex: 1; }
        .content-area {
            max-width: 1000px; /* ここで幅を統一しています */
            margin: 30px auto;
            padding: 0 20px;
            box-sizing: border-box;
        }
        h2 { border-bottom: 2px solid #FFCCCC; padding-bottom: 8px; color: #b35959; font-size: 20px; }

        /* 個人情報セクションの調整 */
        .privacy ol { padding-left: 20px; }
        .privacy li { margin-bottom: 20px; list-style-type: decimal; }
        .privacy h5 { font-size: 16px; margin: 0 0 5px 0; color: #330000; }
        .privacy p { font-size: 14px; margin: 0; line-height: 1.6; }

.schedule-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.section-title {
    text-align: center;
    border-bottom: 2px solid #0055a1; /* JTOのイメージカラーに合わせる */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* スクロール対応（スマホ対策） */
.calendar-wrapper {
    overflow-x: auto;
}

.calendar-table {
    width: 100%;
    min-width: 600px; /* スマホで潰れすぎないように設定 */
    border-collapse: collapse;
    table-layout: fixed;
}

.calendar-table th, .calendar-table td {
    border: 1px solid #ccc;
    text-align: left;
    vertical-align: top;
    padding: 5px;
    height: 80px;
}

.calendar-table th {
    background-color: #f8f8f8;
    text-align: center;
    height: auto;
}

/* 講習ラベル（イベント）の基本設定 */
.event {
    display: block;
    font-size: 11px;
    margin-top: 4px;
    padding: 2px 4px;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
    line-height: 1.2;
}

/* 8つの色分け設定 */
.cat1 { background-color: #e74c3c; } /* 赤 */
.cat2 { background-color: #3498db; } /* 青 */
.cat3 { background-color: #2ecc71; } /* 緑 */
.cat4 { background-color: #f1c40f; } /* 黄 */
.cat5 { background-color: #9b59b6; } /* 紫 */
.cat6 { background-color: #e67e22; } /* オレンジ */
.cat7 { background-color: #1abc9c; } /* ターコイズ */
.cat8 { background-color: #34495e; } /* ネイビー */

/* 凡例（色ガイド）のスタイル */
.legend-container {
    margin-top: 20px;
    background: #fdfdfd;
    padding: 15px;
    border: 1px solid #eee;
}

.legend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.l-item {
    font-size: 13px;
    display: flex;
    align-items: center;
}

.chip {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 6px;
    border-radius: 2px;
    }
    /* カレンダーを囲む枠の設定 */
.calendar-wrapper {
    width: 100%;           /* 親要素（画面幅）いっぱいに広げる */
    overflow-x: auto;      /* 横方向にはみ出した場合のみスクロールバーを出す */
    -webkit-overflow-scrolling: touch; /* スマホで滑らかにスクロールさせる */
    border: 1px solid #ddd; /* 枠線で見やすくする */
    margin-bottom: 10px;
}

/* カレンダー本体の設定 */
.calendar-table {
    width: 100%;
    min-width: 800px;      /* ★重要：これ以下の幅には縮まないように設定 */
    border-collapse: collapse;
    table-layout: fixed;   /* セルの幅を固定にする */
}

/* スクロールバー自体のデザイン（任意：より見やすくする場合） */
.calendar-wrapper::-webkit-scrollbar {
    height: 8px;           /* バーの高さ */
}
.calendar-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;      /* バーの色 */
    border-radius: 4px;    /* 角丸 */
}
.calendar-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;   /* バーの通り道の色 */
}

        /* --- フッター --- */
        footer {
            background-color: #330000;
            color: #FFFFCC;
            padding: 30px 20px 15px;
            margin-top: 50px;
            font-family: inherit; 
        }
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-logo { font-size: 18px; font-weight: bold; color: #FFFFCC; margin-bottom: 8px; }
        .footer-address { font-size: 14px; font-style: normal; line-height: 1.8; }
        .footer-nav { list-style: none; padding: 0; margin: 0; display: flex; gap: 20px; }
        .footer-nav a { color: #FFFFCC; text-decoration: none; font-size: 14px; }
        .copyright {
            width: 100%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 204, 0.2);
            margin-top: 25px;
            padding-top: 15px;
            font-size: 12px;
            color: rgba(255, 255, 204, 0.6);
        }

        @media screen and (max-width: 900px) {
            .header-inner { flex-direction: column; height: auto; padding: 10px; }
            .logo-area { margin-bottom: 10px; }
            nav ul li a { line-height: 35px; padding: 0 10px; font-size: 11px; }
            .dropdown-menu { position: static; width: 100%; box-shadow: none; border: none; }
        }
.main-visual-text h1,
.main-visual-text p {
    font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
}
/* ===== スマホ対応（レスポンシブ） ===== */
@media screen and (max-width: 768px) {

    /* ヘッダー */
    .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-area img {
        max-width: 200px;
        height: auto;
    }

    /* ナビメニューを縦並び */
    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }
    </style>