@charset "UTF-8";
/* CSS Document */

/*
  セクション間余白
  ----------------------------------------------------------- */
section {
  padding: 45px 0;
}
footer {
  padding: 60px 0 0;
}
/*
  色関連
  ----------------------------------------------------------- */
.bg_color {
  background-color: #eeeef5;
}
.bg_color_main {
  background-color: #33c17e;
}
.bg_color_sub1 {
  background-color: #d0f0e1;
}
.bg_color_sub2 {
  background-color: #f1fcf7;
}
.bg_color_pink {
  background-color: #ffa5a5;
}
.bg_color_white {
  background-color: #fff;
}
.color_f_red {
  color: #ff0000;
}
.color_f_green {
  color: #009844;
}
.color_f_black {
  color: #333333;
}
.color_f_grey {
  color: #e0e0e0;
}
.color_f_white {
  color: #ffffff;
}
/*
  テキストのあしらい
  ----------------------------------------------------------- */
.text_marker {
  background: linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(255, 173, 214) 0%);
  text-shadow: 1px 1px 0 #fff, 0 1px 0 #fff;
  border-radius: 4px;
}
/*
  テキストの行間・改行関連
  ----------------------------------------------------------- */
/* pタグ同士の間にのみ1emの間隔を空ける */
p + p {
  margin-top: 1em;
}
.sc_staff_qualification p + p {
  /* ２つ目以降のpタグにのみマージンを適用したい場合 */
  margin-top: 1em;
}
/* 上書きでヘッダー、フッター内のpタグ同士の間をゼロにする */
header p + p,
footer p + p,
.procedure_plan p + p,
.sc_staff_qualification p {
  margin-top: 0;
}
/* スマートフォン表示用の改行 */
.sp_br {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_br {
    display: block;
  }
}
/* 長文の自動改行時の禁則処理（折り返し方）に適用する規則 */
.lb_strict {
  line-break: strict;
}
.h2_top_title {
  display: flex;
  max-width: 100%;
  align-items: baseline;
  gap: 1rem;
}
.h2_course_title {
  display: flex;
  max-width: 100%;
  height: auto;
  text-indent: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    rgba(157, 225, 193, 0.6) 0%,
    rgba(241, 252, 247, 0.6) 100%
  );
  border-left: solid 20px #33c17e; /*左線*/
}
.h3_title {
  position: relative;
  max-width: 100%;
  text-align: center;
  flex-shrink: 0;
}
.h3_title::before {
  position: absolute;
  border-bottom: 4px solid #33c17e; /*下線*/
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  content: "";
}
h4 :not(.procedure_plan h4, .sc_staff_kana) {
  text-indent: 2rem;
}
footer h4 {
  text-indent: 0;
}
/* ========== ヘッダー・フッターSTART header.footer ========== */
/* ==========================================================
ページトップボタン
========================================================== */
/* html {
  scroll-behavior: smooth;
} */

.page-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #33c17e;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.page-top .arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    margin: 0 0 5px 0;
}

.page-top .text {
    display: block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0;
    padding: 0;
}

