@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap"); /*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl,
dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote, q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}
a:hover, a:active {
  text-decoration: none;
  /* opacity: 0.75; */
  /* filter: alpha(opacity=75); */
}

a,
a * {
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* 追加 */
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.lg_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}
@media screen and (max-width: 900px) {
  .lg_contain {
    padding: 0 1.5rem;
  }
}

.md_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 768px;
}
@media screen and (max-width: 768px) {
  .md_contain {
    padding: 0 1.5rem;
  }
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 表示切り替え */
.sp_on {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc_on {
    display: none !important;
  }
  .sp_on {
    display: block !important;
  }
}
/* LAZYLOAD SETTINGS */
.blurUp {
  filter: blur(5px);
  transition: filter 400ms;
}
.blurUp.lazyloaded {
  filter: blur(0);
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* flex layout */
.flex {
  display: flex;
}

.f_wrap {
  flex-wrap: wrap;
}

.f_content_stretch {
  justify-content: stretch;
}

.f_content_between {
  justify-content: space-between;
}

.f_content_around {
  justify-content: space-around;
}

.f_content_evenly {
  justify-content: space-evenly;
}

.f_content_start {
  justify-content: flex-start;
}

.f_content_center {
  justify-content: center;
}

.f_content_end {
  justify-content: flex-end;
}

.f_align_start {
  align-items: flex-start;
}

.f_align_center {
  align-items: center;
}

.f_align_end {
  align-items: flex-end;
}

.f_align_stretch {
  align-items: stretch;
}

.f_column {
  flex-direction: column;
}

.f_grow {
  flex-grow: 1;
}

.w_full {
  width: 100%;
}

.f_screen {
  width: 100vw;
}

.left_on {
  text-align: left;
}

.right_on {
  text-align: right;
}

.center_on {
  text-align: center;
}

.inview {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1s;
}
.inview.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.thumb img {
  transition: all 0.3s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center";
}

/*--------------------------------------------------------------
    # メインコンテンツ
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.6;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.4vw;
  }
}

body {
  width: 100%;
  line-height: 1.7;
  font-family: "Noto Sans JP", メイリオ, Meiryo, sans-serif;
}

#wrapper {
  overflow: hidden;
  position: relative;
}
#wrapper main {
  position: relative;
}
/*--------------------------------------------------------------
    # text & background style
--------------------------------------------------------------*/
.bg_lime1 {
  background: #fcffe6;
}

.bg_lime2 {
  background: #f4ffb8;
}

.bg_lime3 {
  background: #eaff8f;
}

.bg_lime4 {
  background: #d3f261;
}

.bg_lime5 {
  background: #bae637;
}

.bg_lime6 {
  background: #a0d911;
}

.bg_lime7 {
  background: #7cb305;
}

.bg_lime8 {
  background: #5b8c00;
}

.bg_lime9 {
  background: #3f6600;
}

.bg_lime0 {
  background: #254000;
}

.bg_wblue {
  background: #1890ff;
}

.bg_grey {
  background: #ccc;
}

.t_white {
  color: #ffffff;
}

.t_lime1 {
  color: #fcffe6;
}

.t_lime2 {
  color: #f4ffb8;
}

.t_lime3 {
  color: #eaff8f;
}

.t_lime4 {
  color: #d3f261;
}

.t_lime5 {
  color: #bae637;
}

.t_lime6 {
  color: #a0d911;
}

.t_lime7 {
  color: #7cb305;
}

.t_lime8 {
  color: #5b8c00;
}

.t_lime9 {
  color: #3f6600;
}

.t_lime0 {
  color: #254000;
}

.t_wblue {
  color: #1890ff;
}

.t_red {
  color: #f5222d;
}

.tdesc {
  font-size: 1.2rem;
}

.sdesc {
  font-size: 1.5rem;
}

.desc {
  font-size: 1.8rem;
}

.ldesc {
  font-size: 2rem;
}

.f_r {
  font-weight: 400;
}

.f_m {
  font-weight: 500;
}

.f_b {
  font-weight: 700;
}

.link_grid {
  width: 100%;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -999rem;
}

input[type=radio]:checked, input[type=radio]:not(:checked) {
  position: absolute;
  left: -999rem;
}
input[type=radio]:not(:checked) + label.radio_label::after, input[type=radio]:not(:checked) + label.radio-label span:first-child::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
input[type=radio]:checked + label.radio_label::after, input[type=radio]:checked + label.radio-label span:first-child::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

input[type=number] {
  width: 7rem;
  height: 4rem;
  padding: 0 0 0 1rem;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-bottom: solid #d9d9d9 2px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.2;
}
input[type=number]:focus {
  outline: none;
}

input[type=text] {
  height: 4rem;
  padding: 0 1rem;
  background: transparent;
  border: none;
  border-bottom: solid #d9d9d9 2px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.2;
}
input[type=text]:focus {
  outline: none;
}

label {
  cursor: pointer;
}

.tick-icon {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.check_box:checked + .checkbox-label span:first-child {
  background: #3f6600;
  border-color: #3f6600;
  transition: scale(0.9) 0.4s ease;
}
.check_box:checked + .checkbox-label span:first-child svg {
  stroke-dashoffset: 0;
}

label.checkbox-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  transition: all 0.2s ease;
}
label.checkbox-label span {
  font-weight: 500;
}
label.checkbox-label span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 2px solid #3f6600;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
label.checkbox-label span:first-child svg {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
}
label.checkbox-label span:last-child {
  padding-left: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
label.checkbox-label:hover span:first-child {
  border-color: #7cb305;
}

label.radio-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  transition: all 0.2s ease;
  font-size: 1.4rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  label.radio-label {
    width: 100%;
  }
}
label.radio-label span {
  font-weight: 500;
}
label.radio-label span:first-child {
  position: relative;
  width: 2rem;
  height: 2rem;
}
label.radio-label span:first-child::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ccc;
  border-radius: 100%;
  background: #fff;
}
label.radio-label span:first-child::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: #F87DA9;
  border-radius: 100%;
  transition: all 0.2s ease;
}
label.radio-label span:last-child {
  padding-left: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  label.radio-label span:last-child {
    width: calc(100% - 2.5rem);
  }
}
label.radio-label:hover span:first-child {
  border-color: #7cb305;
}

