2026年8月24日(月)|ICT活用・HP更新情報

【学校DX】生成AI「Gemini」と協働!トップページの行事予定表を毎月スムーズに更新しています

本校のホームページ運用では、業務効率化と魅力的な情報発信を目指し、最先端の生成AIである「Gemini(ジェミニ)」を導入しています。現在掲載されている多くの記事やソースコードは、教職員とAIがアイデアを出し合う共同作業によって作成されています。

AIへの指示(プロンプト)のくふう

例えば、トップページに掲載している「月別行事予定表」の更新作業では、配布用のPDFファイル(例:〇月行事予定表.pdf)を直接Geminiに読み込ませ、次のような明確な指示を与えることで、正確なHTMLソースコードを瞬時に出力させています。

【Geminiへの実際の指示内容】

以下のソースコードは、2か月分の行事予定表を掲載しているものです。添付したPDFファイルの内容(祝日、学校閉庁日、行事予定など)をもとに、予定表を更新してください。

  • 現在掲載している2か月分のうち、上段の古い月を削除してください。
  • 現在の下段の月を上段に移してください。
  • 添付したPDF(新しい月)の行事予定を、下段に追加してください。
  • 更新後も、常に「上段=古い月、下段=新しい月」の2か月分を表示してください。
  • 月ごとに枠や見出しの色を変え、区別しやすくしてください。
  • 文字サイズ、表の幅、レイアウト、全体の雰囲気は、現在のソースコードと同じような感じにしてください。
  • PDFに記載されている行事名や日付を正確に反映してください。
  • 完成したHTMLソースコード全体を、そのままコピーして使用できる形で出力してください。
