.training_main_cont_circle{
    background-image: url(/assets/img/gray_circle.png) !important;
    background-size: contain;
}

table th:after {
    display: none;

}

.back_yellow {

    margin-top: 0px;

}

.page_top_mv {

    margin-bottom: 0px;
}

.guide_text_h3 {
    color: #005ea6;
    font-size: 30px;
    margin-bottom: 0px !important;
    font-weight: bold;
    line-height: 40px;
}

.ob_og_voice_main {
    margin: 100px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ob_og_voice_main_cont_img {
    height: 570px;
    background-color: #F1F1F1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ob_og_voice_main_cont_img img{
    height: 570px;
    object-fit: cover;
    border: 1px solid #F1F1F1;
}

.ob_og_voice_main_cont {
    width: unset;
}

@media screen and (max-width: 768px){

    /*.ob_og_voice_main_cont_img {*/
    /*    width: auto;*/
    /*    height: 273px;*/
    /*}*/

    .ob_og_voice_main {
        grid-template-columns: repeat(1, 1fr);
    }

    .ob_og_voice_head {
        flex-wrap: wrap;
        display: flex
    ;
        justify-content: center;
        margin-bottom: 50px;
        margin-top: 50px;
        gap: 30px;
    }
}

.ob_og_women{
    color:var(--color-red1) !important;
}

.bg_red{
    background-color:var(--color-red1) !important;
}



/* 絞り込みボタンの設定 */

.his_searchWrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.his_searchWrap .his_formFlex {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 1em;  /* ← 横の間隔を「2文字分」に統一 */
  row-gap: 1em;     /* ← 縦の改行時に少し余白を持たせる */
}

/* 各 flexItem の幅を統一 */
.his_searchWrap .his_formFlex .flexItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 300px;
  box-sizing: border-box;
}

.his_searchWrap .his_formFlex .flexItem .flexItem_ttl {
  font-weight: 500;
  font-size: 15px;
  padding-right: 1em; /* ← ラベルとセレクトボックスの間は1em */
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
  min-width: 60px;
}

.his_searchWrap .his_formFlex .flexItem .selectItem {
  flex: 0 0 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #FFFFFF;
  text-align: left;
  color: #666666;
  padding: 6px 12px;
  height: 50px;
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  border: 1px solid #DDDDDD;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 10 10"><path fill="none" stroke="%23000000" stroke-width="1" d="M1 3.5l4 4 4-4"/></svg>') no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

/* ▼ スマホ用 */
@media screen and (max-width: 768px) {
  .his_searchWrap .his_formFlex {
    flex-direction: column;
    align-items: stretch;
  }

  .his_searchWrap .his_formFlex .flexItem {
    flex-direction: row;
    width: 100%;
    margin: 8px 0;
    justify-content: flex-start;
  }

  .his_searchWrap .his_formFlex .flexItem .flexItem_ttl {
    padding-right: 8px;
    text-align: left;
    width: 90px;
  }

  .his_searchWrap .his_formFlex .flexItem .selectItem {
    width: 100% !important;
  }
}


/* 各月のバックナンバーへのリンクボタン設定 */
/* 各年度ブロックの余白を制御する変数 */
:root {
  --year-block-margin: 2em; /* 上下のマージンを任意で調整可能 */
}

/* 各年度のブロック（新設） */
.graduate_year_block {
  margin-top: var(--year-block-margin);
  margin-bottom: var(--year-block-margin);
}

/* 見出し（18px・黒） */
.graduate_lst_heading {
  font-size: 16px;
  color: #005ea6;
  font-weight: bold;
  margin-bottom: 0.5em;
}

/* 月ボタンのリスト設定 */
.graduate_lst {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 各ボタン（PCでは12分割） */
.graduate_lst li {
  flex: 0 0 calc(100% / 12 - 10px);
  text-align: center;
}

/* リンクスタイル（角丸・グレー背景・黒文字・16px） */
.graduate_lst a {
  display: block;
  font-size: 16px;
  padding: 0.2em 0;
  background-color: #e8e8e8;
  color: #262626;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* ホバー時の少し濃いグレー */
.graduate_lst a:hover {
  background-color: #e7e7e7;
  color: #c1c1c1;
}

/* スマホ：6個×2行表示 */
@media (max-width: 768px) {
  .graduate_lst li {
    flex: 0 0 calc(100% / 6 - 10px);
  }
  .graduate_lst a {
    font-size: 14px;
  }
}



/* アーカイブ一覧に戻るボタン（単独ボタン） */
.archive_back_btn_wrap {
  display: flex;
  justify-content: center;
  margin: 2em auto;
}

.archive_back_btn {
  position: relative;               /* ← これを追加（absolute の基準） */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 46px;
  background-color: #e8e8e8;      /* 通常は白背景 */
  color: #262626;                 /* 青文字 */
  text-align: center;
  text-decoration: none;
  border-radius: 23px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  line-height: 46px; /* テキストを上下中央に */
  padding: 0 16px 0 16px; /* 左右に余白（右は矢印分） */
}

.archive_back_btn_arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);      /* 縦中央揃え */
  color: #262626;
  font-size: 16px;
}


/* ホバー・フォーカス */
.archive_back_btn:hover,
.archive_back_btn:focus {
  background-color: #e7e7e7;
  color: #c1c1c1;
  outline: none;
}

.archive_back_btn:hover .archive_back_btn_arrow,
.archive_back_btn:focus .archive_back_btn_arrow {
  color: #c1c1c1;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .archive_back_btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding-right: 20px;
  }

  .archive_back_btn_arrow {
    font-size: 14px;
    right: 12px;
  }
}


/* 卒業生の声に戻るボタン（単独ボタン） */
.graduate_back_btn_wrap {
  display: flex;
  justify-content: center;
  margin: 2em auto;
}

.graduate_back_btn {
  position: relative;               /* ← これを追加（absolute の基準） */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 46px;
  background-color: #ffffff;      /* 通常は白背景 */
  color: #005ea6;                 /* 青文字 */
  text-align: center;
  text-decoration: none;
  border-radius: 23px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #005ea6;      /* 通常は青線 */
  line-height: 46px; /* テキストを上下中央に */
  padding: 0 16px 0 16px; /* 左右に余白（右は矢印分） */
}

.graduate_back_btn_arrow {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);      /* 縦中央揃え */
  color: #005ea6;
  font-size: 16px;
}


/* ホバー・フォーカス：青背景＋白文字に反転 */
.graduate_back_btn:hover,
.graduate_back_btn:focus {
  background-color: #005ea6;
  color: #ffffff;
  outline: none;
}

.graduate_back_btn:hover .graduate_back_btn_arrow,
.graduate_back_btn:focus .graduate_back_btn_arrow {
  color: #ffffff;   /* ホバー時も矢印を白に */
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .graduate_back_btn {
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding-right: 20px;
  }

  .graduate_back_btn_arrow {
    font-size: 14px;
    left: 12px;
  }
}