.link_btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 5rem;
  min-width: 25rem;
  margin: 0 1rem;
  position: relative;
  border: none;
  outline: none;
  color: #eeeeee;
  font-size: 1.4rem;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0.6rem;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.link_btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 9000px;
  background: #ffffff;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
}
.link_btn.bg_grey {
  font-weight: 500;
  color: #000;
}
.link_btn:focus {
  outline: 0;
}
.link_btn:disabled, .link_btn[disabled] {
  background: #3f6600;
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.wrap-login100 {
  position: relative;
}

.submit-form {
  width: 100%;
  /*------------------------------------------------------------------
  [ Input ]*/
  /*------------------------------------------------------------------
  [ Button ]*/
  /*------------------------------------------------------------------
  [ Alert validate ]*/
}
.submit-form .submit-form-title {
  display: block;
  font-weight: 700;
  font-size: 3.5rem;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}
.submit-form .alert {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 1.5rem;
  display: inline-block;
  width: calc(100% - 10rem);
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #c80000;
  border: solid #c80000 1px;
  transition: all 0.5s;
}
.submit-form .alert.open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}
.submit-form .wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}
.submit-form .wrap-input100 .label-input100 {
  display: inline-block;
  font-weight: 500;
  font-size: 1.5rem;
  color: #333333;
  line-height: 1.5;
  padding-left: 7px;
}
.submit-form .wrap-input100 .input100 {
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 4rem;
  background: transparent;
  padding: 0 7px 0 43px;
}
.submit-form .wrap-input100 .input100:focus + .focus-input100::before {
  width: 100%;
}
.submit-form .wrap-input100 .input100:focus + .focus-input100::after {
  color: #a64bf4;
}
.submit-form .wrap-input100 .has-val.input100 + .focus-input100::before {
  width: 100%;
}
.submit-form .wrap-input100 .has-val.input100 + .focus-input100::after {
  color: #a64bf4;
}
.submit-form .wrap-input100 .focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.submit-form .wrap-input100 .focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  color: #adadad;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 1.3rem;
  padding-top: 0;
}
.submit-form .wrap-input100 .focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7f7f7f;
  transition: all 0.4s;
}
.submit-form .container-login100-form-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.submit-form .container-login100-form-btn .wrap-login100-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 5px 30px 0px rgba(3, 216, 222, 0.2);
}
.submit-form .container-login100-form-btn .wrap-login100-form-btn:hover .login100-form-bgbtn {
  left: 0;
}
.submit-form .container-login100-form-btn .wrap-login100-form-btn .login100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: linear-gradient(270deg, #bae637, #254000, #bae637, #254000);
  top: 0;
  left: -100%;
  transition: all 0.4s;
}
.submit-form .container-login100-form-btn .wrap-login100-form-btn .login100-form-btn {
  font-weight: 600;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}
