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

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

[class*=fl_box] {
  display: -webkit-flex;
  display: flex;
}

[class*=grid_box] {
  display: -webkit-flex;
  display: grid;
}

.grid_box_2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid_box_3 {
  grid-template-columns: repeat(3, 1fr);
}

.fl_box_wr {
  flex-wrap: wrap;
}
.fl_box_c {
  justify-content: center;
  align-items: flex-start;
}
.fl_box_cc {
  justify-content: center;
  align-items: center;
}
.fl_box_bw {
  justify-content: space-between;
  align-items: flex-start;
}
.fl_box_bwc {
  justify-content: space-between;
  align-items: center;
}

.pc_el {
  display: inline-block;
}

.sp_el {
  display: none;
}

/*==============================================================
	見出し関係
===============================================================*/
.base_tl {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.base_tl::before {
  content: "";
  width: 90px;
  height: 27px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 110%;
  margin: auto;
  background: url(../img/ico_tl.webp) no-repeat center/cover;
}
.base_tl .ja {
  font-family: "kaisei-harunoumi", sans-serif;
  font-size: clamp(40px, 5vw, 40px);
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #cc6600;
  margin-bottom: 10px;
}
.base_tl .en {
  font-family: "kaisei-harunoumi", sans-serif;
  display: block;
  font-size: clamp(16px, 15.296px + 0.188vw, 18px);
  color: #cc6600;
}

.base_tl_sub {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.base_tl_sub .ja {
  font-family: "kaisei-harunoumi", sans-serif;
  font-size: clamp(40px, 5vw, 40px);
  padding-left: 40px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  color: #cc6600;
}
.base_tl_sub .ja::before {
  content: "";
  width: 33px;
  height: 33px;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: url(../img/ico_tl_2.svg) no-repeat center/cover;
}

/*==============================================================
	ボタン関係
===============================================================*/
.base_btn {
  display: flex;
  max-width: 300px;
  background-image: linear-gradient(-80deg, #f6b42d, #ffb1bd);
  box-shadow: 3px 3px 0px #b59e7f;
  padding: 10px;
  margin: auto;
  border-radius: 100px;
  justify-content: center;
  color: #fff;
  position: relative;
  font-weight: bold;
}
.base_btn::before {
  content: "";
  background: url(../img/ico_arrow_2.svg) no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.base_btn_2 {
  display: flex;
  max-width: 240px;
  background-color: #fff;
  padding: 10px;
  margin: auto;
  border-radius: 100px;
  justify-content: center;
  color: #000;
}
.base_btn_2 img {
  width: 20px;
  margin-right: 10px;
}

.base_btn_3 {
  display: flex;
  max-width: 300px;
  background-image: linear-gradient(-80deg, #f6b42d, #ffb1bd);
  box-shadow: 3px 3px 0px #b59e7f;
  padding: 10px;
  margin: auto;
  border-radius: 100px;
  justify-content: center;
  color: #fff;
  position: relative;
  font-weight: bold;
}
.base_btn_3 img {
  width: 20px;
  margin-right: 10px;
}

.base_btn_4 {
  display: flex;
  max-width: 240px;
  background-color: #fff;
  padding: 10px;
  margin: auto;
  border-radius: 100px;
  justify-content: center;
  color: #000;
  border: 1px solid #4a8e8c;
}
.base_btn_4 img {
  width: 20px;
  margin-right: 10px;
}

/*==============================================================
	リスト関係
===============================================================*/
.circle_list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.circle_list li:last-child {
  margin-right: 0;
}
.circle_list li::before {
  content: "";
  background: #cc6600;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 12px;
  margin: auto;
}

.num_list {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.num_list li {
  padding-left: 30px;
  font-size: 1.8rem;
  margin-bottom: 10px;
  position: relative;
}
.num_list li::before {
  counter-increment: item;
  content: counter(item);
  /* 以下は自由に装飾... */
  margin-left: -10px;
  color: #fff;
  position: absolute;
  left: 17px;
  top: 0;
}
.num_list li::after {
  content: "";
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  z-index: -1;
}

/*==============================================================
	テーブル関係
===============================================================*/
.base_tbl {
  width: 100%;
}
.base_tbl th,
.base_tbl td {
  padding: 5px 20px;
  border: 1px solid #105930;
  text-align: left;
  font-weight: normal;
}
.base_tbl th {
  background-color: #105930;
  color: #fff;
}
.base_tbl th:first-child {
  border-right: 1px solid #fff;
}

/*==============================================================
	下階層headline
===============================================================*/
#headline {
  padding: 100px 0;
  background: url(../img/headline.webp) no-repeat bottom/cover;
}
#headline .tl {
  text-align: center;
  font-size: clamp(60px, 59.296px + 0.188vw, 62px);
  color: #cc6600;
  justify-content: center;
  font-family: "kaisei-harunoumi", sans-serif;
}
#headline .tl span {
  font-size: 80%;
  display: block;
}

/*==============================================================
	共通パーツ
===============================================================*/
.controller_box {
  display: flex;
  justify-content: center;
}
.controller_box li {
  width: 20%;
  margin-right: 2px;
  text-align: center;
  color: #fff;
  background-color: #ffb1bd;
  border-left: none;
  padding: 20px 5px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(22px, 1vw, 22px);
  position: relative;
  cursor: pointer;
}
.controller_box li:last-child {
  margin-right: 0;
}
.controller_box li a {
  color: #fff;
}
.controller_box li.is-active {
  border: none;
  background-color: #f6b42d;
}
.controller_box li.is-active a {
  color: #fff;
}
.controller_box a {
  pointer-events: none;
}

/*Question共通*/
.switchIcon {
  position: absolute;
  top: 0;
  bottom: 10px;
  margin: auto 0;
  right: 25px;
  width: 20px;
  height: 20px;
}
.switchIcon::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #cc6600;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.switchIcon::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #cc6600;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.answerBox {
  display: none;
}

.open .que_box .switchIcon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.open .que_box .switchIcon::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.tab_content {
  display: none;
}
.tab_content.show_tab {
  display: block;
}/*# sourceMappingURL=module.css.map */