.price-area {
    max-width:800px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.price-area-outer {
    justify-content: center;
}


/* テーブルの背景色を１コ目白、３個目黄色にする */
div.zpelement.zpelem-table.schedule > div > table > tbody > tr:nth-child(1) > th:nth-child(1){
    background-color: #ffffff !important;   
}
div.zpelement.zpelem-table.schedule > div > table > tbody > tr:nth-child(1) > th:nth-child(3){
    background-color: #fec020 !important;;   
}

/* 視察先企業名部分SP調整用 */
@media (max-width: 767px) {
.saki > div > div > div.zpelement.zpelem-heading,.saki > div > div > div.zpelement.zpelem-text {
    margin-top: 10px;
}
}

/* ########### SPの場合、テーブルの横幅をデバイス横幅までにするここから ########### */
@media (max-width: 767px) {
  /* 外側のコンテナの横スクロールを禁止し、幅を100%に固定 */
  .zptable,
  .zptable table {
    width: 100% !important;
    table-layout: fixed;
  }

  /* HTML側で指定されている「width: 48.1047%」などの固定値を無効化 */
  .zptable table th,
  .zptable table td {
    width: auto !important; /* 画面幅に合わせて自動調整 */
    word-break: break-all;  /* 英語の長文なども強制改行して枠外へのはみ出しを防ぐ */
    padding: 8px 4px !important; /* 余白を少し狭くして表示領域を確保 */
    font-size: 12px !important;  /* 必要に応じて文字サイズを少し小さく */
  }
}
/* ########### SPの場合、テーブルの横幅をデバイス横幅までにするここまで ########### */


/* ########### ハンバーガーメニューここから ########### */
/* メニュー本体：初期状態は非表示 */
#navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
}

/* ボタンの基本スタイル */
.hamburger {
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
  margin-left: auto;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: .4s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 13px; }
.hamburger span:nth-child(3) { top: 26px; }

/* 渡されたJSが「active」クラスを付与した時の「×」アニメーション */
.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

#navigation ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 80px;
}

#navigation li a {
    display: block; 
    padding: 10px 0; 
    text-decoration: none;
    color:#fff;
}

#navigation li a:hover {
    color:#fff;
}
/* ########### ハンバーガーメニューここまで ########### */

.headerOuter .zpelement {
    margin-block-start: 0px !important;
}