.submit-form .validate-input {
  position: relative;
}
.submit-form .alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: 2rem;
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;
  color: #c80000;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: left;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s;
}
@media (max-width: 992px) {
  .submit-form .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}
.submit-form .alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 1.6rem;
  bottom: 2rem;
  transform: translateY(50%);
  right: 8px;
}
.submit-form .alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.category_label {
  position: relative;
  width: 100%;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
  border-bottom: solid #d3f261 2px;
}
.category_label::after {
  position: absolute;
  content: "";
  width: 15rem;
  height: 2px;
  background: #7cb305;
  left: 0;
  bottom: -2px;
}

.grid_qlabel {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 1.8rem;
  padding-left: 5.5rem;
}
.grid_qlabel::after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 3rem;
  background: linear-gradient(0deg, #254000 20%, #5b8c00 60%, #7cb305 100%);
  left: 0;
  top: 0;
}
.grid_qlabel::before {
  position: absolute;
  padding-left: 1.5rem;
  top: 0rem;
  left: 0;
  width: 5rem;
  height: 100%;
}
.grid_qlabel.q_01::before {
  content: "Q1.";
}
.grid_qlabel.q_02::before {
  content: "Q2.";
}
.grid_qlabel.q_03::before {
  content: "Q3.";
}
.grid_qlabel.q_04::before {
  content: "Q4.";
}
.grid_qlabel.q_05::before {
  content: "Q5.";
}
.grid_qlabel.q_06::before {
  content: "Q6.";
}
.grid_qlabel.q_07::before {
  content: "Q7.";
}
.grid_qlabel.q_08::before {
  content: "Q8.";
}
.grid_qlabel.q_09::before {
  content: "Q9.";
}
.grid_qlabel.q_10::before {
  content: "Q10.";
}
.grid_qlabel.q_11::before {
  content: "Q11.";
}

span.require {
  display: inline-block;
  padding: 0 1rem;
  background: #f5222d;
  border-radius: 0.3rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  margin-left: 1rem;
}

ul.option_grid {
  position: relative;
  width: 100%;
}
ul.option_grid li {
  width: 100%;
  border-bottom: solid #dfdfdf 1px;
}
ul.option_grid li:nth-of-type(2n) {
  background: #fafafa;
}
ul.option_grid li.field_hd {
  position: -webkit-sticky;
  position: sticky;
  padding: 1rem 0;
  top: 0;
}
ul.option_grid li.field_hd.col4 p {
  width: 25%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
}
ul.option_grid li.field_hd.col5 p {
  width: 20%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
}
ul.option_grid li.field_hd.col6 p {
  width: 16.666%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
}
ul.option_grid li.field_hd.col7 p {
  width: 14%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
  flex-grow: 1;
}
ul.option_grid li.q_block {
  padding-top: 0;
}
ul.option_grid li.q_block .q_line {
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  ul.option_grid li.q_block .q_line {
    flex-wrap: wrap;
  }
}
ul.option_grid li.q_block .q_line p.q_line_m {
  margin-right: 1rem;
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  ul.option_grid li.q_block .q_line p.q_line_m {
    width: 100%;
  }
}
ul.option_grid li.q_block .q_line p.q_line_d {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  ul.option_grid li.q_block .q_line p.q_line_d {
    width: 100%;
  }
}
ul.option_grid li.q_block .a_line {
  padding: 0.5rem 0;
}
ul.option_grid li.q_block .a_line.col4 p {
  width: 25%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
}
ul.option_grid li.q_block .a_line.col5 p {
  width: 20%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
}
ul.option_grid li.q_block .a_line.col6 p {
  width: 16.666%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
}
ul.option_grid li.q_block .a_line.col7 p {
  width: 14%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.3;
  flex-grow: 1;
}
ul.option_grid li.q_block .a_line label.radio_label {
  position: relative;
  cursor: pointer;
  margin: auto;
  width: 96%;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 3rem;
  background: #e8e8e8;
}
ul.option_grid li.q_block .a_line label.radio_label::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  border: 1px solid #ccc;
  border-radius: 100%;
  background: #fff;
}
ul.option_grid li.q_block .a_line label.radio_label::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: #F87DA9;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.question_txt,
.option_grid {
  width: 100%;
}
.question_txt p.para1,
.option_grid p.para1 {
  margin-right: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
}
.question_txt p.para2,
.option_grid p.para2 {
  color: #f5222d;
  font-size: 1rem;
}