.page-top:hover {
    background-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.page-top:hover .text  { color: #33c17e; }
.page-top:hover .arrow {
    border-top-color: #33c17e;
    border-left-color: #33c17e;
}

/*
  Header
  ----------------------------------------------------------- */
.gnav_sticky {
  position: -webkit-sticky; /* Safari 12.1 */
  position: sticky;
  width: 100%;
  z-index: 997;
  top: 0;
  left: 0;
}
/* ロゴ */
.tagline {
  position: absolute;
  top: 0;
  left: 15px;
}
.logo_btn {
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.logo_box {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.logo_box img {
  width: 300px;
  height: auto;
}
.logo {
  display: flex;
  flex-direction: row;
}
.logo_name {
  display: flex;
  flex-direction: column;
}
/* 申込ボタンと西都技能講習センターとハンバーガーボタン */
.btn_box {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.btn_box a {
  color: #fff;
}
.apply_btn,
.saito_btn {
  display: flex;
  width: 140px;
  height: 160px;
  padding: 12px 20px;
}
.apply_btn {
  border-bottom-left-radius: 20px;
}
.apply_link,
.saito_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.apply_img img,
.saito_img img {
  display: block;
}
.apply_img,
.saito_img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
}
.hamburger_space {
  display: none;
}
/* グローバルナビゲーション */
.gnav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.gnav_item {
  padding: 0 1em 0 1em;
  border-left: solid 2px #009844;
}
.gnav_item:last-child {
  border-right: solid 2px #009844;
}
.gnav_item a {
  color: #009844;
}
.sns_icons {
  display: flex;
  align-items: center;
  gap: 15px; /* アイコン同士の間隔 */
  padding-left: 20px; /* 「よくある質問」との間隔 */
}

/* リンク自体の設定 */
.sns_link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.sns_link:hover {
  opacity: 0.7;
}

/* アイコン画像のサイズ調整 */
.sns_link img {
  width: 40px;  /* アイコンの幅（適宜調整してください） */
  height: 40px; /* アイコンの高さ */
  object-fit: contain;
  vertical-align: middle;
}

/* ========== ヘッダー・フッターEND header.footer ========== */
/* ========== インデックスページSTART index ========== */
/*
  ファーストビュー
  ----------------------------------------------------------- */
.first_view {
  height: 700px;
  position: relative;
  overflow: hidden;
  background: url(../img/1920x700.jpg) no-repeat center top / cover;
}
/*
  sec_topics
  ----------------------------------------------------------- */
.topics_img {
  aspect-ratio: 4 / 3;
}
.topics_text {
  height: 200px;
  background-color: #fff;
  padding: 10px;
}
.slick_topics_s li {
  max-width: 100%;
  margin: 0 5px;
}
/* slick-themeの上書き部分 */
/* .slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #f1fcf7;
} */
.slick-prev {
  left: 0;
  z-index: 1;
  width: auto;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(241, 252, 247, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.4s;
}
.slick-next {
  right: 0;
  width: auto;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(241, 252, 247, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.4s;
}
.slick-prev:before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 64px; /*画像の幅*/
  height: 64px; /*画像の高さ*/
  mask-image: url(../img/icon_caret-left.svg);
  background: #009844;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.3;
  transition: 0.4s;
}
.slick-next:before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 64px; /*画像の幅*/
  height: 64px; /*画像の高さ*/
  mask-image: url(../img/icon_caret-right.svg);
  background: #009844;
  background-size: contain;
  vertical-align: middle;
  opacity: 0.3;
  transition: 0.4s;
}
/*ループさせない場合の指定*/
/* .slick-prev.slick-disabled,
.slick-next.slick-disabled {
    opacity: .3;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
} */
/*
  sec_news
  ----------------------------------------------------------- */
.news_box {
  max-width: 100%;
  margin-left: 80px;
  margin-right: 80px;
  border-top: solid 5px #009844;
  border-bottom: solid 5px #009844;
  padding: 16px 0;
}
.news_box ul {
  display: flex;
  flex-direction: row;
  padding: 8px 0;
  align-items: baseline;
  gap: 2rem;
}
.news_box li {
  width: 100%;
}
.news_box li:first-child,
.news_box li:last-child {
  width: 20%;
}
/*
  sec_about_higakyu
  ----------------------------------------------------------- */
/*
  sec_about_skill
  sec_about_special
  sec_about_safety_etc
  sec_instructor
  ----------------------------------------------------------- */
.sec_about_skill,
.sec_about_special,
.sec_about_safety_etc,
.sec_instructor {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 60%,
    #d0f0e1 60%,
    #d0f0e1 100%
  );
}
.about {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.about_special {
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.about_img {
  flex-grow: 1;
  object-fit: cover;
  max-width: 460px;
}
.about_img img {
  aspect-ratio: 1 / 1;
}
.about_box {
  flex-grow: 1;
}
.about_text {
  padding: 0 2rem 2rem;
  max-width: 460px;
}
.box_shadow {
  box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.25);
}
/*
  sec_cal_skill
  sec_cal_special
  sec_cal_safety_etc
  ----------------------------------------------------------- */
.google_cal iframe {
  border: none;
  width: 100% !important;
  height: 600px;
}
/*
  sec_course_skill
  sec_course_special
  sec_course_safety_etc
  
  ※別ページの講習一覧[course-list.html]と共有
  sec_skill_list
  sec_special_list
  sec_safety_etc_list
  ----------------------------------------------------------- */
.sec_course_skill,
.sec_course_special,
.sec_course_safety_etc {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 50%,
    #d0f0e1 50%,
    #d0f0e1 100%
  );
}
/*
  sec_instructor
  ----------------------------------------------------------- */
.instructor {
  display: flex;
  justify-content: space-between;
}
.instructor_text {
  display: flex;
  flex-direction: column;
  height: auto;
  max-width: 224px;
  justify-content: space-between;
  background-color: #fff;
  gap: 10px;
  padding: 10px;
}
/*
  sec_another
  ----------------------------------------------------------- */
.sec_another {
  background: #d0f0e1;
}
.another {
  display: flex;
  justify-content: space-between;
}
.another_box {
  object-fit: cover;
  max-width: 224px;
  max-height: 224px;
  position: relative;
}
.another_box:hover {
  transition: all 0.3s;
  box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.25);
}
.another_box img {
  filter: grayscale(50%);
}
.another_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  text-align: center;
  white-space: nowrap;
  text-shadow: 6px 6px 9px #ffffff, -6px 6px 9px #ffffff, 6px -6px 9px #ffffff,
    -6px -6px 9px #ffffff;
}
/*
  Footer
  ----------------------------------------------------------- */
.footer_inner {
  display: flex;
  justify-content: space-between;
}
.footer_logo_btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer_logo_box {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.footer_logo_box img {
  width: 190px;
  height: auto;
}
.footer_logo {
  display: flex;
  flex-direction: row;
}
.footer_logo_name {
  display: flex;
  flex-direction: column;
}
.license_center_nav,
.motor_school_nav {
  display: flex;
}
.license_center_nav ul,
.motor_school_nav ul {
  width: 50%;
}
.box_r ul li {
  text-indent: 1rem;
  margin-bottom: 10px;
}
.footer_tel {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}
.footer_location,
.footer_reception {
  text-indent: 1rem;
}
/* ========== インデックスページEND index ========== */
/* ========== 講習一覧ページSTART course-list ========== */
.card_grid_box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
  grid-template-rows: auto;
  gap: 24px 11.3333333333px;
}
.card {
  max-width: 100%;
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  color: #009844;
  text-decoration: none;
  transition: all 0.3s;
}
.card:focus {
  color: #009844;
  text-decoration: none;
}
.card:hover {
  background: #33c17e;
  box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}
.card a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.card_image {
  max-width: 100%;
  order: 0;
}
.card_title {
  order: 1;
}
.card_more {
  order: 2;
  text-align: right;
}
.card_title,
.card_more {
  padding: 10px;
  width: 100%;
}
.onsite_training_example {
  display: flex;
  justify-content: center;
}
.onsite_training_example ul li {
  list-style-type: none;
  margin: 10px 0;
}
/* ========== 講習一覧ページEND course-list ========== */
/* ========== （共通パーツ）個別の講習ページSTART skl-001_010,spl-001_019,saf-001_017(etc-001_002) ========== */
/*
  workshop_overview
  ----------------------------------------------------------- */
.workshop_overview_box {
  display: flex;
  gap: 10px;
}
.workshop_overview_img img {
  width: 460px;
  height: 345px;
  border-radius: 4px;
}
.workshop_overview_text {
  width: calc(100% - 470px);
}
/*
  workshop_details_tuition
  ----------------------------------------------------------- */
.workshop_details_tuition_contents {
  padding: 15px;
}
.workshop_timetable_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.workshop_timetable_table th {
  width: 70%;
  padding: 10px;
  border-bottom: solid 4px #009844;
  text-align: start;
}
.workshop_timetable_table td {
  text-align: start;
  padding: 10px;
  border-bottom: solid 1px #009844;
  text-align: start;
}
.workshop_tuition_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.workshop_tuition_table th {
  width: 30%;
  padding: 10px;
  border-bottom: solid 1px #009844;
  text-align: start;
}
.workshop_tuition_table td {
  text-align: start;
  padding: 10px;
  border-bottom: solid 1px #009844;
  text-align: start;
}
/*
  workshop_surcharge
  ----------------------------------------------------------- */
.workshop_surcharge_table {
  width: 70%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
}
.workshop_surcharge_table th {
  width: 50%;
  padding: 10px;
  border-bottom: solid 1px #009844;
  text-align: start;
}
.workshop_surcharge_table td {
  text-align: start;
  padding: 10px;
  border-bottom: solid 1px #009844;
  text-align: start;
}
.workshop_cancellation_list {
  list-style-type: circle;
  list-style-position: outside;
  line-height: 1.5;
  padding: 0.5em 0.5em 0.5em 2em;
  border: 1px solid #009844;
}
.workshop_cancellation_list li {
  padding: 0.75em;
}
.workshop_cancellation_list li {
  border-bottom: 1px dashed #009844;
}
.workshop_cancellation_list li::marker {
  color: #009844;
  font-size: 1.1em;
}
/*
  workshop_form
  ----------------------------------------------------------- */
.workshop_form_box {
  border-radius: 4px;
  padding: 15px;
}
/* コンタクトフォームの代替として仮に指定、削除の予定 */
.blank_area {
  height: auto;
}
/* ========== （共通パーツ）個別の講習ページEND skl-001_010,spl-001_019,saf-001_017(etc-001_002) ========== */
/* ========== 助成金のページSTART subsidy ========== */
/* 助成金セクション表示切替のためのCSS */
.workforce_development,
.construction_worker_development,
.reskilling_support,
.general_education_training {
  display: none; /* 初期状態ではすべてのセクションを非表示 */
  opacity: 0;
  transition: opacity 0.5s ease; /* フェードイン・フェードアウト効果 */
}
.workforce_development.active,
.construction_worker_development.active,
.reskilling_support.active,
.general_education_training.active {
  display: block;
  opacity: 1;
}
.eligible_list {
  padding: 0.5em 0.5em 0.5em 2em;
  border: 1px solid #009844;
}
.eligible_list li {
  list-style-type: circle;
  line-height: 1.5;
  padding: 0.5em;
}
/* ========== 助成金のページEND subsidy ========== */
/* ========== 講師・職員紹介ページSTART staff-directory ========== */
.sc_description {
  text-align: center;
  line-height: 1.7;
}
.sc_staff_grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* PCでの最小幅を調整 */
  gap: 2rem; /* グリッドアイテム間の隙間 */
}
.sc_staff_card {
  padding: 1.5rem;
  border-radius: 4px;
  text-align: center; /* カード内テキストの基本を中央揃えに */
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.sc_staff_image {
  width: 140px; /* PCでの画像サイズ */
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: auto; /* 中央寄せのため */
  margin-right: auto; /* 中央寄せのため */
  /* margin-bottom はHTML側で mb20 などを指定 */
  border: 2px solid #33c17e; /* メインカラー (color_f_green) */
}
.sc_staff_kana {
  display: block; /* 親要素のtext-align:centerの影響を受けないように */
}
.sc_staff_title {
  min-height: 2.2em; /* 役職が複数行の場合の高さ揃え目安 */
}
.sc_staff_bio {
  line-height: 1.7;
  flex-grow: 1; /* カードの高さを揃えるために重要 */
}
.sc_staff_qualification {
  padding-top: 1rem; /* 上の要素との区切り */
  border-top: 1px dashed #ddd;
  margin-top: auto; /* 自己紹介文の下、カードの最下部に配置 */
  line-height: 1.7;
}
.sc_company_table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto; /* 中央寄せ */
  border: 1px solid #33c17e; /* 外枠線 */
}
.sc_company_table th,
.sc_company_table td {
  border: 1px solid #33c17e; /* セルの枠線 */
  padding: 8px;
  text-align: center;
}
.sc_company_table th {
  font-weight: bold;
}
/* ========== 講師・職員紹介ページSTART staff-directory ========== */
/* ========== 求人案内ページSTART job-listings ========== */
/* セクション共通の調整 (必要に応じて) */
.job_skills_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px; /* アイテム間の隙間 */
  justify-content: center;
}
.job_skill_item {
  /* HTML側でフォントサイズなどを指定 */
  background-color: #e0f2f7; /* 例: 薄い青系の背景 */
  padding: 8px 16px;
  border-radius: 20px; /* 丸みを帯びたタグ風 */
  border: 1px solid #add8e6; /* 例: 薄い青系の枠線 */
}
.large_btn_style {
  padding: 18px 40px;
  font-size: 1.8rem; /* font_18 */
}
.job_works_list {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.job_works_item {
  text-align: center;
}
/* 当センターについて - ポリシーブロック */
.job_policy_block_01,
.job_policy_block_02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px; /* テキストと画像の間の隙間 */
}
.job_policy_text {
  flex: 1;
  min-width: 300px; /* テキストエリアの最小幅 */
}
.job_policy_text .policy_title {
  border-left: 5px solid #33c17e; /* style.css の既存スタイルを参考 */
  padding-left: 10px;
}
.job_policy_image {
  flex: 1;
  min-width: 250px;
}
.job_policy_block_02 {
  flex-direction: row-reverse;
  justify-content: space-between;
}
/* 就業環境・設備リスト */
.job_welfare_list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(320px, 1fr)
  ); /* より小さいアイテムサイズにも対応 */
  gap: 25px;
}
.job_welfare_item {
  /* HTML側でフォント、色、マージン、背景色などを指定 */
  background-color: #fff; /* bg_color_white */
  padding: 25px 20px; /* p20 や p25 に相当するクラスがあればそちらで */
  border-radius: 8px; /* radius_8 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* box_shadow_light より少し濃いめなど調整 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.job_welfare_icon_wrapper {
  width: 90px;
  height: 90px;
  background-color: #f1fcf7; /* bg_color_sub2 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px; /* mb15 */
  padding: 15px; /* アイコンと円の間の余白 */
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}
.job_welfare_icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* ========== 求人案内ページEND job-listings ========== */
/* ========== よくある質問ページSTART faq ========== */
/* アコーディオンメニューのスタイル */
.accordion_button {
  color: #009844;
  cursor: pointer;
  padding: 0.8em;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.5s;
  border-radius: 4px;
}
.accordion_button:hover {
  background-color: #33c17e;
  color: #f1fcf7;
  text-decoration: none;
}
.accordion_content {
  padding: 15px;
  display: none;
  overflow: hidden;
  background-color: #f1fcf7;
  border-radius: 0 0 4px 4px;
}
.accordion_list {
  gap: 15px;
}
.parking_guide {
  display: flex;
  width: auto;
  gap: 10px;
}
/* ========== よくある質問のページEND faq ========== */
/* ========== 修了証の再発行ページSTART reissue ========== */
/*
  about_reissue
  ----------------------------------------------------------- */
