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

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

[class*=fl_box] {
  display: -webkit-flex;
  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: 30px;
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.base_tl span {
  font-size: clamp(40px, 5vw, 40px);
  display: inline-block;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.base_tl .svgSample1 {
  height: 70px;
}
.base_tl .svgSample2 {
  display: none;
  height: 70px;
}
.base_tl .svgSample1 text {
  font-weight: bold;
  stroke: #ffffff;
  fill: #4a8e8c;
  letter-spacing: 1px;
  text-anchor: middle;
  dominant-baseline: alphabetic;
}
.base_tl .svgSample1 > svg {
  width: 800px;
}
.base_tl .svgSample1 > svg > use:nth-of-type(1) {
  stroke-width: 5px;
  paint-order: stroke;
  stroke-linejoin: round;
}
.base_tl .svgSample1 > svg > use:nth-of-type(2) {
  stroke-width: 0;
}
.base_tl .svgSample2 text {
  font-weight: bold;
  stroke: #ffffff;
  fill: #4a8e8c;
  letter-spacing: 1px;
  text-anchor: middle;
  dominant-baseline: alphabetic;
}
.base_tl .svgSample2 > svg {
  width: 320px;
}
.base_tl .svgSample2 > svg > use:nth-of-type(1) {
  stroke-width: 5px;
  paint-order: stroke;
  stroke-linejoin: round;
}
.base_tl .svgSample2 > svg > use:nth-of-type(2) {
  stroke-width: 0;
}
.base_tl.color_1 span {
  color: #4a8e8c;
}
.base_tl.color_1 span::before {
  content: "";
  background: url(../img/ico_tl_c1.svg) no-repeat;
  width: 300px;
  height: 126px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.base_tl.color_2 span {
  color: #4a8e8c;
}
.base_tl.color_2 span::before {
  content: "";
  background: url(../img/ico_tl_c2.svg) no-repeat;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translate(0%, -50%);
  z-index: -1;
}
.base_tl.color_3 span {
  color: #4a8e8c;
  text-shadow: 3px 3px 2px #fff, -3px 3px 2px #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}

/*==============================================================
	ボタン関係
===============================================================*/
.base_btn {
  display: flex;
  max-width: 300px;
  background-image: linear-gradient(-80deg, #63c2dc, #8cdbf1);
  box-shadow: 3px 3px 0px #c7c8c8;
  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.svg) no-repeat;
  width: 22px;
  height: 14px;
  position: absolute;
  right: 10%;
  transform: rotate(270deg);
  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, #63c2dc, #8cdbf1);
  box-shadow: 3px 3px 0px #c7c8c8;
  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: #4a8e8c;
  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: 100px 0;
  background: url(../img/headline.webp) no-repeat bottom/cover;
}
#headline .tl {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#headline img {
  width: 25vw;
  max-width: 200px;
}
#kikaku #headline img {
  max-width: 250px;
}
#bunten #headline img {
  max-width: 300px;
}
#vote #headline img {
  max-width: 350px;
}

/*==============================================================
	共通パーツ
===============================================================*/
.controller_box {
  display: flex;
  justify-content: center;
}
.controller_box li {
  width: 20%;
  margin-right: 2px;
  text-align: center;
  color: #fff;
  background-color: #7ec7d8;
  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;
  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: #4a8e8c;
}
.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: #4a8e8c;
  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: #4a8e8c;
  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 */