.question_toggle {
  position: relative;
  display: flex;
}
.question_toggle input[type=checkbox].ToggleBtn {
  opacity: 0;
  position: absolute;
}
.question_toggle input[type=checkbox].ToggleBtn:checked + label::before {
  background: #7cb305;
  transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.question_toggle input[type=checkbox].ToggleBtn:checked + label::after {
  left: 2.2rem;
}
.question_toggle label {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: 0.4s ease;
  -webkit-tap-highlight-color: transparent;
  height: 3rem;
  width: 5rem;
  border: 1px solid #e4e4e4;
  border-radius: 10rem;
}
.question_toggle label::before {
  content: "";
  position: absolute;
  display: block;
  transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 17, 0.0666666667);
  border-radius: 10rem;
}
.question_toggle label::after {
  content: "";
  position: absolute;
  display: block;
  box-shadow: 0 0 0 1px hsla(0deg, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0deg, 0%, 0%, 0.04), 0 4px 9px hsla(0deg, 0%, 0%, 0.13), 0 3px 3px hsla(0deg, 0%, 0%, 0.05);
  transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
  transform: translateY(-50%);
  background: #f5f5f5;
  height: 2.8rem;
  width: 2.8rem;
  top: 50%;
  left: -0.3rem;
  border-radius: 60px;
}

ul.select_grid {
  width: 100%;
}
ul.select_grid label.combo {
  margin-right: 1rem;
}
ul.select_grid input[type=text] {
  height: 4rem;
  padding: 0 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  background: transparent;
  border: none;
  border-bottom: solid #d9d9d9 2px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.2;
}
ul.select_grid input[type=text]:focus {
  outline: none;
}
ul.select_grid input[type=text].oth_health {
  width: 15rem;
}