▶ 指示の際に添付している「現在のソースコード(全文)」を見る(クリックで開閉)
<!-- スタイル定義(ホバー時のアニメーションや基本影) -->
<style><!--
.calendar-card {
    max-width: 240px;
    margin: 0 auto 12px auto; /* 下マージンを12pxに調整して間隔を短縮 */
    font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
    font-size: 11px;
    line-height: 1.3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.calendar-table tr {
    transition: background-color 0.2s ease;
}
/* 通常行のホバー効果 */
.calendar-table tbody tr:hover {
    background-color: #f1f5f9 !important;
}
--></style>
<!-- ==================== 7月行事予定表(ブルー系) ==================== -->
<div class="calendar-card" style="border: 1px solid #90caf9;">
<div style="background-color: #e3f2fd; padding: 5px 4px 3px 4px; border-bottom: 2px solid #1976d2;">
<p style="margin: 0 0 2px 0; font-size: 9px; color: #d32f2f; font-weight: bold; text-align: center;">※ラーケーション(体験活動)実施不可(黄色)</p>
<h3 style="margin: 0; font-size: 13px; text-align: center; color: #0d47a1; font-weight: bold;">7月行事予定表</h3>
</div>
<table class="calendar-table">
<thead>
<tr style="background-color: #1976d2; color: #ffffff; text-align: center; font-size: 11px;">
<th style="width: 22px; border: 1px solid #bbdefb; padding: 3px 0;">日</th>
<th style="width: 22px; border: 1px solid #bbdefb; padding: 3px 0;">曜</th>
<th style="border: 1px solid #bbdefb; padding: 3px 4px;">行事</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">1</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">求人票受付開始<br />SC⑧</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">2</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">熟練技能士による授業<br />(農と食科3年都市園芸コース 農場AM)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">3</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">4</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">5</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">6</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">1年生農場体験<br />総合学力記述模試(1〜3年希望者)放課後</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">7</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">総合学力記述模試(1〜3年希望者)放課後</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">8</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">総合学力記述模試(1〜3年希望者)放課後</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">9</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">会社見学届一次〆切(3年就職)<br />SC⑨<br />総合学力記述模試(1〜3年希望者)放課後<br />熟練技能士による授業<br />(農と食科3年都市園芸コース 農場AM)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">10</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">総合学力記述模試(1〜3年希望者)放課後</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">11</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">12</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #ffff00;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">13</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">14</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">15</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">公務員課外④<br />バイパス清掃A</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">16</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">熟練技能士による授業<br />(農と食科3年都市園芸コース 農場AM)</td>
</tr>
<tr style="background-color: #ffff00;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">17</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px; font-weight: bold;">終業式</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">18</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">19</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">20</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;"><strong>海の日</strong><br />三者面談(1年)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">21</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">夏季休業開始<br />会社見学開始(3年就職)<br />三者面談(1年)<br />文学散歩</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">22</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">三者面談(1年)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">23</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">三者面談(1年)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">24</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">農ク県大会(発表会・競技会)</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">25</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;"><strong>第1回学校説明会</strong></td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">26</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">27</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">7/25分振替</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">28</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">29</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">30</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">31</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
</tbody>
</table>
</div>
<!-- ==================== 8月行事予定表(オレンジ系) ==================== -->
<div class="calendar-card" style="border: 1px solid #ffcc80;">
<div style="background-color: #fff3e0; padding: 5px 4px 3px 4px; border-bottom: 2px solid #f57c00;">
<p style="margin: 0 0 2px 0; font-size: 9px; color: #d32f2f; font-weight: bold; text-align: center;">※ラーケーション(体験活動)実施不可(黄色)</p>
<h3 style="margin: 0; font-size: 13px; text-align: center; color: #e65100; font-weight: bold;">8月行事予定表</h3>
</div>
<table class="calendar-table">
<thead>
<tr style="background-color: #f57c00; color: #ffffff; text-align: center; font-size: 11px;">
<th style="width: 22px; border: 1px solid #ffe0b2; padding: 3px 0;">日</th>
<th style="width: 22px; border: 1px solid #ffe0b2; padding: 3px 0;">曜</th>
<th style="border: 1px solid #ffe0b2; padding: 3px 4px;">行事</th>
</tr>
</thead>
<tbody>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">1</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">2</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">3</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">インターンシップ<br />PTA研修委員会</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">4</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">インターンシップ</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">5</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">就職試験応募先届〆切(3年就職)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">6</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">小型車両系建設機械①<br />(本校:農と食科2〜3年)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">7</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">小型車両系建設機械②<br />(農場:農と食科2〜3年)</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">8</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">9</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">10</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">11</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;"><strong>山の日</strong></td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">12</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">学校閉庁日</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">13</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">学校閉庁日</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">14</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">学校閉庁日</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">15</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">16</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">17</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">推薦入試説明会(3年進学)9:00〜</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">18</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">インターンシップ<br />梨収穫実習(2年)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">19</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">インターンシップ</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">20</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">農ク関東大会(栃木県)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">21</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">農ク関東大会(栃木県)<br />就職応募書類〆切(3年就職)</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">22</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">23</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #ffff00;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">24</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">就職外部指導模擬面接①(3年)</td>
</tr>
<tr style="background-color: #ffff00;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">25</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">火</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">就職外部指導模擬面接②(3年)</td>
</tr>
<tr style="background-color: #ffff00;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">26</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; font-weight: bold;">水</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">就職外部指導模擬面接③(3年)</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">27</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">木</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">28</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">金</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #f0f7ff;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">29</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #1976d2; font-weight: bold;">土</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr style="background-color: #fff5f5;">
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">30</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0; color: #d32f2f; font-weight: bold;">日</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
<tr>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">31</td>
<td style="text-align: center; border: 1px solid #e0e0e0; padding: 3px 0;">月</td>
<td style="border: 1px solid #e0e0e0; padding: 3px 4px;">&nbsp;</td>
</tr>
</tbody>
</table>
</div>
<p style="text-align: center; margin: 12px 0 0 0;"><span style="font-size: 12pt;"> <strong> <a style="color: #00512b; text-decoration: none; border-bottom: 2px solid #00512b; padding-bottom: 2px;" href="https://www.bandoseifu-h.ibk.ed.jp/wysiwyg/file/download/1/5475" target="_blank" rel="noopener noreferrer">年間行事予定</a> </strong> </span></p>

このように人間が方向性やルールを正確に指定し、AIが迅速にコードを構築することで、スピーディーかつ正確な情報更新が可能となっています。

Smart School Work

「AI技術を活用し、わかりやすく旬な情報をお届けします。」

最新テクノロジーを効率的に取り入れることで、生徒たちの活動の様子や必要な学校情報を、より早く・美しく皆様にお伝えできるよう取り組んでいます。新しくなった行事予定表もぜひチェックしてみてください!