.reissue_box {
  display: flex;
  gap: 10px;
}
.reissue_img img {
  width: 460px;
  height: 290px;
  border-radius: 4px;
}
.reissue_text {
  width: calc(100% - 460px);
}
.flowchart_down {
  width: 100%;
  height: 100px;
  margin: auto;
  background-color: #f1fcf7;
  background-color: #d0f0e1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.flowchart_box {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.flowchart_box li:not(:last-child) {
  padding-right: 36px;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.flowchart_01,
.flowchart_02,
.flowchart_03,
.flowchart_04 {
  background-color: #d0f0e1;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 10px;
  border-radius: 4px;
}
.flowchart_img {
  width: 120px;
  height: 120px;
  /* clip-path: circle(50% at 50% 50%); */
}
.flowchart_img img {
  border-radius: 4px;
}
/*
  prepare_reissue
  ----------------------------------------------------------- */
.enquiry_phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
}
.img_text {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.phone_number,
.toll_free_number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.phone {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
/*
  prepare_document
  ----------------------------------------------------------- */
.document {
  border-radius: 4px;
  padding-right: 0.8em;
  padding-left: 0.8em;
}
.document > ol > li {
  margin-bottom: 2em;
}
.document_form {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.document_form li {
  text-align: center;
  justify-content: center;
}
.form_sample {
  display: inline-flex;
  width: auto;
  gap: 10px;
}
/*
  procedure_guide
  ----------------------------------------------------------- */
.procedure_select {
  width: 100%;
  position: relative;
}
.procedure_select::before,
.procedure_select::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.procedure_select::before {
  display: inline-block;
  right: 0;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 4px 4px 0;
  background-color: #009844;
}
.procedure_select::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  transform: translate(50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.procedure_select select {
  width: 100%;
  appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em 3.6em 0.4em 0.8em;
  border: none;
  border-radius: 4px;
  background-color: #f2f2f2;
  color: #333;
  font-size: 1em;
  cursor: pointer;
}
.procedure_select select:focus {
  outline: 2px solid #009844;
}
#procedure_plan_01,
#procedure_plan_02,
#procedure_plan_03,
#procedure_plan_04 {
  color: #333;
  display: none;
}
/*procedure_plan
  ----------------------------------------------------------- */
.procedure_plan_00,
.procedure_plan_01,
.procedure_plan_02,
.procedure_plan_03,
.procedure_plan_04 {
  padding-right: 0.8em;
  padding-left: 0.8em;
  vertical-align: center;
  border-radius: 4px;
}
.google_map iframe {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  text-align: center;
}
.procedure_place,
.procedure_address {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: start;
}
.character {
  width: 100%;
  margin: 0 auto;
}
.procedure_envelope ol > li,
.procedure_envelope_sample ol > li {
  margin-bottom: 2em;
}
.procedure_envelope_sample div {
  width: 50%;
}
.procedure_envelope_sample div img {
  width: 50%;
  margin: 0 auto;
  height: 100%;
}
.procedure_envelope_sample {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-radius: 4px;
}
/*
  commission
  ----------------------------------------------------------- */
.commission_wrap {
  border-radius: 4px;
}
.commission_box {
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
}
.reissue_table,
.rewrite_table {
  border-collapse: collapse;
  border-spacing: 0;
}
.reissue_table th,
.rewrite_table th {
  width: 320px;
  padding: 10px;
  border-bottom: solid 4px #009844;
  color: #009844;
  text-align: center;
}
.reissue_table td,
.rewrite_table td {
  text-align: start;
  padding: 10px;
  border-bottom: solid 1px #009844;
}
.rewrite_table td {
  text-align: center;
}
/* ========== 修了証の再発行ページEND reissue ========== */

/* ========== お問い合わせ infomation ========== */
/* ========== お問い合わせページSTART infomation（問い合わせフォーム） ========== */
.contact_form_section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.contact_form {
  max-width: 760px;
  margin: 0 auto;
}
.contact_form_row {
  margin-bottom: 30px;
}
.contact_form_label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}
.contact_form_label_text {
  font-size: 1.6rem;
}
.contact_form_note {
  font-size: 1.3rem;
  font-weight: normal;
  color: #666;
}
.required_badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 4px;
  background-color: #ff0000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.contact_form_input,
.contact_form_textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  font-family: inherit;
}
.contact_form_input:focus,
.contact_form_textarea:focus,
.contact_form_select:focus {
  outline: 2px solid #009844;
  border-color: #009844;
}
.contact_form_textarea {
  resize: vertical;
  line-height: 1.7;
}
/* お問い合わせ内容のラジオボタン（CF7の [radio] タグが出力するマークアップに対応） */
.contact_form_radio_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 60px;
  padding: 1.6em 1.8em;
  border-radius: 4px;
  background-color: #f1fcf7;
}
.contact_form_radio_group .wpcf7-list-item {
  margin: 0;
}
.contact_form_radio_group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.6rem;
  color: #009844;
  cursor: pointer;
}
.contact_form_radio_group input[type="radio"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.3em;
  height: 1.3em;
  margin: 0;
  border: 2px solid #009844;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.contact_form_radio_group input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background-color: #009844;
}
.contact_form_radio_group .wpcf7-list-item:has(input[type="radio"]:checked) label {
  font-weight: bold;
}
.contact_form_radio_group .wpcf7-list-item-label {
  line-height: 1.5;
}

