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

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

.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: 40px;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.base_tl span {
  font-size: clamp(40px, 5vw, 40px);
  display: inline-block;
  line-height: 1.1;
  position: relative;
  padding: 0 60px;
}
.base_tl.color_1 span {
  color: #8e1d44;
}
.base_tl.color_1 span::before {
  content: "";
  background: url(../img/ico_tl_c1.svg) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base_tl.color_1 span::after {
  content: "";
  background: url(../img/ico_tl_c1.svg) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base_tl.color_2 span {
  color: #fff;
}
.base_tl.color_2 span::before {
  content: "";
  background: url(../img/ico_tl_c2.svg) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.base_tl.color_2 span::after {
  content: "";
  background: url(../img/ico_tl_c2.svg) no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/*==============================================================
	ボタン関係
===============================================================*/
.base_btn {
  display: flex;
  max-width: 240px;
  background-color: #fff;
  padding: 10px;
  margin: auto;
  border-radius: 100px;
  justify-content: center;
  color: #8e1d44;
}
.base_btn img {
  width: 20px;
  margin-right: 10px;
}

.base_btn_2 {
  display: flex;
  max-width: 240px;
  background-color: #8e1d44;
  padding: 10px;
  margin: auto;
  border-radius: 100px;
  justify-content: center;
  color: #fff;
}
.base_btn_2 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: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 8px;
  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: 120px 0 40px;
  color: #8e1d44;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(30px, 5vw, 38px);
  background: url(../img/headline.png) no-repeat top/cover;
}
#headline .tl {
  text-align: center;
}

/*==============================================================
	共通パーツ
===============================================================*/
.controller_box {
  display: flex;
  justify-content: center;
}
.controller_box li {
  width: 20%;
  margin-right: 2px;
  text-align: center;
  color: #fff;
  background-color: #8e1d44;
  border-left: none;
  padding: 20px 5px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 1vw, 24px);
  position: relative;
  font-family: "vdl-v7marugothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  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: #ead162;
}
.controller_box li.is-active a {
  color: #8e1d44;
}
.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: #8e1d44;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.3s ease;
}
.switchIcon::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #8e1d44;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

.answerBox {
  display: none;
}

.open .que_box .switchIcon::before {
  transform: rotate(-45deg);
}
.open .que_box .switchIcon::after {
  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 */