label.combo {
  position: relative;
  display: inline-block;
}
label.combo::before {
  position: absolute;
  pointer-events: none;
  display: block;
  z-index: 1;
  content: "";
  transform: translateY(-50%);
  right: 0.2rem;
  top: 50%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.3rem;
  background: rgba(0, 0, 17, 0.0666666667);
}
label.combo::after {
  content: "▼";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  width: 2.6rem;
  color: #999;
  transform: translateY(-50%);
  top: 50%;
  right: 0.2rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

select.selectT01 {
  position: relative;
  width: 30rem;
  height: 4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  border-bottom: solid #d9d9d9 2px;
  font-size: 1.5rem;
  padding: 0 1rem;
  margin: 0;
  border-radius: 0.3rem;
  cursor: pointer;
}

ul.grid_type1 {
  width: 100%;
}
ul.grid_type1 li {
  width: 33%;
}
@media screen and (max-width: 768px) {
  ul.grid_type1 li {
    width: 50%;
  }
}

ul.grid_type2 {
  width: 100%;
}
ul.grid_type2 li {
  width: 100%;
}
ul.grid_type2 li .label_t {
  width: 80%;
}
ul.grid_type2 li .m_label {
  width: 40%;
  padding: 0 0 0 1rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  ul.grid_type2 li .m_label {
    width: 45%;
  }
}
ul.grid_type2 li .exdesc {
  width: 50%;
  padding: 0 1rem;
  font-size: 1.3rem;
}
ul.grid_type2 li .exdesc .w_txt {
  display: none;
  color: #c80000;
}
ul.grid_type2 li .input {
  width: 20%;
}
@media screen and (max-width: 768px) {
  ul.grid_type2 li .input1 {
    width: 50%;
  }
}
ul.grid_type2 li.hd_line .m_label,
ul.grid_type2 li.hd_line .exdesc,
ul.grid_type2 li.hd_line .input {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
ul.grid_type2 li.warning .exdesc .w_txt {
  display: block;
}
ul.grid_type2 li.warning input[type=number] {
  color: #c80000;
  border-bottom: solid #c80000 2px;
}
ul.grid_type2.border_box li {
  border-bottom: solid #eee 1px;
}

@media screen and (max-width: 768px) {
  .text_style1 {
    width: 73%;
  }
}

@media screen and (max-width: 768px) {
  .chk_line {
    width: 100% !important;
  }
}

.sTitle {
  margin-right: 1rem;
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
}

@-webkit-keyframes fadeIn {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes stretch-animate {
  0% {
    transform: scale(1, 1);
  }
  28% {
    transform: scale(1.15, 0.85);
  }
  50% {
    transform: scale(0.9, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes stretch-animate {
  0% {
    transform: scale(1, 1);
  }
  28% {
    transform: scale(1.15, 0.85);
  }
  50% {
    transform: scale(0.9, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes floating {
  0% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-10px);
  }
  66.66667% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  33.33333% {
    transform: translateY(-10px);
  }
  66.66667% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fuwafuwa {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@-webkit-keyframes cloud {
  0% {
    transform: translate(-30px, 0%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud {
  0% {
    transform: translate(-30px, 0%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes cloud-left {
  0% {
    transform: translate(-100%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud-left {
  0% {
    transform: translate(-100%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes cloud-right {
  0% {
    transform: translate(200%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud-right {
  0% {
    transform: translate(200%, 0%);
    opacity: 0.5;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes cloud-down {
  0% {
    transform: translate(0%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes cloud-down {
  0% {
    transform: translate(0%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes shine {
  0% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  70% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
}
@keyframes shine {
  0% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  70% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
}
@-webkit-keyframes ball {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@keyframes ball {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -30px);
  }
}
@-webkit-keyframes koton {
  0% {
    transform: translate(0%, -100%);
    opacity: 0;
  }
  20% {
    transform: translate(0%, 0%);
  }
  30% {
    transform: translate(0%, -10%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  60% {
    transform: translate(0%, -3%);
    opacity: 1;
  }
  80% {
    transform: translate(0%, 0%);
  }
  90% {
    transform: translate(0%, -1%);
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes koton {
  0% {
    transform: translate(0%, -100%);
    opacity: 0;
  }
  20% {
    transform: translate(0%, 0%);
  }
  30% {
    transform: translate(0%, -10%);
  }
  50% {
    transform: translate(0%, 0%);
  }
  60% {
    transform: translate(0%, -3%);
    opacity: 1;
  }
  80% {
    transform: translate(0%, 0%);
  }
  90% {
    transform: translate(0%, -1%);
  }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translate(0, 0px);
  }
  3% {
    transform: translate(0, -20px);
  }
  5% {
    transform: translate(0, 0px);
  }
  6% {
    transform: translate(0, -5px);
  }
  7% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes jump {
  0% {
    transform: translate(0, 0px);
  }
  3% {
    transform: translate(0, -20px);
  }
  5% {
    transform: translate(0, 0px);
  }
  6% {
    transform: translate(0, -5px);
  }
  7% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@-webkit-keyframes exclamation {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -15px);
  }
}
@keyframes exclamation {
  0% {
    transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    transform: translate(0%, -15px);
  }
}
.box1__text3, .p-section__top__textbox4, .box12, .box13, .animation {
  visibility: hidden;
}
.box1__text3.scrolled, .p-section__top__textbox4.scrolled, .box12.scrolled, .box13.scrolled, .animation.scrolled {
  visibility: visible;
}

@-webkit-keyframes checkbox_ani {
  50% {
    transform: scale(0.9);
  }
}

@keyframes checkbox_ani {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes effect {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
@keyframes effect {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
header {
  position: relative;
  width: 100%;
  z-index: 10000;
  background: #fff;
  transition: all 0.3s;
}
header.over {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1843137255);
}
header .lg_contain {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
header .lg_contain h1 {
  font-size: 2.5rem;
  line-height: 3rem;
}

footer {
  position: relative;
  background: #139484;
  color: #fff;
}
footer .ft_top {
  background: #00AE99;
}
footer .ft_top .xl_contain {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
footer .ft-copyright {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

span#about {
  display: block;
  width: 0;
  height: 10rem;
  margin-top: -10rem;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  span#about {
    height: 5rem;
    margin-top: -5rem;
  }
}

article.login {
  /*//////////////////////////////////////////////////////////////////
  [ login ]*/
}
article.login p {
  font-size: 1.4rem;
  color: #666666;
}
article.login input,
article.login textarea {
  outline: none;
  border: none;
}
article.login input::-moz-placeholder, article.login textarea::-moz-placeholder {
  color: #adadad;
}
article.login input:-ms-input-placeholder, article.login textarea:-ms-input-placeholder {
  color: #adadad;
}
article.login input::placeholder,
article.login textarea::placeholder {
  color: #adadad;
}
article.login input:focus,
article.login textarea:focus {
  border-color: transparent !important;
}
article.login input:focus::-moz-placeholder, article.login textarea:focus::-moz-placeholder {
  color: transparent;
}
article.login input:focus:-ms-input-placeholder, article.login textarea:focus:-ms-input-placeholder {
  color: transparent;
}
article.login input:focus::placeholder,
article.login textarea:focus::placeholder {
  color: transparent;
}
article.login button {
  outline: none !important;
  border: none;
  background: transparent;
}
article.login button:hover {
  cursor: pointer;
}
article.login iframe {
  border: none !important;
}
article.login .container-login100 {
  width: 100%;
  min-height: calc(100vh - 7rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: url(../images/bg-02.jpg) 50% 50% no-repeat;
  background-size: cover;
}
article.login .wrap-login100 {
  width: 50rem;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 576px) {
  article.login .wrap-login100 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section {
  position: relative;
  width: 100%;
}
section.policy .lg_contain {
  padding-top: 7rem;
  padding-bottom: 8rem;
}
section.policy .lg_contain h3 {
  font-size: 2.5rem;
  font-weight: 500;
}
section.policy .lg_contain .policy_grid {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 4rem;
  border: solid #254000 2px;
  border-radius: 1rem;
}
section.question .lg_contain {
  padding-top: 7rem;
  padding-bottom: 8rem;
}
section.question .lg_contain ul.zoomDevice {
  width: 100%;
  list-style: none;
}
section.question .lg_contain ul.zoomDevice li {
  width: 100%;
}
section.question .lg_contain ul.zoomDevice li p.device_label {
  width: 17rem;
}
@media screen and (max-width: 768px) {
  section.question .lg_contain ul.zoomDevice li p.device_label {
    width: 100%;
  }
}
section.question .lg_contain ul.zoomDevice li div.device_grid {
  width: calc(100% - 17rem);
}
section.question .lg_contain ul.zoomDevice li div.device_grid div.device_block {
  width: 14rem;
}
@media screen and (max-width: 768px) {
  section.question .lg_contain ul.zoomDevice li div.device_grid div.device_block {
    width: 100%;
    padding: 0.5rem 0;
  }
}
section.question .lg_contain ul.zoomDevice li div.device_grid div.device_block .checkbox-label span:nth-of-type(2) {
  line-height: 1.25;
}
section.question .lg_contain .nodevice_grid {
  width: 100%;
}
section.question .lg_contain .nodevice_grid li {
  width: 100%;
}
section.question .lg_contain ul.videoDevice {
  width: 100%;
  list-style: none;
}
section.question .lg_contain .input100 {
  border: none;
}
section.question .lg_contain ul.baseInfor {
  display: table;
  width: auto;
  list-style: none;
  margin: auto;
}
section.question .lg_contain ul.baseInfor li.b_infor {
  width: 100%;
}
section.question .lg_contain ul.baseInfor li.b_infor p.binfor_label {
  width: 7rem;
}
section.question .lg_contain ul.baseInfor li.b_infor .wrap-input100 {
  width: 15rem;
  margin-right: 1.5rem;
}
section.question .lg_contain ul.baseInfor li.b_infor .wrap-input100 .input100 {
  padding-left: 1rem;
}
section.question .lg_contain ul.baseInfor li.b_infor .wrap-input100 .harf_w {
  width: 6.5rem;
}
section.question .lg_contain ul.baseInfor li.b_infor .wrap-input100 .btlabel {
  text-align: center;
  width: 2rem;
}
section.question .lg_contain .link_grid {
  margin-top: 5rem;
}
section.question .lg_contain textarea.textarea_style1 {
  width: 100%;
  height: 10rem;
  padding: 1rem;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-bottom: solid #d9d9d9 2px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.2;
}
section.question .lg_contain .detail_line {
  width: 75%;
}
@media screen and (max-width: 768px) {
  section.question .lg_contain .detail_line {
    width: 100%;
  }
}
section.question .lg_contain .input2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  section.question .lg_contain .input2 {
    width: 100%;
  }
}
section.question .lg_contain .content_box,
section.question .lg_contain .ciga1,
section.question .lg_contain .ciga1-sub {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.3s;
}
section.question .lg_contain .content_box.visible,
section.question .lg_contain .ciga1.visible,
section.question .lg_contain .ciga1-sub.visible {
  visibility: visible;
  opacity: 1;
  height: auto;
  transition: all 0.5s;
}/*# sourceMappingURL=style.css.map */