/* 送信ボタン */
.contact_form_submit_wrap {
  margin-top: 45px;
  text-align: center;
}
.contact_form_submit_btn {
  display: inline-block;
  min-width: 260px;
  padding: 16px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.contact_form_submit_btn:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}
/* ========== お問い合わせ infomation end========== */

/* ========== 講習希望申込みフォーム start ========== */
.training_form_header {
  padding: 16px 20px;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 40px;
}
.training_form_title {
  font-weight: bold;
}

/* チェックボックス（CF7の [checkbox] タグ対応） */
 
.training_checkbox_group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.training_checkbox_group .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.training_checkbox_group--column .wpcf7-form-control.wpcf7-checkbox {
  flex-direction: column;
  gap: 12px;
}
.training_checkbox_group .wpcf7-list-item {
  margin: 0;
}
.training_checkbox_group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.training_checkbox_group input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.2em;
  height: 1.2em;
  margin: 0;
  border: 2px solid #009844;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.training_checkbox_group input[type="checkbox"]:checked {
  background-color: #009844;
}
.training_checkbox_group input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.35em;
  height: 0.6em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}
.training_checkbox_group .wpcf7-list-item-label {
  line-height: 1.5;
}
.training_other_input {
  margin-top: 12px;
  max-width: 400px;
}

