@charset "utf-8";

body {
  font-family: 游ゴシック;
  font-size: 15px;
  font-weight: 500;
}

.u_indent {
  text-indent: -1em;
  padding-left: 1em;
}

.navi_menu {
  border-left: 1px solid #888;
  border-right: 1px solid #888;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}

.navi_menu_item {
  display: flex;
  flex: 1;
}

.navi_menu_item + .navi_menu_item {
  border-left: 1px solid #888;
}

.navi_menu_item > a {
  align-items: center;
  color: currentColor;
  display: flex;
  font-size: 13px;
  font-family: 游ゴシック;
  font-weight: 500;
  justify-content: center;
  padding: 5px;
  text-align: center;
  width: 100%;
  letter-spacing: 0;
}

.navi_menu_item > a:hover {
  opacity: 0.6;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .navi_menu {
    border: none;
  }

  .navi_menu_item {
    border-left: 1px solid #888;
    flex: 0 0 auto;
    margin-bottom: 5px;
    width: 50%;
  }

  .navi_menu_item:nth-of-type(2n) {
    border-right-image: 1px solid #888;
  }

  .navi_menu_item > a {
    justify-content: flex-start;
    text-align: left;
  }

  .navi_menu_item > a > br {
    display: none;
  }
}

/* カリキュラム */
.curriculum_lst {
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
}
.curriculum_itm {
  padding: 15px;
  border: 1px solid #164a84;
  border-radius: 10px;
  overflow: hidden;
}
.curriculum_itm_label {
  display: inline-block;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid #164a84;
  border-radius: 3px;
  overflow: hidden;
}
.curriculum_itm_ttl {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  padding-left: 2em;
  text-indent: -2em;
}
.curriculum_itm_theme {
  margin-top: 15px;
}
.curriculum_itm_theme_itm {
  font-size: 14px;
  padding-left: 2em;
  text-indent: -2em;
}
@media screen and (max-width: 768px) {
  .curriculum_lst {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ボタン */
.m_commonFtInquiry__btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
#contact .m_commonFtInquiry__btns {
  justify-content: flex-start;
  margin-top: 0;
}

.m_commonFtInquiry__btn {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 250px;
  font-size: 15px;
  font-weight: 700;
}
.m_commonFtInquiry__btn::before {
  content: "";
  display: block;
  height: 3.5em;
}
.m_commonFtInquiry__btnTarget {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.3s opacity;
}
.m_commonFtInquiry__btnTarget:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}
#forum_outline p.m_commonFtInquiry__btnInner {
  position: relative;
  padding-left: 35px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 700;
}
.m_commonFtInquiry__btnInner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 15px;
  height: 20px;
  margin: auto 0;
  line-height: 0;
}
.m_commonFtInquiry__btn--inquiry .m_commonFtInquiry__btnTarget {
  border-color: #e5002d;
  background-color: #e5002d;
}
#forum_outline .m_commonFtInquiry__btn--inquiry p.m_commonFtInquiry__btnInner {
  padding-left: 0;
  color: #fff;
}
.m_commonFtInquiry__btn.m_commonFtInquiry__btn--pdf {
  max-width: 315px;
}
.m_commonFtInquiry__btn--pdf .m_commonFtInquiry__btnTarget {
  border-color: #164a84;
}
.m_commonFtInquiry__btn--pdf .m_commonFtInquiry__btnInner::before {
  content: url(/common/img/seminar/ico_pdf.svg);
}
@media screen and (max-width: 768px) {
  .m_commonFtInquiry__btns {
    flex-direction: column;
    align-items: center;
  }
  #contact .m_commonFtInquiry__btns {
    align-items: flex-start;
  }
}


/* スケジュール */
#forum_outline p.schedule_note {
  color: #f00;
  font-weight: 700;
}
.tbl_schedule {
  border: 1px solid #ccc;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 10px;
  width: 100%;
}
.tbl_schedule th {
  background-color: #d2ebf9;
  border: 1px solid #ccc;
  font-weight: 400;
  text-align: center;
}
.tbl_schedule td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
}
.tbl_schedule tr td:nth-of-type(3) a:hover {
  opacity: 0.6;
}

.link_app {
  background-color: #164a84;
  border-radius: 5px;
  color: #fff;
  display: block;
  padding: 5px 8px;
  width: 100%;
}
.link_app:hover {
  opacity: 0.6;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .schedule_table_wrap {
		width: 100%;
		overflow-x: scroll;
  }
	.tbl_schedule {
		min-width: 660px;
	}
}


/* 評価者の声 */
#hyouka_box .ibox {
  border-bottom: 2px dotted #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
#hyouka_box .ibox dt {
  color: #333;
  font-size: 15px;
  margin-bottom: 5px;
}
#hyouka_box .ibox dd {
  margin-bottom: 10px;
}
#hyouka_box .ibox dd .voice_score {
  display: inline-block;
  margin-top: 10px;
  color: #164a84;
  font-size: 35px;
  font-weight: 700;
}
#hyouka_box .ibox dd li {
  line-height: 1.3;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
#hyouka_box .ibox dd li::before {
  color: #164a84;
  content: "\f2bd";
  display: block;
  font-family: fontawesome;
  font-size: 20px;
  position: absolute;
  left: 0;
}
