@charset "UTF-8";
/*==============================================================
	レイアウト関係
===============================================================*/
.inner_wrap {
  width: 1200px;
  margin: auto;
}

.inner_wrap_s {
  width: 1000px;
  margin: auto;
}

.pc_el {
  display: inline-block;
}

.sp_el {
  display: none !important;
}

.fl_box {
  display: flex;
}

/*==============================================================
	見出し関係
===============================================================*/
.base_tl {
  color: #192e8e;
  font-size: clamp(24px, 3vw, 42px);
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}
.base_tl span {
  display: block;
  position: relative;
}
.base_tl span::before {
  content: "";
  width: 200px;
  height: 3px;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(-90deg, #192e8e 0%, #192e8e 50%, #b8c74f 50%, #b8c74f 100%);
}
.base_tl span::after {
  content: "";
  width: 200px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(90deg, #192e8e 0%, #192e8e 50%, #b8c74f 50%, #b8c74f 100%);
}

/*==============================================================
	ボタン関係
===============================================================*/
.base_btn {
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #192e8e;
  color: #fff;
  padding: 15px 0px;
  margin: auto;
  font-size: clamp(20px, 4vw, 20px);
  border-radius: 100px;
  position: relative;
}
.base_btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 85%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left: 13px solid #fff;
}

.con_btn {
  max-width: 300px;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #192e8e;
  color: #fff;
  border-radius: 100px;
  font-size: clamp(30px, 2vw, 30px);
}
.con_btn img {
  width: 30px;
  margin-right: 10px;
}

/*==============================================================
	リスト関係
===============================================================*/
.circle_list li {
  position: relative;
  font-size: clamp(18px, 2vw, 18px);
  padding-left: 25px;
  margin-bottom: 10px;
}
.circle_list li::before {
  content: "";
  background-color: #192e8e;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 5px;
  margin: auto;
}

/*==============================================================
	テーブル関係
===============================================================*/
.base_tbl {
  width: 100%;
}
.base_tbl th,
.base_tbl td {
  padding: 20px 40px;
  border: 1px solid #192e8e;
  font-weight: normal;
  font-size: clamp(20px, 4vw, 20px);
}
.base_tbl th {
  width: 250px;
  border-right: 4px solid #192e8e;
  border-left: none;
  text-align: center;
}
.base_tbl td {
  width: calc(100% - 250px);
  border-right: none;
}
.base_tbl tr:nth-child(odd) th {
  background-color: #c7d4ff;
}
.base_tbl tr:nth-child(odd) td {
  background-color: #e6ebff;
}
.base_tbl tr:nth-child(even) th {
  background-color: #e6ebff;
}
.base_tbl tr:nth-child(even) td {
  background-color: #fff;
}

.base_tbl2 {
  width: 100%;
}
.base_tbl2 table {
  width: 100%;
  border: 1px solid #192e8e;
}
.base_tbl2 th,
.base_tbl2 td {
  padding: 20px 40px;
  border: 1px solid #192e8e;
  font-weight: normal;
  font-size: clamp(20px, 4vw, 20px);
}
.base_tbl2 th {
  width: 250px;
  border-left: none;
  text-align: center;
}
.base_tbl2 th:nth-child(odd) {
  background-color: #c7d4ff;
}
.base_tbl2 th:nth-child(even) {
  background-color: #e6ebff;
}
.base_tbl2 td {
  width: calc(100% - 250px);
  border-right: none;
  text-align: center;
  background-color: #fff;
}

/*==============================================================
	下階層headline
===============================================================*/
#headline {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  margin-bottom: 20px;
  color: #192e8e;
  font-weight: bold;
  font-size: clamp(28px, 2vw, 28px);
  background: url(../img/bg_headline.webp) no-repeat center/cover;
}

.pan_menu {
  display: flex;
  white-space: nowrap;
  overflow: auto;
  align-items: center;
}
.pan_menu li {
  position: relative;
  margin-right: 30px;
}
.pan_menu li a {
  color: #333;
  text-decoration: underline;
}
.pan_menu li::before {
  content: "/";
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.pan_menu li:last-child::before {
  content: none;
}

/*==============================================================
	共通パーツ
===============================================================*/
.switchIcon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 100%;
}
.switchIcon::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #707070 transparent transparent transparent;
  border-width: 10px 10px 0 10px;
}

.tab_content {
  display: none;
}
.tab_content.show_tab {
  display: block;
}

.scrolled .page_top_btn {
  display: none !important;
}/*# sourceMappingURL=module.css.map */