/* ラジオボタン（性別・生年月日・希望コース・支払い方法など、共通の小型版） */
.training_radio_group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.training_radio_group .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.training_radio_group--column .wpcf7-form-control.wpcf7-radio {
  flex-direction: column;
  gap: 12px;
}
.training_radio_group--inline .wpcf7-form-control.wpcf7-radio {
  gap: 20px;
}
.training_radio_group .wpcf7-list-item {
  margin: 0;
}
.training_radio_group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.training_radio_group input[type="radio"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.1em;
  height: 1.1em;
  margin: 0;
  border: 2px solid #009844;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.training_radio_group input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background-color: #009844;
}

/* 人数選択 */
.training_headcount_row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.training_headcount_unit {
  font-size: 1.4rem;
  color: #333;
}
.training_select {
  appearance: none;
  height: 2.6em;
  padding: 0.4em 2.4em 0.4em 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #009844 50%),
  linear-gradient(135deg, #009844 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.training_note {
  margin: -6px 0 12px;
  font-size: 1.3rem;
  color: #666;
}

/* 受講者ごとのブロック区切り */
.training_participant_block {
  padding: 30px 0;
  border-top: 1px dashed #ccc;
}
.training_participant_block:first-of-type {
  border-top: none;
}
.training_participant_title {
  margin-bottom: 20px;
}

/* 生年月日（元号ラジオ＋年月日の数値入力） */
.training_birthday_row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.training_birthday_field {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  color: #333;
}
.training_input_small {
  width: 80px;
  padding: 0.5em 0.6em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}
.training_input_small:focus {
  outline: 2px solid #009844;
  border-color: #009844;
}

/* 一行にチェックボックス＋ラベルを並べたい箇所（免除条件など） */
.training_row--inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 請求書送付方法（銀行振込選択時のみ表示） */
.training_invoice_row {
  padding: 20px;
  border-radius: 4px;
  background-color: #f1fcf7;
}

/* 同意チェックボックス（.check_box）のスタイル */
.check_box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check_box .wpcf7-list-item {
  margin: 0;
}
.check_box .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
.check_box input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.2em;
  height: 1.2em;
  margin: 0;
  border: 2px solid #009844;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.check_box input[type="checkbox"]:checked {
  background-color: #009844;
}
.check_box input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.35em;
  height: 0.6em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}
.check_box .wpcf7-list-item-label {
  line-height: 1.5;
}


/* ========== 講習希望申込みフォーム end ========== */


.optional_badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 4px;
  background-color: #b0b0b0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.contact_form_caution {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #ff0000;
  line-height: 1.6;
}
/* ファイル添付 */
.contact_form_file {
  width: 100%;
  padding: 0.6em 0;
  font-size: 1.4rem;
  color: #333;
}

/* 修了証再発行フォーム用ラジオボタン（CF7の [radio] タグが出力するマークアップに対応） */
.reissue_radio_group {
  padding: 1.6em 1.8em;
  border-radius: 4px;
  background-color: #f1fcf7;
}
.reissue_radio_group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.reissue_radio_group .wpcf7-form-control.wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 60px;
  width: 100%;
}
.reissue_radio_group .wpcf7-list-item {
  margin: 0;
}
.reissue_radio_group .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.5rem;
  color: #009844;
  cursor: pointer;
}
.reissue_radio_group input[type="radio"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 1.3em;
  height: 1.3em;
  margin: 0;
  border: 2px solid #009844;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.reissue_radio_group input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  background-color: #009844;
}
.reissue_radio_group .wpcf7-list-item:has(input[type="radio"]:checked) label {
  font-weight: bold;
}
.reissue_radio_group .wpcf7-list-item-label {
  line-height: 1.5;
}
.training_radio_group--column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.training_radio_group--column label {
    display: flex;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}
.training_radio_group--column label {
    display: flex;
    gap: 8px;
}

.training_radio_group--column input[type="radio"] {
    flex-shrink: 0;
    margin-top: 3px; /* テキストの1行目とラジオボタンの高さを微調整 */
}