@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-display: swap;
  src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"),
    url("../fonts/Pretendard-Black.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"),
    url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"),
    url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"),
    url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"),
    url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"),
    url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"),
    url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"),
    url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"),
    url("../fonts/Pretendard-Thin.woff") format("woff");
}
@font-face {
  font-family: "Hanwha";
  font-weight: 300;
  font-display: swap;
  src: local("HanwhaL"), url("../fonts/HanwhaL.woff2") format("woff2"), url("../fonts/HanwhaL.woff") format("woff");
}
@font-face {
  font-family: "Hanwha";
  font-weight: 400;
  font-display: swap;
  src: local("HanwhaR"), url("../fonts/HanwhaR.woff2") format("woff2"), url("../fonts/HanwhaR.woff") format("woff");
}
@font-face {
  font-family: "Hanwha";
  font-weight: 700;
  font-display: swap;
  src: local("HanwhaB"), url("../fonts/HanwhaB.woff2") format("woff2"), url("../fonts/HanwhaB.woff") format("woff");
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li,
ol li {
  list-style: none;
}
em,
i {
  font-style: normal;
}
select {
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  height: 100%;
  font-family: "Pretendard", sans-serif;
  letter-spacing: -0.4px;
  background-color: #f5f5f5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
table {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  border-color: inherit;
  border-collapse: collapse;
  border-spacing: 0;
}
a,
button {
  color: #000;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 4.2666666667vw !important;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 16px !important;
  }
}
.select_value {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.select_value:empty + .select_placeholder {
  display: inline;
}
.select_placeholder {
  display: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: #9e9e9e;
}
.select_pop_wrap {
  display: block;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  background-color: rgba(20, 20, 43, 0.45);
}
.select_pop_wrap.active {
  opacity: 1;
  visibility: visible;
}
.select_pop_wrap.active .select_pop {
  bottom: 0;
}
.select_pop_wrap .select_pop {
  position: absolute;
  left: 0;
  bottom: -100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  max-height: calc(100% - 2.5rem);
  background-color: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}
.select_pop_wrap .select_pop_top {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-height: 4rem;
  padding: 1.25rem 1.5rem;
}
.select_pop_wrap .select_pop_top .select_pop_label {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 600;
  margin-right: 2.125rem;
}
.select_pop_wrap .select_pop_top .select_pop_close {
  display: inline-block;
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  text-indent: -62.4375rem;
  background: url(../img/icon_close_24.svg) no-repeat center center/1.5rem auto;
}
.select_pop_wrap .select_pop_list {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.select_pop_wrap .select_pop_list label {
  display: block;
  position: relative;
}
.select_pop_wrap .select_pop_list label > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.select_pop_wrap .select_pop_list label > input:checked ~ span {
  background-color: #f8f8f8;
}
.select_pop_wrap .select_pop_list label > input:active ~ span {
  background-color: #f8f8f8;
}
.select_pop_wrap .select_pop_list label > input:disabled ~ span {
  color: #9e9e9e;
  background-color: #fff;
}
.select_pop_wrap .select_pop_list label > span {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: left;
  padding: 0.625rem 1.5rem;
  min-height: 2.75rem;
  color: #202020;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.select_pop_wrap .select_pop_bottom {
  display: none;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 2rem 1.25rem;
}
.select_pop_wrap .select_pop_bottom .select_pop_ok {
  display: block;
  width: 100%;
}
.select_pop_wrap.select_pop_btn_on .select_pop_bottom {
  display: block;
}
.w_max_100p {
  max-width: 100% !important;
}
.w_auto {
  width: auto !important;
}
.w_100p {
  width: 100% !important;
}
.w_76 {
  width: 4.75rem !important;
}
.w_80 {
  width: 5rem !important;
}
.w_90 {
  width: 5.625rem !important;
}
.w_107 {
  width: 6.6875rem !important;
}
.w_120 {
  width: 7.5rem !important;
}
.w_135 {
  width: 8.4375rem !important;
}
.mb_m30 {
  margin-bottom: -1.875rem !important;
}
.mt_0 {
  margin-top: 0 !important;
}
.mt_2 {
  margin-top: 0.125rem !important;
}
.mt_4 {
  margin-top: 0.25rem !important;
}
.mt_5 {
  margin-top: 0.3125rem !important;
}
.mt_8 {
  margin-top: 0.5rem !important;
}
.mt_10 {
  margin-top: 0.625rem !important;
}
.mt_12 {
  margin-top: 0.75rem !important;
}
.mt_14 {
  margin-top: 0.875rem !important;
}
.mt_16 {
  margin-top: 1rem !important;
}
.mt_16 {
  margin-top: 1rem !important;
}
.mt_20 {
  margin-top: 1.25rem !important;
}
.mt_22 {
  margin-top: 1.375rem !important;
}
.mt_24 {
  margin-top: 1.5rem !important;
}
.mt_28 {
  margin-top: 1.75rem !important;
}
.mt_30 {
  margin-top: 1.875rem !important;
}
.mt_32 {
  margin-top: 2rem !important;
}
.mt_38 {
  margin-top: 2.375rem !important;
}
.mt_40 {
  margin-top: 2.5rem !important;
}
.mt_45 {
  margin-top: 2.8125rem !important;
}
.mt_48 {
  margin-top: 3rem !important;
}
.mt_50 {
  margin-top: 3.125rem !important;
}
.mt_56 {
  margin-top: 3.5rem !important;
}
.mt_60 {
  margin-top: 3.75rem !important;
}
.mt_64 {
  margin-top: 4rem !important;
}
.mt_72 {
  margin-top: 4.5rem !important;
}
.mb_0 {
  margin-bottom: 0 !important;
}
.mb_4 {
  margin-bottom: 0.25rem !important;
}
.mb_5 {
  margin-bottom: 0.3125rem !important;
}
.mb_8 {
  margin-bottom: 0.5rem !important;
}
.mb_10 {
  margin-bottom: 0.625rem !important;
}
.mb_12 {
  margin-bottom: 0.75rem !important;
}
.mb_14 {
  margin-bottom: 0.875rem !important;
}
.mb_16 {
  margin-bottom: 1rem !important;
}
.mb_20 {
  margin-bottom: 1.25rem !important;
}
.mb_24 {
  margin-bottom: 1.5rem !important;
}
.mb_28 {
  margin-bottom: 1.75rem !important;
}
.mb_32 {
  margin-bottom: 2rem !important;
}
.mb_40 {
  margin-bottom: 2.5rem !important;
}
.mb_56 {
  margin-bottom: 3.5rem !important;
}
.mb_72 {
  margin-bottom: 4.5rem !important;
}
.ml_auto {
  margin-left: auto !important;
}
.ml_0 {
  margin-left: 0 !important;
}
.ml_4 {
  margin-left: 0.25rem !important;
}
.ml_6 {
  margin-left: 0.375rem !important;
}
.ml_8 {
  margin-left: 0.5rem !important;
}
.ml_10 {
  margin-left: 0.625rem !important;
}
.ml_16 {
  margin-left: 1rem !important;
}
.mr_0 {
  margin-right: 0 !important;
}
.mr_16 {
  margin-right: 1rem !important;
}
.pd_0 {
  padding: 0 !important;
}
.px_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px_20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.py_0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py_24 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.pt_0 {
  padding-top: 0 !important;
}
.pt_8 {
  padding-top: 0.5rem !important;
}
.pt_16 {
  padding-top: 1rem !important;
}
.pt_20 {
  padding-top: 1.25rem !important;
}
.pt_24 {
  padding-top: 1.5rem !important;
}
.pt_28 {
  padding-top: 1.75rem !important;
}
.pt_32 {
  padding-top: 2rem !important;
}
.pt_40 {
  padding-top: 2.5rem !important;
}
.pt_64 {
  padding-top: 4rem !important;
}
.pr_8 {
  padding-right: 0.5rem !important;
}
.pr_14 {
  padding-right: 0.875rem !important;
}
.pr_15 {
  padding-right: 0.9375rem !important;
}
.pr_16 {
  padding-right: 1rem !important;
}
.pr_24 {
  padding-right: 1.5rem !important;
}
.pr_40 {
  padding-right: 2.5rem !important;
}
.pb_0 {
  padding-bottom: 0 !important;
}
.pb_14 {
  padding-bottom: 0.875rem !important;
}
.pb_16 {
  padding-bottom: 1rem !important;
}
.pb_24 {
  padding-bottom: 1.5rem !important;
}
.pb_30 {
  padding-bottom: 1.875rem !important;
}
.pb_32 {
  padding-bottom: 2rem !important;
}
.pb_40 {
  padding-bottom: 2.5rem !important;
}
.pb_48 {
  padding-bottom: 3rem !important;
}
.pb_50 {
  padding-bottom: 3.125rem !important;
}
.pb_56 {
  padding-bottom: 3.5rem !important;
}
.pb_60 {
  padding-bottom: 3.75rem !important;
}
.pl_8 {
  padding-left: 0.5rem !important;
}
.pl_14 {
  padding-left: 0.875rem !important;
}
.pl_15 {
  padding-left: 0.9375rem !important;
}
.pl_16 {
  padding-left: 1rem !important;
}
.pl_24 {
  padding-left: 1.5rem !important;
}
.fw_1 {
  font-weight: 100 !important;
}
.fw_2 {
  font-weight: 200 !important;
}
.fw_3 {
  font-weight: 300 !important;
}
.fw_4 {
  font-weight: 400 !important;
}
.fw_5 {
  font-weight: 500 !important;
}
.fw_6 {
  font-weight: 600 !important;
}
.fw_7 {
  font-weight: 700 !important;
}
.fw_8 {
  font-weight: 800 !important;
}
.fw_9 {
  font-weight: 900 !important;
}
.fz_12 {
  font-size: 0.75rem !important;
}
.fz_13 {
  font-size: 0.8125rem !important;
}
.fz_14 {
  font-size: 0.875rem !important;
}
.fz_15 {
  font-size: 0.9375rem !important;
}
.fz_16 {
  font-size: 1rem !important;
}
.fz_18 {
  font-size: 1.125rem !important;
}
.fz_24 {
  font-size: 1.5rem !important;
}
.ta_l {
  text-align: left !important;
}
.ta_c {
  text-align: center !important;
}
.ta_r {
  text-align: right !important;
}
.va_m {
  vertical-align: middle !important;
}
.va_b {
  vertical-align: bottom !important;
}
.color_1 {
  color: #f60 !important;
}
.color_2 {
  color: #999 !important;
}
.color_3 {
  color: #888 !important;
}
.color_4 {
  color: #0084f4 !important;
}
.color_5 {
  color: #ff4b33 !important;
}
.color_6 {
  color: #666 !important;
}
.color_7 {
  color: #fe3333 !important;
}
.color_8 {
  color: #333 !important;
}
.color_9 {
  color: #3f3f3f !important;
}
.color_10 {
  color: #202020 !important;
}
.color_11 {
  color: #f9f7f4 !important;
}
.color_12 {
  color: #fff !important;
}
.color_13 {
  color: #24b2b2 !important;
}
.color_14 {
  color: red !important;
}
.bg_white {
  background-color: #fff !important;
}
.bg_gray {
  background-color: #f5f5f5 !important;
}
.bg_light {
  background-color: #f7f5f2 !important;
}
.bg_ivory {
  background-color: #f9f7f4 !important;
}
.bg_c_ty1 {
  background-color: #fff9f2 !important;
}
.bg_c_ty2 {
  background-color: #fff5ed !important;
}
.normal_text {
  word-break: keep-all;
}
.normal_text.ty1 {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #3f3f3f;
}
.normal_text.ty2 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #f60;
}
.normal_text.ty3 {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #888;
}
.normal_text.ty4 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.normal_text.ty5 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.normal_text.ty6 {
  display: inline-block;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #f60;
  background: url(../img/icon_list_bullet02.svg) no-repeat left 0.1875rem/0.5rem auto;
}
.normal_text.ty7 {
  display: inline-block;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #f60;
  background: url(../img/icon_list_bullet02.svg) no-repeat left 0.4375rem/0.5rem auto;
}
.fvn {
  font-variant-numeric: tabular-nums lining-nums;
}
.fvn_none {
  font-variant-numeric: normal !important;
}
.flex_none {
  -webkit-box-flex: 0 !important;
  -moz-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}
.display_ib {
  display: inline-block;
}
.display_flex {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.display_block {
  display: block !important;
}
.space_between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align_center {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align_end {
  -webkit-box-align: end !important;
  -moz-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.bd_none {
  border: none !important;
}
.border {
  border-style: solid;
}
.border_top {
  border-top-width: 0.0625rem;
}
.border_top.c_1 {
  border-color: #ececec;
}
.f_right {
  float: right !important;
}
.hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.underline {
  text-decoration: underline !important;
}
.keep_all {
  word-break: keep-all !important;
}
.overflow_h {
  overflow: hidden !important;
}
.sticky_cont {
  position: sticky !important;
  left: 0;
  z-index: 2;
}
.sticky_cont.t0 {
  top: 0;
}
.hanwha {
  font-family: "Hanwha" !important;
}
.empty_dom.ty1 {
  min-height: 7.125rem;
}
.full_popup_wrap,
.wrap {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.full_popup_wrap .main,
.wrap .main {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 2.5rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.full_popup_wrap .main > :not(.stretch_box):not(.dic_cont),
.wrap .main > :not(.stretch_box):not(.dic_cont) {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background-color: #fff;
}
.full_popup_wrap .main .tab_list.ty_2,
.wrap .main .tab_list.ty_2 {
  background-color: #f5f5f5;
}
.full_popup_wrap .main .stretch_box,
.wrap .main .stretch_box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  padding-top: 2rem;
}
.full_popup_wrap .main .stretch_box.pt_cmn,
.wrap .main .stretch_box.pt_cmn {
  padding-top: 1.5rem;
}
.full_popup_wrap > .btn_area,
.wrap > .btn_area {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.full_popup_wrap .wrap_bottom,
.wrap .wrap_bottom {
  padding: 1rem 1.5rem;
}
.full_popup_wrap {
  position: fixed !important;
  display: none !important;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: #f5f5f5;
}
.full_popup_wrap.active {
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.header {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background: #fff;
  width: 100%;
  min-height: 3.5rem;
  padding: 0.5rem 1.5rem;
}
.header.line {
  border-bottom: 0.0625rem solid #ececec;
}
.header > .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 2.5rem;
}
.header > .inner .title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.header > .inner .title a {
  color: #000;
}
.header > .inner .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.header > .inner .left .link {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background: #fff url(../img/icon_history_back.svg) no-repeat center center/1.25rem auto;
}
.header > .inner .left .link::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  width: calc(100% + 1.5rem);
  height: calc(100% + 1rem);
}
.header > .inner .left .myinfo {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
}
.header > .inner .left .myinfo .photo {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 0.8125rem;
  margin-right: 0.375rem;
  background-color: #eee;
}
.header > .inner .left .myinfo .photo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.header > .inner .left .myinfo strong {
  font-weight: 700;
  font-size: inherit;
}
.header > .inner .left .has_search.ty3 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.header > .inner .right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.header > .inner .right a {
  display: inline-block;
  overflow: hidden;
  text-indent: -624.9375rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 1.25rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.header > .inner .right a.card {
  width: 1.375rem;
}
.header > .inner .right .h_chker {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  font-size: 0;
  line-height: normal;
}
.header > .inner .right .h_chker input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.header > .inner .right .h_chker input + i {
  display: block;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.25rem auto;
}
.header > .inner .right .h_chker.chker_favorite input + i {
  background-image: url(../img/header/icon_favorite.svg);
}
.header > .inner .right .h_chker.chker_favorite input:checked + i {
  background-image: url(../img/header/icon_favorite_on.svg);
}
.header > .inner .right .h_chker.chker_bookmark input + i {
  background-image: url(../img/header/icon_bookmark.svg);
}
.header > .inner .right .h_chker.chker_bookmark input:checked + i {
  background-image: url(../img/header/icon_bookmark_on.svg);
}
.header > .inner .right .h_chker.chker_heart input + i {
  background-image: url(../img/header/icon_heart.svg);
}
.header > .inner .right .h_chker.chker_heart input:checked + i {
  background-image: url(../img/header/icon_heart_on.svg);
}
.header > .inner .right .line {
  display: inline-block;
  height: 1.125rem;
  margin: 0 1rem;
  border-left: 0.0625rem solid #ececec;
}
.header > .inner .right .line + * {
  margin-left: 0;
}
.header > .inner .right .search {
  background-image: url(../img/header/icon_search.svg);
}
.header > .inner .right .bell {
  background-image: url(../img/header/icon_bell.svg);
}
.header > .inner .right .bell.active {
  background-image: url(../img/header/icon_bell_active.svg);
}
.header > .inner .right .card {
  background-image: url(../img/header/icon_card.svg);
}
.header > .inner .right .menu {
  background-image: url(../img/header/icon_menu.svg);
}
.header > .inner .right .registration {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.875rem;
  color: #f60;
  border-radius: 1.5625rem;
  border: 0.0625rem solid #f60;
  text-indent: 0;
}
.header > .inner .right .registration::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.125rem;
  background: url(../img/header/icon_regi_etc.svg) no-repeat center center/cover;
}
.header > .inner .right .registration.off {
  color: #3f3f3f;
  border: 0.0625rem solid #3f3f3f;
}
.header > .inner .right .registration.off::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.125rem;
  background: url(../img/header/icon_bookmark_line.svg) no-repeat center center/cover;
}
.header > .inner .right .locker {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0 0.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.875rem;
  color: #3f3f3f;
  border-radius: 1.5625rem;
  border: 0.0625rem solid #3f3f3f;
  text-indent: 0;
}
.header > .inner .right .locker::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.125rem;
  background: url(../img/header/icon_bookmark_line.svg) no-repeat center center/cover;
}
.header > .inner .right .setup {
  background-image: url(../img/header/icon_setup.svg);
}
.header > .inner .right .close {
  background-image: url(../img/header/icon_close.svg);
}
.header > .inner .right .sub_bookmark {
  background-image: url(../img/header/icon_setup.svg);
}
.header > .inner .right .home {
  background-image: url(../img/header/icon_home.svg);
}
.header > .inner .right .coupon_box {
  background-image: url(../img/header/icon_couponbox.svg);
}
.header > .inner .right .ud_text {
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-indent: 0;
  color: #202020;
  text-decoration: underline;
}
.header > .inner .right .top_search {
  width: 100%;
}
.header > .inner .center {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .input_placeholder {
  margin: 0.5rem 0.5rem 0 2rem;
}
.header.c_1 {
  background: #9d8778;
}
.header.c_1 > .inner .left .title {
  color: #fff;
}
.header.c_1 > .inner .left .link {
  background: #9d8778 url(../img/icon_history_back_white.svg) no-repeat center center/1.25rem auto;
}
.nav_bottom {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  background-color: #fff;
}
.nav_bottom > ul {
  position: relative;
  z-index: 102;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  border-top: 0.0625rem solid #ddd;
  background-color: #fff;
}
.nav_bottom > ul li {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  text-align: center;
  white-space: nowrap;
}
.nav_bottom > ul li a {
  display: block;
  padding-top: 2rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #888;
  background-position: top center;
  background-repeat: no-repeat;
}
.nav_bottom > ul li a.icon_01 {
  background-image: url(../img/nav_bottom/icon_nav_home.png);
  background-size: 1.5rem auto;
}
.nav_bottom > ul li a.icon_02 {
  background-image: url(../img/nav_bottom/icon_nav_content.png);
  background-size: 1.5rem auto;
}
.nav_bottom > ul li a.icon_03 {
  background-image: url(../img/nav_bottom/icon_nav_customer.png);
  background-size: 1.5rem auto;
}
.nav_bottom > ul li a.icon_04 {
  background-image: url(../img/nav_bottom/icon_nav_myplus.png);
  background-size: 1.5rem auto;
}
.nav_bottom > ul li a.icon_05 {
  background-image: url(../img/nav_bottom/icon_nav_menu.png);
  background-size: 1.5rem auto;
}
.nav_bottom > ul li a.active {
  font-weight: 600;
  color: #000;
}
.nav_bottom > ul li a.active.icon_01 {
  background-image: url(../img/nav_bottom/icon_nav_home_on.png);
}
.nav_bottom > ul li a.active.icon_02 {
  background-image: url(../img/nav_bottom/icon_nav_content_on.png);
}
.nav_bottom > ul li a.active.icon_03 {
  background-image: url(../img/nav_bottom/icon_nav_customer_on.png);
}
.nav_bottom > ul li a.active.icon_04 {
  background-image: url(../img/nav_bottom/icon_nav_myplus_on.png);
}
.nav_bottom > ul li a.active.icon_05 {
  background-image: url(../img/nav_bottom/icon_nav_menu_on.png);
}
.nav_bottom .page_top {
  position: absolute;
  top: -3.5rem;
  right: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0.0625rem solid rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-indent: -62.4375rem;
  background: url(../img/icon_pagetop.svg) no-repeat center center/1.5rem auto;
  background-color: rgba(255, 255, 255, 0.6);
}
.menu_content {
  position: fixed;
  top: 100%;
  left: 0;
  z-index: 101;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 5.3125rem);
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.menu_content.active {
  top: 0;
}
.menu_content.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-color: red;
  background-color: #fff;
}
.menu_content_top {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.125rem 1.5rem;
}
.menu_content_top .title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.menu_content_top .btn {
  margin-left: auto;
}
.menu_content_body {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-bottom: 2.5rem;
  overflow: auto;
}
.menu_content_notice {
  margin-top: 0.5rem;
}
.menu_content_links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}
.menu_content_links > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2.625rem 0 0.875rem 0;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #f8f8f8;
  background-repeat: no-repeat;
  background-position: center 0.5rem;
  background-size: 2.0625rem auto;
}
.menu_content_links > a > span {
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #3f3f3f;
}
.menu_content_links > a.menu_content_links_ic_01 {
  background-image: url(../img/nav_bottom/menu_content_links_ic_01.svg);
}
.menu_content_links > a.menu_content_links_ic_02 {
  background-image: url(../img/nav_bottom/menu_content_links_ic_02.svg);
}
.menu_content_links > a.menu_content_links_ic_03 {
  background-image: url(../img/nav_bottom/menu_content_links_ic_03.svg);
}
.menu_content_links > a.menu_content_links_ic_04 {
  background-image: url(../img/nav_bottom/menu_content_links_ic_04.svg);
}
.menu_content_links > a.menu_content_links_ic_05 {
  background-image: url(../img/nav_bottom/menu_content_links_ic_05.svg);
}
.menu_content_links > a.menu_content_links_ic_06 {
  background-image: url(../img/nav_bottom/menu_content_links_ic_06.svg);
}
.menu_content .direct_links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.5rem;
  margin-top: 2rem;
  padding: 0 1.5rem;
}
.cont_wrap {
  padding: 0 1.5rem;
}
.cont_wrap.white {
  background-color: #fff;
}
.bd_hr {
  display: block;
  height: 0;
  border-bottom: 0.5rem solid #f0f0f0;
}
.bd_hr.ty1 {
  border-bottom: 0.0625rem solid #f0f0f0;
}
.bd_hr.ty2 {
  height: auto;
  border-bottom: none;
  border-top: 0.0625rem solid #ececec;
}
.bd_hr.ty3 {
  border-bottom: none;
  border-top: 0.5rem solid #f5f5f5;
}
.bd_hr.ty4 {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.bold_border_container {
  padding: 2rem 0;
}
.bold_border_container + .bold_border_container {
  border-top: 0.5rem solid #f5f5f5;
}
.bold_border_container.ty1 {
  padding: 0;
}
.content_head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.content_head .r_side {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
  padding-left: 0.625rem;
}
.content_head .content_counter {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.content_head .content_counter em {
  font-weight: 600;
  color: red;
}
.title_text.h1 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.625rem;
}
.title_text.h2 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.title_text.h3 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.title_text.h4 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.title_text.h5 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.title_text.h6 {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.title_text.h7 {
  font-size: 0.75rem;
  line-height: 1rem;
}
.title_text.icon_coupon {
  padding-right: 3.5rem;
  background: url(../img/coupon/img_coupon.svg) no-repeat right center/3.5rem auto;
}
.checkbox {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
.checkbox > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.checkbox > input:checked ~ i {
  border-color: #fe7637;
  background: #fe7637 url(../img/icon_check_type1.svg) no-repeat center center/0.625rem auto;
}
.checkbox > input:checked:disabled ~ i {
  border-color: #ffd2ab;
  background-color: #ffd2ab;
}
.checkbox > input:checked:disabled ~ i ~ span {
  background: #fff;
  color: #202020;
}
.checkbox > input:disabled ~ span {
  border-color: #f0f0f0;
  color: #9e9e9e;
}
.checkbox > i {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0.0625rem 0;
  width: 1.375rem;
  height: 1.375rem;
  border: 0.0625rem solid #d9d9d9;
  background-color: #fff;
  border-radius: 0.1875rem;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.checkbox > span {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin-left: 0.625rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.checkbox > span > small {
  padding-left: 0.25rem;
  font-size: 0.875rem;
}
.checkbox.rnd_ty > input:checked ~ i {
  border-color: #fe7637;
  background: #fe7637 url(../img/icon_check_type1.svg) no-repeat center center/0.875rem auto;
}
.checkbox.rnd_ty > input:disabled ~ i {
  background-color: #bdbdbd;
  opacity: 0.3;
}
.checkbox.rnd_ty > input:checked:disabled ~ i {
  opacity: 1;
  border-color: #ffd2ab;
  background-color: #ffd2ab;
}
.checkbox.rnd_ty > i {
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #d9d9d9 url(../img/icon_check_type1.svg) no-repeat center center/0.875rem auto;
}
.checkbox.rnd_ty > span {
  font-weight: 600;
}
.checkbox.rnd_ty.right_icon > span {
  margin-left: 0;
  padding-right: 2.125rem;
}
.checkbox.rnd_ty.right_icon > i {
  position: absolute;
  right: 0;
  top: 0;
}
.checkbox.ty1 > input:checked ~ i {
  background: #fff url(../img/icon_check_type3.svg) no-repeat center center/0.9375rem auto;
}
.checkbox.ty1 > i {
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: #fff url(../img/icon_check_type2.svg) no-repeat center center/0.9375rem auto;
}
.checkbox.ty2 > span {
  font-weight: 400;
  font-size: 0.875rem;
}
.checkbox.heart {
  font-size: 0;
}
.checkbox.heart > i {
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
}
.checkbox.heart input + i {
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../img/header/icon_heart.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.25rem auto;
}
.checkbox.heart input:checked + i {
  background-image: url(../img/header/icon_heart_on.svg);
}
.checkbox.heart.big > i {
  width: 2.5rem;
  height: 2.5rem;
}
.checkbox.heart.big input + i {
  background-image: url(../img/icon_heart2.svg);
  background-size: 2.5rem auto;
}
.checkbox.heart.big input:checked + i {
  background-image: url(../img/icon_heart2_on.svg);
}
.checkbox.bookmark > i {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  border: none;
}
.checkbox.bookmark input + i {
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../img/icon_bookmark.svg);
  background-size: 2.5rem auto;
}
.checkbox.bookmark input:checked + i {
  background-image: url(../img/icon_bookmark_on.svg);
}
.chk_group_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 2.625rem;
}
.chk_group_wrap .chk_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 1.5625rem;
}
.chk_group_wrap .chk_list .checkbox {
  width: calc(50% - 1.125rem);
  margin: 1.125rem 1.125rem 0 0;
}
.chk_group_wrap .chk_list.agree_list_wrap {
  margin-left: 0;
}
.chk_group_wrap .chk_list.agree_list_wrap .list {
  width: 100%;
}
.chk_group_wrap .chk_list.agree_list_wrap .list .checkbox {
  width: auto;
  margin: 0;
}
.chk_group_wrap .chk_list.agree_list_wrap .list .checkbox > i {
  width: 2rem;
  height: 2rem;
}
.chk_group_wrap .chk_list.column > .checkbox {
  width: 100%;
}
.chk_group_wrap.free_mode {
  margin-top: -0.8125rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.chk_group_wrap.free_mode .checkbox {
  margin: 0.8125rem 3.4375rem 0 0;
}
.chk_group_wrap.free_mode .checkbox:last-child {
  margin-right: 0;
}
.chk_group_wrap.is_gr_bx {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 1rem;
}
.chk_group_wrap.is_gr_bx.free_mode {
  padding-top: 0.1875rem;
  margin-top: 0;
}
.checkbox_switch {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0;
}
.checkbox_switch > .text {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #888;
}
.checkbox_switch > .text ~ i {
  margin-left: 0.375rem;
}
.checkbox_switch i {
  position: relative;
  display: inline-block;
  width: 4.375rem;
  height: 1.625rem;
  border-radius: 3.125rem;
  background-color: #848484;
}
.checkbox_switch i::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  right: 0.1875rem;
  width: 1.25rem;
  border-radius: 50%;
  border-bottom: 1.25rem solid #fff;
  -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.16);
}
.checkbox_switch > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.checkbox_switch > input ~ .act1 {
  display: block;
}
.checkbox_switch > input:checked ~ .act1 {
  display: none;
}
.checkbox_switch > input:checked ~ .act2 {
  display: block;
}
.checkbox_switch > input:checked + i::before {
  right: auto;
  left: 0.1875rem;
}
.checkbox_switch .dp_text {
  position: absolute;
  top: 50%;
  right: 0;
  width: 4.375rem;
  display: none;
  font-size: 0.8125rem;
  line-height: 1.625rem;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.checkbox_switch .dp_text.act1 {
  text-align: left;
  padding-left: 0.625rem;
}
.checkbox_switch .dp_text.act2 {
  text-align: right;
  padding-right: 0.625rem;
}
.checkbox_switch.ty1 i {
  position: relative;
  display: inline-block;
  width: 2.25rem;
  height: 1.375rem;
  border-radius: 0.6875rem;
  background-color: #848484;
}
.checkbox_switch.ty1 i::before {
  content: "";
  position: absolute;
  display: block;
  top: 0.125rem;
  left: 0.125rem;
  right: auto;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 100%;
  border: 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.16);
}
.checkbox_switch.ty1 input:checked + i {
  background-color: #f37321;
}
.checkbox_switch.ty1 input:checked + i::before {
  left: 1rem;
}
.radio {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
.radio > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.radio > input:checked ~ i {
  border-color: #fe7637;
  border-width: 0.375rem;
}
.radio > input:checked:disabled ~ i {
  border-color: #ffd2ab;
  background-color: #fff;
}
.radio > input:checked:disabled ~ i ~ span,
.radio > input:checked:disabled ~ i ~ em {
  background: #fff;
  color: #202020;
}
.radio > input:disabled ~ span {
  border-color: #f0f0f0;
  color: #9e9e9e;
}
.radio > i {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.0625rem solid #d9d9d9;
  background-color: #fff;
  border-radius: 0.75rem;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.radio > span {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin-left: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.radio_select_box {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -0.375rem 0 0 -0.375rem;
}
.radio_select_box label {
  margin: 0.375rem 0 0 0.375rem;
}
.radio_select_box label span {
  margin: 0;
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1rem;
  color: #202020;
  border-radius: 1.25rem;
  border: 0.0625rem solid #f0f0f0;
  -webkit-transition: color 0.3s, border-color 0.3s, background-color 0.3s;
  transition: color 0.3s, border-color 0.3s, background-color 0.3s;
}
.radio_select_box label input:checked + span {
  font-weight: 600;
  color: #f60;
  border-color: #ffecd9;
  background-color: #ffecd9;
}
.favorite_chker {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  font-size: 0;
  line-height: normal;
}
.favorite_chker input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.favorite_chker input + i {
  display: block;
  height: 1.5rem;
  background: url(../img/icon_favorite.svg) no-repeat center center/1.5rem auto;
}
.favorite_chker input:checked + i {
  background-image: url(../img/icon_favorite_on.svg);
}
.favorite_chker.ty_1 {
  width: 1.25rem;
  height: 1.25rem;
}
.favorite_chker.ty_1 input + i {
  height: 1.25rem;
  background: url(../img/icon_favorite_bk_line.svg) no-repeat center center/1.25rem auto;
}
.favorite_chker.ty_1 input:checked + i {
  background-image: url(../img/icon_favorite_bk_line_on.svg);
}
.radio_tab {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 0.25rem 0.3125rem;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
}
.radio_tab label {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.radio_tab label > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.radio_tab label > input ~ span {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.5625rem 0;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #888;
  border-radius: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #f0f0f0;
}
.radio_tab label > input:checked ~ span {
  z-index: 1;
  width: calc(100% + 0.125rem);
  margin-left: -0.0625rem;
  font-weight: 500;
  color: #f60;
  background-color: #fff;
}
.radio_tab label + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.0625rem;
  height: 1rem;
  border-left: 0.0625rem solid #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.radio_tab.ty_2 {
  position: relative;
  z-index: 1;
  padding: 0.25rem;
  border-radius: 3.125rem;
  background-color: #f60;
}
.radio_tab.ty_2 label > input ~ span {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #ffe9d4;
  text-align: center;
  border-radius: 3.125rem;
  background-color: #f60;
}
.radio_tab.ty_2 label > input:checked ~ span {
  width: 100%;
  margin-left: 0;
  font-weight: 600;
  color: #f60;
  background-color: #fff;
}
.radio_tab.ty_2 label > input:checked ~ span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_check_type7.svg) no-repeat center center/1.5rem auto;
}
.radio_tab.ty_2 label + label::before {
  content: none;
}
.radio_tab.ty_3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.5rem;
  padding: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
}
.radio_tab.ty_3 label {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(33.3333333333% - 0.33333rem);
}
.radio_tab.ty_3 label > input ~ span {
  padding: 0.6875rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #888;
  text-align: center;
  border-radius: 0.75rem;
  border: 0.0625rem solid #fff;
  background-color: #fff;
}
.radio_tab.ty_3 label > input:checked ~ span {
  width: 100%;
  margin-left: 0;
  font-weight: 600;
  color: #f60;
  border: 0.0625rem solid #f60;
}
.radio_tab.ty_3 label > input:disabled ~ span {
  color: #888;
  opacity: 0.5;
}
.radio_tab.ty_3 label + label::before {
  content: none;
}
.radio_tab.ty_4 {
  display: block;
  -webkit-box-align: initial;
  -moz-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  padding: 0;
  border-radius: 0;
  background: none;
}
.radio_tab.ty_4 label {
  display: block;
}
.radio_tab.ty_4 label > input ~ span {
  display: block;
  padding: 1.4375rem 1.1875rem;
  border-radius: 1rem;
  border: 0.0625rem solid #fff;
  background-color: #fff;
}
.radio_tab.ty_4 label > input ~ span .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.radio_tab.ty_4 label > input ~ span .top .date {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.radio_tab.ty_4 label > input ~ span .top .cnt {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-left: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #202020;
}
.radio_tab.ty_4 label > input ~ span .top .cnt .num {
  font-weight: 600;
  color: #f60;
}
.radio_tab.ty_4 label > input ~ span .text {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #888;
}
.radio_tab.ty_4 label > input:checked ~ span {
  font-weight: normal;
  border: 0.0625rem solid #f60;
}
.radio_tab.ty_4 label > input:checked ~ span .top .date {
  font-weight: 600;
  color: #f60;
}
.radio_tab.ty_4 label > input:checked ~ span .top .cnt {
  color: #f60;
}
.radio_tab.ty_4 label + label {
  margin-top: 1rem;
}
.radio_tab.ty_4 label + label::before {
  content: none;
}
.radio_tab.ty_5 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.5rem;
  padding: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
}
.radio_tab.ty_5 label {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(50% - 0.25rem);
}
.radio_tab.ty_5 label > input ~ span {
  padding: 0.6875rem 0.5625rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #888;
  text-align: center;
  overflow-wrap: anywhere;
  border-radius: 0.75rem;
  border: 0.0625rem solid #fff;
  background-color: #fff;
}
.radio_tab.ty_5 label > input:checked ~ span {
  width: 100%;
  margin-left: 0;
  font-weight: 600;
  color: #f60;
  border: 0.0625rem solid #f60;
}
.radio_tab.ty_5 label > input:disabled ~ span {
  color: #888;
  opacity: 0.5;
}
.radio_tab.ty_5 label + label::before {
  content: none;
}
.select {
  cursor: default;
  text-align: left;
  white-space: nowrap;
}
.select.ty1 {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 2.5rem 0 1rem;
  font-size: 1rem;
  color: #202020;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
  background: #fff url(../img/icon_arrow_down_type1.svg) no-repeat right 0.75rem center/1.5rem auto;
}
.select.ty1:disabled {
  color: #9e9e9e;
  background: #f8f8f8 url(../img/icon_arrow_down_type2.svg) no-repeat right 0.75rem center/1.5rem auto;
}
.select.ty2 {
  display: inline-block;
  height: 1.625rem;
  padding: 0 1.75rem 0 0;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
  background: #fff url(../img/icon_arrow_down_type1.svg) no-repeat right center/1.5rem auto;
}
.select.ty2.sm {
  font-size: 0.9375rem;
}
.select.ty2 .select_placeholder {
  color: #202020;
}
.select.ty3 {
  position: relative;
  display: inline-block;
  height: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  line-height: 1rem;
  color: #202020;
  text-align: right;
  background: rgba(0, 0, 0, 0) url(../img/icon_arrow_down.svg) no-repeat right center/0.75rem auto;
}
.input_label {
  margin: 2rem 0 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.input {
  position: relative;
}
.input > input {
  display: block;
  width: 100%;
  height: 3rem;
  padding: 0 3.125rem 0 0.9375rem;
  font-size: 1rem;
  line-height: 3rem;
  color: #202020;
  text-align: left;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input > input::-webkit-calendar-picker-indicator {
  display: none;
}
.input > input::-webkit-inner-spin-button {
  display: none;
}
.input > input::-webkit-input-placeholder {
  color: #9e9e9e;
}
.input > input::-moz-placeholder {
  color: #9e9e9e;
}
.input > input:-ms-input-placeholder {
  color: #9e9e9e;
}
.input > input::-ms-input-placeholder {
  color: #9e9e9e;
}
.input > input::placeholder {
  color: #9e9e9e;
}
.input > input:focus {
  border-color: #3f3f3f;
}
.input > input:disabled {
  padding-right: 0.9375rem;
  color: #9e9e9e;
  background-color: #f8f8f8;
}
.input > input:-moz-read-only {
  padding-right: 0.9375rem;
  background-color: #f8f8f8;
}
.input > input:read-only {
  padding-right: 0.9375rem;
  background-color: #f8f8f8;
}
.input > input:-moz-read-only ~ .del {
  display: none;
}
.input > input:read-only ~ .del {
  display: none;
}
.input > input:-moz-read-only:focus {
  border-color: #d9d9d9;
}
.input > input:read-only:focus {
  border-color: #d9d9d9;
}
.input > input[type="date"] {
  background: #fff url(../img/icon_date_24.svg) no-repeat right 0.75rem center/1.5rem auto;
}
.input.ty2 > input {
  height: 3.5rem;
}
.input.ty2 .del {
  top: 1.1875rem;
}
.input.ty3 > input:-moz-read-only {
  background-color: #fff;
}
.input.ty3 > input:read-only {
  background-color: #fff;
}
.input.ty3 > input:-moz-read-only ~ .del {
  display: none;
}
.input.ty3 > input:read-only ~ .del {
  display: none;
}
.input.ty4 > input {
  background: #fff url(../img/icon_date_24.svg) no-repeat right 0.75rem center/1.5rem auto;
}
.input.focus.has_value :not(:-moz-read-only) ~ .del {
  display: block;
}
.input.focus.has_value :not(:read-only) ~ .del {
  display: block;
}
.input .del {
  display: none;
  position: absolute;
  overflow: hidden;
  text-indent: -624.9375rem;
  right: 0.9375rem;
  top: 0.9375rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.5625rem;
  background: url(../img/icon_input_del.svg) no-repeat center;
}
.input.error > input {
  border-color: #ef2222;
}
.input .error_text {
  display: block;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  background: url(../img/icon_input_error.svg) no-repeat left center/1rem auto;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #ef2222;
}
.input.success > input {
  border-color: #0084f4;
}
.input .success_text {
  display: block;
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #0084f4;
  background: url(../img/icon_input_success.svg) no-repeat left center/1rem auto;
}
.input .filter {
  position: absolute;
  overflow: hidden;
  text-indent: -624.9375rem;
  top: 50%;
  right: 0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -0.625rem;
  background: url(../img/icon_sort.svg) no-repeat center;
}
.input.has_search input {
  padding-right: 4.75rem;
}
.input.has_search .del {
  right: 2.75rem;
}
.input.has_search .search {
  overflow: hidden;
  text-indent: -624.9375rem;
  display: inline-block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  right: 0.75rem;
  top: 50%;
  margin-top: -0.75rem;
  background: url(../img/icon_search_24.svg) no-repeat center;
}
.input.top_search > input {
  height: 2.5rem;
  padding: 0 5rem 0 1rem;
  font-weight: 600;
  line-height: 2.5rem;
  border-radius: 0.75rem;
  border-color: #f2f4f6;
  background-color: #f2f4f6;
}
.input.top_search > input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75rem;
  color: #bababa;
}
.input.top_search > input::-moz-placeholder {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75rem;
  color: #bababa;
}
.input.top_search > input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75rem;
  color: #bababa;
}
.input.top_search > input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75rem;
  color: #bababa;
}
.input.top_search > input::placeholder {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.75rem;
  color: #bababa;
}
.input.top_search > .search:first-child {
  position: absolute;
  overflow: hidden;
  text-indent: -624.9375rem;
  right: 1rem;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  background: url(../img/icon_input_top_search.svg) no-repeat center;
  background-size: contain;
}
.input.top_search .del {
  margin-top: 0;
  top: 0.5rem;
  right: 3rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/icon_delate.svg);
  background-size: 1.5rem auto;
}
.input.top_search.top_filter > input {
  padding-right: 4rem;
}
.input.top_search.focus > input:focus {
  border: 0.0625rem solid #3f3f3f;
}
.input.top_search .placeholder_text {
  margin: 0.5rem 0 0 0;
}
.input.search_ty2 input {
  height: 3.5rem;
  padding-left: 1.5rem;
  padding-right: 6rem;
  font-size: 1.125rem;
  border-color: #f60;
  border-radius: 3.125rem;
}
.input.search_ty2 .del {
  top: 50%;
  right: 4.125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input.search_ty2 .search {
  overflow: hidden;
  text-indent: -624.9375rem;
  position: absolute;
  top: 0;
  right: 0.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../img/icon_search_56.svg) no-repeat center/3.5rem auto;
}
.input.no_del input {
  padding-right: 0.9375rem;
}
.input.top_filter.top_search .del {
  right: 2.875rem;
}
.textarea {
  position: relative;
}
.textarea textarea {
  display: block;
  width: 100%;
  padding: 0.9375rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #202020;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
  resize: none;
}
.textarea textarea::-webkit-input-placeholder {
  color: #9e9e9e;
}
.textarea textarea::-moz-placeholder {
  color: #9e9e9e;
}
.textarea textarea:-ms-input-placeholder {
  color: #9e9e9e;
}
.textarea textarea::-ms-input-placeholder {
  color: #9e9e9e;
}
.textarea textarea::placeholder {
  color: #9e9e9e;
}
.textarea textarea:focus {
  border-color: #3f3f3f;
}
.textarea textarea:disabled {
  color: #9e9e9e;
  background-color: #f8f8f8;
}
.textarea textarea:-moz-read-only {
  background-color: #f8f8f8;
}
.textarea textarea:read-only {
  background-color: #f8f8f8;
}
.textarea textarea:-moz-read-only ~ .del {
  display: none;
}
.textarea textarea:read-only ~ .del {
  display: none;
}
.textarea.byte_check {
  padding: 1rem 1rem 2rem 1rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
}
.textarea.byte_check textarea {
  height: 4.5rem;
  padding: 0;
  border: none;
}
.textarea.byte_check .byte_counter {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #bababa;
}
.textarea.byte_check .byte_counter em {
  font-weight: normal;
  color: #202020;
}
.btn {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
}
.btn.s_1 {
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.125rem;
}
.btn.s_2 {
  padding: 0.875rem 0;
  font-weight: 600;
}
.btn.s_3 {
  padding: 0.625rem 0;
  font-weight: 500;
  font-size: 0.9375rem;
}
.btn.s_4 {
  padding: 0.4375rem 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.btn.s_5 {
  padding: 0.9375rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.btn.c_1 {
  background-color: #f60;
  color: #fff;
}
.btn.c_1.disabled,
.btn.c_1:disabled {
  background-color: #d9d9d9;
  color: #888;
}
.btn.c_2 {
  background-color: #fff;
  color: #3f3f3f;
}
.btn.c_2.disabled,
.btn.c_2:disabled {
  background-color: #eeeef0;
  color: #888;
}
.btn.c_3 {
  background-color: #ebebf0;
  color: #3f3f3f;
}
.btn.c_3.disabled,
.btn.c_3:disabled {
  background-color: #eeeef0;
  color: #bababa;
}
.btn.c_4 {
  background-color: #fff6f6;
  color: #f60;
}
.btn.c_4.disabled,
.btn.c_4:disabled {
  background-color: #faf7f7;
  color: #fdae7b;
}
.btn.c_5 {
  background-color: #fff4ed;
  color: #f60;
}
.btn.c_5.disabled,
.btn.c_5:disabled {
  background-color: #f5f5f5;
  color: #bababa;
}
.btn.c_6 {
  position: relative;
  background-color: #fff;
  color: #666;
}
.btn.c_6:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.0625rem solid #666;
}
.btn.c_6.disabled,
.btn.c_6:disabled {
  background-color: #f8f8f8;
  color: #bababa;
  border-color: #d9d9d9;
}
.btn.c_6.disabled::after,
.btn.c_6:disabled::after {
  border: 0.0625rem solid #d9d9d9;
}
.btn.c_7 {
  background-color: #3f3f3f;
  color: #fff;
}
.btn.c_7.disabled,
.btn.c_7:disabled {
  background-color: #888;
  color: #bababa;
}
.btn.c_8 {
  background-color: #8f7c6f;
  color: #fff;
}
.btn.c_9 {
  background-color: #fff;
  color: #f60;
}
.btn.c_9:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.0625rem solid #f60;
}
.btn.c_10 {
  background-color: #f0f0f0;
  color: #3f3f3f;
}
.btn.c_10.disabled,
.btn.c_10:disabled {
  background-color: #f5f5f5;
  color: #bababa;
}
.btn.r_1 {
  border-radius: 0.75rem;
}
.btn.r_1:after {
  border-radius: 0.75rem;
}
.btn.r_2 {
  border-radius: 0.5rem;
}
.btn.r_2:after {
  border-radius: 0.5rem;
}
.btn.r_3 {
  border-radius: 0.25rem;
}
.btn.r_3:after {
  border-radius: 0.25rem;
}
.btn.r_4 {
  border-radius: 1.125rem;
}
.btn.r_4:after {
  border-radius: 1.125rem;
}
.btn > .link_arrow {
  display: inline-block;
  padding-right: 1.125rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.btn > .icon_plus {
  padding-left: 1.75rem;
  background: url(../img/icon_plus.svg) no-repeat left center/1.5rem auto;
}
.btn > .icon_plus2 {
  padding-left: 1.75rem;
  background: url(../img/icon_plus2.svg) no-repeat left center/1.5rem auto;
}
.btn > .icon_phone {
  position: relative;
  display: inline-block;
  padding-left: 1.75rem;
}
.btn > .icon_phone::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_phone.svg) no-repeat left center/1.5rem auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn > .icon_chat {
  padding-left: 1.75rem;
  background: url(../img/icon_chat_21.svg) no-repeat left center/1.3125rem auto;
}
.btn > .icon_chat_black {
  padding-left: 1.75rem;
  background: url(../img/icon_chat_black.svg) no-repeat left center/1.5rem auto;
}
.btn > .icon_download {
  width: auto;
  height: auto;
  margin: 0 1rem;
  padding-left: 1.25rem;
  font-weight: 500;
  border-radius: 0;
  background: url(../img/icon_download.svg) no-repeat left center/1rem auto;
}
.btn > .icon_member {
  width: auto;
  height: auto;
  margin: 0 1rem;
  padding-left: 1.75rem;
  font-weight: 500;
  border-radius: 0;
  background: url(../img/icon_member.svg) no-repeat left center/1.5rem auto;
}
.btn > .icon_arrow_right {
  padding-right: 1.5rem;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center/1.5rem auto;
}
.btn > .icon_arrow_right_w {
  padding-right: 1.25rem;
  background: url(../img/icon_arrow_right_type9.svg) no-repeat right center/1rem auto;
}
.btn > .icon_arrow_right_g {
  padding-right: 1.25rem;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat right center/1rem auto;
}
.btn.icon_setting {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0;
  line-height: 1;
  text-indent: -624.9375rem;
  overflow: hidden;
  background: url(../img/icon_setting_20.svg) no-repeat center center/1.25rem auto;
}
.btn.icon_call {
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  text-indent: -624.9375rem;
  background-image: url(../img/icon_call.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center;
}
.btn.icon_call.etc_ty1 {
  border-radius: 0.5rem;
  border: 0.0625rem solid #f60;
  background-color: rgba(0, 0, 0, 0);
}
.btn_area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.btn_area > a,
.btn_area > button {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.btn_area.space {
  margin-left: -0.5rem;
}
.btn_area.space > a,
.btn_area.space > button {
  margin-left: 0.5rem;
}
.btn_area.ty_1 a,
.btn_area.ty_1 button {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.btn_area.ty_1 a:first-child,
.btn_area.ty_1 button:first-child {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.btn_area.ty2 {
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
  background-color: #fff;
}
.btn_area.ty2 li + li {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid #f0f0f0;
}
.btn_area.ty3 {
  display: block;
  margin-top: -0.5rem;
}
.btn_area.ty3 .btn_rnd_type {
  margin: 0.5rem 0.5rem 0 0;
}
.btn_area.ty3 .btn_rnd_type:last-child {
  margin-right: 0;
}
.btn_area.bd {
  position: relative;
}
.btn_area.bd:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 0.0625rem;
  background: #e6e6e6;
}
.btn_area.bd:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 0.0625rem;
  background: #e6e6e6;
}
.btn_area.bd .btn {
  position: relative;
  z-index: 1;
}
.btn_area.bd .btn.c_2 {
  z-index: 0;
}
.btn_area.row_1 {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 3;
  height: 3.75rem;
  overflow: hidden;
  -webkit-transition: height 0.3s linear;
  transition: height 0.3s linear;
}
.btn_area.row_1.on_top_hidden {
  height: 0;
}
.btn_area > .icon_call {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.btn_area > .sort_radio_open {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.btn_area.bar .btn {
  position: relative;
  padding: 0.875rem 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}
.btn_area.bar .btn:first-child {
  padding-left: 2.3125rem;
}
.btn_area.bar .btn:last-child {
  padding-right: 2.3125rem;
}
.btn_area.bar .btn:last-child:after {
  content: none;
}
.btn_area.bar .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.125rem;
  height: 1.125rem;
  margin-top: -0.5625rem;
  background-color: #ffd2ab;
}
.btn_area.check {
  position: relative;
  border-top: 0.0625rem solid #ececec;
  height: 3.75rem;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
}
.btn_area.check::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.75rem;
  width: 0.0625rem;
  height: 1.5rem;
  background-color: #ececec;
}
.btn_area.check .btn {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  width: 100%;
  line-height: 3.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 0 0 0 3rem;
  margin: 0;
  background: rgba(0, 0, 0, 0) url(../img/icon_arrow_left_type1.svg) no-repeat left 1rem center/1.5rem;
}
.btn_area.check .btn:last-child {
  padding: 0 3rem 0 0;
  margin: 0;
  text-align: right;
  background: rgba(0, 0, 0, 0) url(../img/icon_arrow_right_type8.svg) no-repeat right 1rem center/1.5rem;
}
.btn_area.check .btn:disabled {
  opacity: 0.4;
}
.btn_text {
  position: relative;
  display: inline-block;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
  background: none;
}
.btn_text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #666;
}
.btn_notice {
  padding: 0 1.125rem 0 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  background: url(../img/icon_notimark.svg) no-repeat right center/0.875rem auto;
}
.btn_notice02 {
  padding: 0 1.25rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  color: #888;
  background: url(../img/icon_notimark.svg) no-repeat right center/1rem auto;
}
.btn_tooltip {
  padding: 0 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  background: url(../img/icon_tooltip.svg) no-repeat right top/1rem auto;
}
.btn_tooltip.gray {
  font-size: 0.9375rem;
  color: #666;
  background-image: url(../img/icon_tooltip.svg);
}
.btn_tooltip.single {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  padding: 0;
}
.btn_rotate {
  padding: 0 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1rem;
  background: url(../img/icon_rotate.svg) no-repeat right center/1rem auto;
}
.btn_modify {
  padding-right: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #666;
  background: url(../img/icon_modify.svg) no-repeat right center/1rem auto;
}
.btn_arr_link {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  line-height: 0;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center/1.5rem auto;
}
.btn_icon_link {
  position: relative;
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
  background-repeat: no-repeat;
  background-size: 1.5rem auto;
  background-position: left center;
}
.btn_icon_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: url(../img/icon_arrow_right_type1.svg) no-repeat center center/1rem auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.btn_icon_link.ty1 {
  background-image: url(../img/icon_link01.svg);
}
.btn_icon_link.ty2 {
  background-image: url(../img/icon_link02.svg);
}
.btn_icon_link.ty3 {
  background-image: url(../img/icon_link03.svg);
}
.btn_rnd_type {
  display: inline-block;
  height: 2rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  font-size: 0.875rem;
  color: #f60;
  border-radius: 1rem;
  border: 0.0625rem solid #edc0a1;
  background-color: #fff;
}
.btn_rnd_type.ty_del {
  border-color: #ececec;
  color: #666;
}
.btn_rnd_type.ty_del::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  vertical-align: top;
  margin: 0.4375rem 0 0 0.125rem;
  background: url(../img/icon_close_16.svg) no-repeat center/contain;
}
.btn_view_more {
  padding: 0.75rem 0;
  text-align: center;
  border-radius: 0.75rem;
  background-color: rgba(0, 0, 0, 0.04);
}
.btn_view_more > span {
  display: inline-block;
  padding-right: 1.625rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3f3f3f;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat right center/1.5rem auto;
}
.btn_view_more > span .count {
  font-weight: 600;
  font-size: 0.875rem;
}
.btn_view_more02 {
  padding: 0.75rem 0;
  text-align: center;
  border-radius: 0.75rem;
  background-color: rgba(0, 0, 0, 0.04);
}
.btn_view_more02 > span {
  display: inline-block;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3f3f3f;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center/1.5rem auto;
}
.btn_view_more03 {
  padding: 0.75rem 0;
  text-align: center;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.24);
}
.btn_view_more03 > span {
  display: inline-block;
  padding-right: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  background: url(../img/icon_arrow_right_type10.svg) no-repeat right center/1.5rem auto;
}
.btn.app_download {
  display: block;
  padding: 1.4375rem 4.5rem 1.4375rem 1.25rem;
  color: #202020;
  text-align: left;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
  background: url(../img/icon_download_round.svg) no-repeat right 1.25rem center;
}
.btn.app_download > span {
  display: block;
  padding: 0.4375rem 0 0.4375rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125rem;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 2rem auto;
}
.btn.app_download.ios > span {
  background-image: url(../img/icon_ios.svg);
}
.btn.app_download.android > span {
  background-image: url(../img/icon_android.svg);
}
.btn_add_user {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 6.25rem;
  height: 2.8125rem;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  border-radius: 1.4375rem;
  background: #f60;
}
.btn_floating_area {
  position: relative;
  width: 100%;
  height: 0;
}
.btn_floating_area .btn_add_user {
  position: absolute;
  bottom: 1.375rem;
  right: 1.6875rem;
  z-index: 3;
}
.btn_arrow_link {
  display: inline-block;
  min-height: 1.125rem;
  padding-right: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #000;
  background: url(../img/icon_arrow_right_type1.svg) no-repeat right center/0.75rem auto;
}
.btn_arrow_link02 {
  display: inline-block;
  padding-right: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #666;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat right center/1.5rem auto;
}
.btn_arrow_link03 {
  display: inline-block;
  padding-right: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #666;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat right center/1.5rem auto;
}
.btn_arrow_link04 {
  display: block;
  padding: 0.75rem 1.0625rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 0.0625rem solid #f60;
  background-color: #fff4ed;
}
.btn_arrow_link04 > span {
  display: inline-block;
  padding-right: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat right center/1.5rem auto;
}
.btn_arrow_link05 {
  display: inline-block;
  padding-right: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #666;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.btn_arrow_link06 {
  display: inline-block;
  padding-right: 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat right center/1.5rem auto;
}
.btn_arrow_link07 {
  display: block;
  padding: 0.875rem 1.625rem 0.875rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: url(../img/icon_specker.svg) no-repeat left center/1rem auto,
    url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.btn_arrow_link07 .cate1 {
  font-weight: 600;
  padding-right: 0.3125rem;
  color: #000;
}
.btn_arrow_link07 .cate2 {
  font-weight: 600;
}
.btn_arrow_link08 {
  display: block;
  padding: 1.1875rem 3.1875rem 1.1875rem 1.1875rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat right 1.25rem center/1.5rem auto;
}
.btn_arrow_link09 {
  display: inline-block;
  padding-right: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.btn_updown {
  display: inline-block;
  padding-right: 1.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
  background: url(../img/icon_updown.svg) no-repeat right center/1.5rem auto;
}
.btn_arrow_terms {
  display: inline-block;
  min-height: 1.5rem;
  padding-right: 1.5rem;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center;
}
.tbl {
  font-variant-numeric: tabular-nums lining-nums;
}
.tbl > table tbody tr .bg {
  padding: 0.9375rem;
  background-color: #f5f5f5;
  color: #666;
}
.tbl.ty1 > table > tbody tr > th {
  height: 2.25rem;
  padding: 0.4375rem 0;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #888;
  line-height: 1.25rem;
  letter-spacing: -0.6px;
}
.tbl.ty1 > table > tbody tr > td {
  height: 2.25rem;
  padding: 0.4375rem 0;
  font-size: 1rem;
  color: #202020;
  line-height: 1.375rem;
  word-break: break-all;
}
.tbl.ty2 {
  border-top: 0.0625rem solid #888;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.tbl.ty2 > table > tbody tr th {
  vertical-align: top;
  height: 2.75rem;
  padding: 0.75rem 0;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #888;
  line-height: 1.25rem;
  letter-spacing: -0.6px;
  border-top: 0.0625rem solid #f0f0f0;
}
.tbl.ty2 > table > tbody tr td {
  vertical-align: top;
  height: 2.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  color: #202020;
  line-height: 1.25rem;
  border-top: 0.0625rem solid #f0f0f0;
  word-break: break-all;
}
.tbl.ty3 {
  border-top: 0.0625rem solid #888;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.tbl.ty3 th,
.tbl.ty3 td {
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #202020;
  text-align: center;
}
.tbl.ty3 thead th {
  font-weight: 400;
  text-align: center;
  color: #666;
  background-color: #f5f5f5;
}
.tbl.ty3 tbody th {
  font-weight: 400;
  color: #666;
  border-top: 0.0625rem solid #f0f0f0;
  background-color: #f5f5f5;
}
.tbl.ty3 tbody td {
  border-top: 0.0625rem solid #f0f0f0;
  background-color: #fff;
}
.tbl.ty3 tbody tr:first-child th,
.tbl.ty3 tbody tr:first-child td {
  border-top: none;
}
.tbl.ty4 > .title_text {
  padding-bottom: 1rem;
}
.tbl.ty4 * + .title_text {
  margin-top: 1.25rem;
}
.tbl.ty4 > table > tbody tr th {
  vertical-align: top;
  padding: 0.5rem 0;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #666;
}
.tbl.ty4 > table > tbody tr td {
  vertical-align: top;
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #202020;
  word-break: break-all;
}
.tbl.ty5 > table > tbody tr th {
  vertical-align: top;
  padding: 0.375rem 0;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #888;
  line-height: 1.25rem;
}
.tbl.ty5 > table > tbody tr td {
  vertical-align: top;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: #202020;
  line-height: 1.25rem;
  word-break: break-all;
}
.tbl.ty6 {
  overflow: hidden;
  border-top: 0.0625rem solid #888;
}
.tbl.ty6 > table {
  width: calc(100% + 0.0625rem);
  margin-left: -0.0625rem;
}
.tbl.ty6 > table > thead tr th {
  padding: 0.9375rem;
  background-color: #f5f5f5;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #666;
  border-left: 0.0625rem solid #ececec;
}
.tbl.ty6 > table > tbody tr th {
  vertical-align: middle;
  padding: 0.75rem;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.25rem;
  border-bottom: 0.0625rem solid #ececec;
  border-left: 0.0625rem solid #ececec;
}
.tbl.ty6 > table > tbody tr td {
  vertical-align: middle;
  padding: 0.75rem;
  font-size: 0.9375rem;
  color: #202020;
  line-height: 1.25rem;
  word-break: break-all;
  border-bottom: 0.0625rem solid #ececec;
  border-left: 0.0625rem solid #ececec;
}
.tbl.ty7 > table > tbody tr th {
  padding: 0.375rem 0;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.125rem;
}
.tbl.ty7 > table > tbody tr td {
  padding: 0.375rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #202020;
  line-height: 1.125rem;
  word-break: break-all;
}
.tbl.ty7 > table > tbody tr td.small {
  font-size: 0.9375rem;
}
.tbl.ty8 {
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.tbl.ty8 table {
  table-layout: auto;
}
.tbl.ty8 table th {
  vertical-align: top;
  padding-top: 0.5rem;
}
.tbl.ty8 table th .box_td {
  display: block;
  padding: 0.1875rem 0.75rem;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  color: #fff;
  text-align: center;
  border-radius: 6.25rem;
  background-color: #3f3f3f;
  white-space: nowrap;
}
.tbl.ty8 table td {
  vertical-align: top;
  max-width: 0.0625rem;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
}
.tbl.ty8 table tr:first-child th {
  padding-top: 0;
}
.tbl.ty8 table tr:first-child td {
  padding-top: 0;
}
.tbl.ty_small table tbody tr td {
  padding: 0.75rem 0;
}
.tab_list_sticky_wrap {
  height: 3.5rem;
}
.tab_list_sticky_wrap.sticky .tab_list {
  position: fixed;
  left: 0;
  background: #fff;
  z-index: 2;
}
.tab_group {
  position: relative;
  height: 3.5rem;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.tab_group .tab_list {
  display: block;
  border-bottom: none;
}
.tab_group .tab_list:after {
  content: none;
}
.tab_group .tab_list .menu {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
}
.tab_group .tab_list .menu:last-child {
  margin-right: 1.5rem;
}
.tab_group .tab_list.ty_1 .menu {
  line-height: 2.5rem;
}
.tab_group .tab_list.ty_2 .menu {
  line-height: 2.5rem;
}
.tab_list {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 1.5rem;
}
.tab_list:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.tab_list .menu {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.5rem;
  color: #666;
  text-align: center;
}
.tab_list .menu.active {
  font-weight: 600;
  color: #202020;
}
.tab_list .menu.active:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 0.1875rem;
}
.tab_list.ty_1 .menu {
  min-height: 3.5rem;
  font-size: 1rem;
  line-height: 1.25rem;
}
.tab_list.ty_1 .menu.active:before {
  background-color: #ff7a25;
}
.tab_list.ty_2 {
  display: block;
  padding: 0.8125rem 1.5rem;
  overflow-x: scroll;
  font-size: 0;
  white-space: nowrap;
  background-color: #f5f5f5;
}
.tab_list.ty_2::-webkit-scrollbar {
  display: none;
}
.tab_list.ty_2 .menu {
  display: inline-block;
  margin-right: 1.5rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #666;
}
.tab_list.ty_2 .menu:last-child {
  margin-right: 0;
}
.tab_list.ty_2 .menu::before {
  content: none;
}
.tab_list.ty_2 .menu.active {
  font-weight: 700;
  color: #202020;
}
.tab_list.ty_2 .menu.active:before {
  background-color: #3f3f3f;
}
.tab_list.ty_3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.tab_list.ty_3 .menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.1875rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  margin: 0;
  min-height: 6.25rem;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.03);
}
.tab_list.ty_3 .menu span {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #666;
}
.tab_list.ty_3 .menu em {
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-left: 0.3125rem;
  font-size: 1.75rem;
  line-height: 2.5rem;
  color: #202020;
  font-weight: 600;
}
.tab_list.ty_3 .menu.zero em {
  color: #bababa;
}
.tab_list.ty_3 .menu.active {
  border-color: #f60;
  background: #fff4ed;
  -webkit-box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.06);
}
.tab_list.ty_3 .menu.active span {
  color: #202020;
}
.tab_list.ty_3 .menu.active em {
  color: #f60;
}
.tab_list.ty_3 .menu.active.zero em {
  color: #ffbb80;
}
.tab_list.ty_3 .menu::before {
  display: none;
}
.tab_list.ty_3 .menu + .menu {
  margin-left: 1rem;
}
.tab_list.ty_4 {
  display: block;
  padding: 0;
  overflow-x: auto;
}
.tab_list.ty_4::-webkit-scrollbar {
  display: none;
}
.tab_list.ty_4::after {
  content: none;
}
.tab_list.ty_4 .inner {
  padding: 0.5rem 1.5rem;
  font-size: 0;
  white-space: nowrap;
}
.tab_list.ty_4 .menu {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: top;
  width: 4.6875rem;
  height: 4.6875rem;
  margin-right: 0.5rem;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
  background-color: #fff;
  -webkit-box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
}
.tab_list.ty_4 .menu .text {
  display: block;
  text-align: center;
  padding-top: 2rem;
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 0.8125rem;
  color: #202020;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1.5rem auto;
}
.tab_list.ty_4 .menu .text.ty1 {
  background-image: url(../img/icon_tab_ty_4_1.svg);
}
.tab_list.ty_4 .menu .text.ty2 {
  background-image: url(../img/icon_tab_ty_4_2.svg);
}
.tab_list.ty_4 .menu .text.ty3 {
  background-image: url(../img/icon_tab_ty_4_3.svg);
}
.tab_list.ty_4 .menu .text.ty4 {
  background-image: url(../img/icon_tab_ty_4_4.svg);
}
.tab_list.ty_4 .menu .text.ty5 {
  background-image: url(../img/icon_tab_ty_4_5.svg);
}
.tab_list.ty_4 .menu .text.ty6 {
  background-image: url(../img/icon_tab_ty_4_6.svg);
}
.tab_list.ty_4 .menu:last-child {
  margin-right: 1.5rem;
}
.tab_list.ty_4 .menu.active {
  border-color: #f60;
  background-color: #fff4ed;
  -webkit-box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.375rem 1rem 0 rgba(0, 0, 0, 0.06);
}
.tab_list.ty_4 .menu.disabled .text {
  color: #bababa;
}
.tab_list.ty_4 .menu.disabled .text.ty1 {
  background-image: url(../img/icon_tab_ty_4_1_off.svg);
}
.tab_list.ty_4 .menu.disabled .text.ty2 {
  background-image: url(../img/icon_tab_ty_4_2_off.svg);
}
.tab_list.ty_4 .menu.disabled .text.ty3 {
  background-image: url(../img/icon_tab_ty_4_3_off.svg);
}
.tab_list.ty_4 .menu.disabled .text.ty4 {
  background-image: url(../img/icon_tab_ty_4_4_off.svg);
}
.tab_list.ty_4 .menu.disabled .text.ty5 {
  background-image: url(../img/icon_tab_ty_4_5_off.svg);
}
.tab_list.ty_4 .menu.disabled .text.ty6 {
  background-image: url(../img/icon_tab_ty_4_6_off.svg);
}
.tab_list.sticky {
  position: sticky !important;
  top: -0.0625rem;
  left: 0;
  z-index: 2;
}
.list_bullet.ty1 > li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.list_bullet.ty1 > li:before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.5625rem;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #666;
  border-radius: 100%;
}
.list_bullet.ty1 > li + li {
  margin-top: 0.25rem;
}
.list_bullet.ty1.small > li {
  padding-left: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.list_bullet.ty1.small > li:before {
  left: 0.1875rem;
  width: 0.1875rem;
  height: 0.1875rem;
}
.list_bullet.ty2 > li {
  position: relative;
  padding-left: 0.625rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
}
.list_bullet.ty2 > li:before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 0.125rem;
  height: 0.125rem;
  border-radius: 100%;
  background-color: #666;
}
.list_bullet.ty2 > li + li {
  margin-top: 0.25rem;
}
.list_bullet.ty3 > li {
  margin-top: 0.5rem;
  padding-left: 2.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #3f3f3f;
  background: url(../img/icon_check_type3.svg) no-repeat left 0.375rem top 0.375rem/1rem auto;
}
.list_bullet.ty3 > li:first-child {
  margin-top: 0;
}
.list_bullet.ty4 > li {
  position: relative;
  padding-left: 0.6875rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.list_bullet.ty4 > li:before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  display: inline-block;
  vertical-align: top;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: #666;
}
.list_bullet.ty4 > li + li {
  margin-top: 0.75rem;
}
.list_bullet.ty5 > li {
  position: relative;
  padding-left: 0.875rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.list_bullet.ty5 > li::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.3125rem;
  border-bottom: 0.0625rem solid #666;
}
.list_bullet.ty5 > li + li {
  margin-top: 0.5rem;
}
.list_bullet.ty6 > li {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.list_bullet.ty6 > li + li {
  margin-top: 0.5rem;
}
.list_bullet.ty6 > li .front {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-right: 0.3125rem;
}
.list_bullet.ty6 > li .incont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.list_bullet.ty7 > li {
  position: relative;
  padding-left: 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #666;
}
.list_bullet.ty7 > li::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 0.3125rem;
  border-bottom: 0.0625rem solid #666;
}
.list_bullet.ty7 > li + li {
  margin-top: 0.75rem;
}
.list_bullet.ty8 > li {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
}
.list_bullet.ty8 > li::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 0.125rem;
  border-bottom: 0.125rem solid #666;
}
.list_bullet.ty8 > li + li {
  margin-top: 0.5rem;
}
.list_bullet.ty9 > li {
  padding-left: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
  background: url(../img/icon_list_bullet01.svg) no-repeat left 0.25rem/0.5rem auto;
}
.list_bullet.ty9 > li + li {
  margin-top: 0.25rem;
}
.list_bullet.ty10 > li {
  position: relative;
  padding-left: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #888;
}
.list_bullet.ty10 > li::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 0.125rem;
  border-bottom: 0.125rem solid #888;
}
.list_bullet.ty10 > li + li {
  margin-top: 0.25rem;
}
.list_bullet.ty11 > li {
  position: relative;
  padding-left: 0.6875rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.list_bullet.ty11 > li:before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  display: inline-block;
  vertical-align: top;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: #666;
}
.list_bullet.ty11 > li + li {
  margin-top: 0.5rem;
}
.list_bullet.bar > li {
  padding-left: 0.875rem;
}
.list_bullet.bar > li:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0.125rem;
  background: none;
  border-radius: 0;
}
.list_bullet.refer > li {
  padding-left: 1.25rem;
  background: url(../img/icon_description.svg) no-repeat 0.125rem 0.125rem/0.75rem auto;
}
.list_link li {
  padding: 1rem 0;
}
.list_link li a {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.list_link li a .new {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0 0.375rem;
  font-weight: 700;
  font-size: 0.625rem;
  color: #fff;
  line-height: 1.1875rem;
  height: 1.25rem;
  border-radius: 3.125rem;
  background-color: #fe2222;
}
.count_badge {
  display: inline-block;
  vertical-align: top;
  height: 1.25rem;
  margin: 0.375rem 0 0 0.25rem;
  padding: 0 0.4375rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #fff;
  text-align: center;
  border-radius: 0.625rem;
  background: #fe2222;
}
.loc_badge {
  display: inline-block;
}
.loc_badge.ty1 {
  padding: 0 0.25rem;
  font-weight: 500;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.125rem;
  border-radius: 3.125rem;
  background-color: #202020;
  white-space: nowrap;
}
.bottom_popup_wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  background-color: rgba(20, 20, 43, 0.45);
  overflow: hidden;
}
.bottom_popup_wrap.always_full .bottom_popup {
  height: calc(100% - 2.5rem);
}
.bottom_popup_wrap.active {
  opacity: 1;
  visibility: visible;
}
.bottom_popup_wrap.active .bottom_popup {
  bottom: 0;
}
.bottom_popup_wrap .bottom_popup {
  position: absolute;
  left: 0;
  bottom: -100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  max-height: calc(100% - 2.5rem);
  border-radius: 1.5rem 1.5rem 0 0;
  background-color: #fff;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_header {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-height: 4rem;
  padding: 1.25rem 1.5rem;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_header .tit {
  margin-right: 2.125rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #202020;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_header .tit:only-child {
  margin: 0;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_header .btn_close {
  display: inline-block;
  position: absolute;
  right: 1.5rem;
  top: 1.25rem;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 1.5rem;
  height: 1.5rem;
  overflow: hidden;
  text-indent: -62.4375rem;
  background: url(../img/icon_close_24.svg) no-repeat center center/1.5rem auto;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_body {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding: 1rem 1.5rem 1.5rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_body:last-child {
  padding-bottom: 2rem;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_body .bd_hr:not(.ty1) {
  margin: 0 -1.5rem;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_body .tab_list.ty_1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_body .cont_wrap {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 1.5rem 1.875rem;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_footer a,
.bottom_popup_wrap .bottom_popup .bottom_popup_footer button {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  width: 100%;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  white-space: nowrap;
}
.bottom_popup_wrap .bottom_popup .bottom_popup_footer a:first-child,
.bottom_popup_wrap .bottom_popup .bottom_popup_footer button:first-child {
  margin-left: 0;
}
.layer_popup_wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  background-color: rgba(20, 20, 43, 0.45);
}
.layer_popup_wrap.active {
  opacity: 1;
  visibility: visible;
}
.layer_popup_wrap .layer_popup {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-height: 100%;
  padding: 1.875rem 1.5rem;
  border-radius: 1.5rem;
  background-color: #fff;
}
.layer_popup_wrap .layer_popup_body {
  overflow: auto;
}
.layer_popup_wrap .layer_popup_body.scrollbar_x::-webkit-scrollbar {
  display: block !important;
  height: 0.1875rem;
  background-color: #ececec;
}
.layer_popup_wrap .layer_popup_body.scrollbar_x::-webkit-scrollbar-thumb {
  background: #888;
}
.popup_msg_box {
  text-align: center;
}
.popup_msg_box .popup_msg_text {
  padding-top: 0.625rem;
  color: #666;
  line-height: 1.5rem;
}
.popup_msg_box .popup_msg_text strong {
  font-weight: 600;
  color: #202020;
}
.comp_wrap {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comp_wrap > * {
  margin-left: 0.5rem;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.comp_wrap > *:first-child {
  margin-left: 0;
}
.comp_wrap.phone > :first-child {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
}
.comp_wrap.phone .select.ty1 {
  color: #202020;
}
.comp_wrap.email {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.comp_wrap.email > * {
  margin-left: 0;
}
.comp_wrap.email > .input {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(50% - 1rem);
}
.comp_wrap.email > .select {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(50% - 1rem);
}
.comp_wrap.email > span {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1rem;
  width: 2rem;
  font-size: 1rem;
  line-height: 3rem;
  color: #3f3f3f;
  text-align: center;
}
.comp_wrap.email > :last-child {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
}
.comp_wrap.email .direct {
  display: none;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  margin-top: 0.5rem;
}
.comp_wrap.from_to > span {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1rem;
  font-size: 1rem;
  color: #3f3f3f;
  text-align: center;
}
.comp_wrap.from_to > :first-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 1rem);
  flex: 0 0 calc(50% - 1rem);
}
.comp_wrap.from_to > :last-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 1rem);
  flex: 0 0 calc(50% - 1rem);
}
.comp_wrap.with_btn > :last-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: auto;
}
.comp_wrap.with_count .input input {
  padding-right: 5rem;
}
.comp_wrap.with_count > .count {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 0;
  margin: 0 1.0625rem 0 -1.0625rem;
  font-size: 0.875rem;
  line-height: 2rem;
  color: #f60;
  z-index: 1;
  white-space: nowrap;
}
.comp_wrap.with_count .del {
  right: 3.625rem;
}
.comp_wrap.birth .input input {
  padding-right: 1.875rem;
}
.comp_wrap.birth > :first-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 1rem);
  flex: 0 0 calc(50% - 1rem);
}
.comp_wrap.birth > :last-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 calc(50% - 1rem);
  flex: 0 0 calc(50% - 1rem);
}
.comp_wrap.birth > span {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #3f3f3f;
  text-align: center;
}
.comp_wrap.birth .birth_after {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.comp_wrap.birth .birth_after .input {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 5.1875rem;
  flex: 0 0 5.1875rem;
  margin-right: 0.5rem;
}
.comp_wrap.birth .birth_after .input input {
  padding-right: 0;
}
.comp_wrap.birth .birth_after i {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  margin-left: 0.25rem;
  background-color: #333d47;
  border-radius: 100%;
}
.comp_wrap.birth .birth_after i:first-of-type {
  margin-left: 0;
}
.comp_wrap.ctf_num .count {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: 0.875rem;
  line-height: 2rem;
  color: #f60;
}
.comp_wrap.card .input_bullet {
  text-align: center;
}
.comp_wrap.card .input > input {
  padding: 0;
  text-align: center;
}
.comp_wrap.card > span {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: center;
}
.comp_wrap > .btn_arrow_terms {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.comp_wrap.time .colon {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.875rem;
  margin: 0;
  font-size: 1rem;
  color: #3f3f3f;
  text-align: center;
}
.comp_wrap.time :last-child {
  margin-left: 0;
}
.comp_wrap.time .select {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
.comp_wrap.time .select:first-child {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 90%;
  flex: 1 1 90%;
  margin-left: 0;
}
.ess_mark {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-indent: -624.9375rem;
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0 0.625rem 0.25rem;
  border-radius: 0.125rem;
  background-color: #f60;
}
.notice_text {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
  background: url(../img/icon_notimark.svg) no-repeat left top/1rem;
}
.notice_text.ty2 {
  padding-left: 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #202020;
  background-image: url(../img/icon_info.svg);
}
.notice_text.ty3 {
  padding-left: 0;
  text-align: center;
  background: none;
}
.notice_text.ty3::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  margin: 0 0.3125rem 0 0;
  background: url(../img/icon_notimark.svg) no-repeat left top/contain;
}
.notice_text.ty4 {
  display: inline-block;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1rem;
  color: #f60;
  background: url(../img/icon_timer_16_or.svg) no-repeat left center/1rem auto;
}
.notice_text.ty5 {
  margin-top: 0;
  padding-left: 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1rem;
  color: #202020;
  background: url(../img/icon_notimark_dark.svg) no-repeat left top/1rem auto;
}
.notice_text.ty6 {
  margin-top: 0;
  padding-left: 1.5rem;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #202020;
  background: url(../img/icon_notimark_dark.svg) no-repeat left top/1rem auto;
}
.txt_like {
  display: inline-block;
  padding-left: 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  background: url(../img/icon_like.svg) no-repeat left center/1rem auto;
}
.icon_download {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45) url(../img/icon_download_16_white.svg) no-repeat center;
  background-size: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
}
.icon_link {
  display: inline-block;
  background: rgba(0, 0, 0, 0.45) url(../img/icon_link_16_white.svg) no-repeat center;
  background-size: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
}
.icon_link02 {
  display: inline-block;
  background: url(../img/icon_link04.svg) no-repeat center/2.5rem auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.45);
}
.icon_link02.clean {
  background-color: rgba(0, 0, 0, 0);
}
.icon_confirm {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  font-size: 0;
  line-height: 1;
  text-indent: -624.9375rem;
  overflow: hidden;
  background: url(../img/icon_confirm.svg) no-repeat center center/1.25rem auto;
}
.icon_confirm_gray {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  font-size: 0;
  line-height: 1;
  text-indent: -624.9375rem;
  overflow: hidden;
  background: url(../img/icon_confirm_gray.svg) no-repeat center center/1.25rem auto;
}
.icon_confirm2 {
  position: relative;
  padding-left: 1.75rem;
}
.icon_confirm2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_confirm.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.icon_edit {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0;
  line-height: 1;
  text-indent: -624.9375rem;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem auto;
  background-image: url(../img/icon_edit.svg);
}
.icon_edit.c_1 {
  background-image: url(../img/icon_edit_orange.svg);
}
.icon_check {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0;
  line-height: 1;
  text-indent: -624.9375rem;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem auto;
  background-image: url(../img/icon_check.svg);
}
.icon_send {
  padding-left: 1.75rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5rem auto;
  background-image: url(../img/icon_send.svg);
}
.no_result_msg.ty1 {
  margin: 3rem 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
  text-align: center;
}
.no_result_msg.ty2 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
}
.no_result_msg.ty3 {
  padding: 1rem 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
  text-align: center;
}
.no_result_msg.icon_ty1 {
  padding-top: 5.125rem;
  background: url(../img/icon_msg_ty1.svg) no-repeat center top/4.5rem auto;
}
.no_result_msg.icon_ty2 {
  padding-top: 5.125rem;
  background: url(../img/icon_msg_ty2.svg) no-repeat center top/4.5rem auto;
}
.no_result_msg.icon_ty3 {
  margin: 0;
  padding: 3rem 1.25rem;
  border-radius: 1rem;
  background-color: #fafafa;
}
.no_result_msg.icon_ty3 .text {
  padding-top: 5rem;
  background: url(../img/icon_msg_ty2.svg) no-repeat center top/4.5rem auto;
}
.input_placeholder,
.placeholder_text {
  padding-left: 1.25rem;
  background: url(../img/icon_notimark.svg) no-repeat left top/1rem auto;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
}
.progress_box + .progress_box {
  margin-top: 1.25rem;
}
.progress_box .progress_base {
  position: relative;
  height: 0.25rem;
  border-radius: 6.25rem;
  background-color: #ececec;
}
.progress_box .progress_base .progress_bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 6.25rem;
}
.progress_box .progress_base .progress_bar.c_1 {
  background-color: #f60;
}
.progress_box .progress_base .progress_bar.c_2 {
  background-color: #66c8ff;
}
.progress_box .progress_base .progress_bar.c_3 {
  background-color: #ff6e6e;
}
.progress_box .progress_base .progress_bar.c_4 {
  opacity: 1;
  background-color: #fff;
}
.progress_box .progress_base.ty1 {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0;
}
.progress_box .progress_base.ty1 .progress_bar {
  background-color: #fff;
  border-radius: 0;
}
.progress_box .progress_base.ty2 {
  border-radius: 0;
}
.progress_box .progress_base.ty2 .progress_bar {
  background-color: #f60;
  border-radius: 0;
}
.badge_cont {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 0;
  gap: 0.25rem;
}
.badge_cont .badge {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  vertical-align: top;
  padding: 0 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  border-radius: 0.125rem;
}
.badge_cont .badge.c_1 {
  font-weight: 600;
  color: #fff;
  border: 0.0625rem solid #f60;
  background-color: #f60;
}
.badge_cont .badge.c_2 {
  font-weight: 600;
  color: #fff;
  border: 0.0625rem solid #24b2b2;
  background-color: #24b2b2;
}
.badge_cont .badge.c_3 {
  font-weight: 600;
  color: #fff;
  border: 0.0625rem solid #cc66bc;
  background-color: #cc66bc;
}
.badge_cont .badge.c_4 {
  color: #666;
  border: 0.0625rem solid #d9d9d9;
  background-color: #f5f5f8;
}
.badge_cont .badge.c_5 {
  color: #fff;
  border: 0.0625rem solid #2eb3e5;
  background-color: #2eb3e5;
}
.badge_cont .badge.c_6 {
  color: #fff;
  border: 0.0625rem solid #ffb800;
  background-color: #ffb800;
}
.badge_cont .badge.c_7 {
  color: #fff;
  border: 0.0625rem solid #9d8778;
  background-color: #9d8778;
}
.badge_cont .badge.c_8 {
  color: #fff;
  border: 0.0625rem solid #9e9e9e;
  background-color: #9e9e9e;
}
.badge_cont .badge.c_9 {
  color: #fff;
  border: 0.0625rem solid #f33;
  background-color: #f33;
}
.badge_cont .badge.c_10 {
  color: #fff;
  border: 0.0625rem solid #888;
  background-color: #888;
}
.badge_cont .badge.c_11 {
  color: #fff;
  border: 0.0625rem solid #bababa;
  background-color: #bababa;
}
.badge_cont .badge.c_12 {
  color: #3f3f3f;
  border: 0.0625rem solid #ececec;
  background-color: #f0f0f0;
}
.badge_cont .badge.c_13 {
  color: #3f3f3f;
  border: 0.0625rem solid #fff;
  background-color: #fff;
}
.badge_cont .badge.c_14 {
  color: #f60;
  border: 0.0625rem solid #f60;
  background-color: rgba(0, 0, 0, 0);
}
.badge_cont .badge.c_15 {
  color: #fff;
  border: 0.0625rem solid #06f;
  background-color: #06f;
}
.badge_cont .badge.c_16 {
  color: #fff;
  border: 0.0625rem solid #53bc00;
  background-color: #53bc00;
}
.badge_cont .badge.c_17 {
  color: #fff;
  border: 0.0625rem solid #666;
  background-color: #666;
}
.badge_cont .badge.r_1 {
  border-radius: 2.625rem;
}
.badge_cont .rnd_badge {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  vertical-align: top;
  padding: 0 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.625rem;
  border-radius: 6.25rem;
}
.badge_cont .rnd_badge.c_1 {
  color: #fff;
  border: 0.0625rem solid #666;
  background-color: #666;
}
.badge_cont .rnd_badge.c_2 {
  color: #fff;
  border: 0.0625rem solid #24b2b2;
  background-color: #24b2b2;
}
.badge_cont .rnd_badge.c_3 {
  color: #fff;
  border: 0.0625rem solid #fb3b3b;
  background-color: #fb3b3b;
}
.badge_cont .rnd_badge.c_4 {
  color: #202020;
  border: 0.0625rem solid #202020;
  background-color: rgba(0, 0, 0, 0);
}
.badge_cont.single {
  margin: 0;
}
.badge_cont.single .badge {
  margin: 0;
}
.badge_cont.rnd_ty {
  gap: 0.5rem;
}
.noti_msg_box {
  padding: 1.25rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.noti_msg_box > p {
  padding-left: 1.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
  background: url(../img/icon_notimark.svg) no-repeat left top;
  background-size: 1rem auto;
}
.noti_msg_box.bottom_position {
  margin-top: auto;
  padding-top: 2.5rem;
}
.noti_msg_box.ty1 {
  background-color: #f5f5f5;
}
.noti_box.ty1 {
  padding: 0.375rem;
  text-align: center;
  border-radius: 6.25rem;
  background-color: #f5f5f5;
}
.noti_box.ty1 > span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
}
.bg_info_box {
  padding: 1rem 1.25rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25rem;
  border-radius: 0.5rem;
  background-color: #faf9f8;
}
.bg_info_box.ty2 {
  background-color: #f8f8f8;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  font-weight: 400;
  color: #666;
}
.bg_info_center_box {
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #f5f5f5;
}
.bg_info_center_box .msg_text {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.bg_info_center_box .desc {
  padding-top: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
}
.bg_info_center_box.etc01 {
  padding: 2.5rem 1.5rem 0 1.5rem;
}
.coupon {
  position: relative;
  display: block;
  overflow: hidden;
}
.coupon .cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.coupon_inner {
  display: block;
  position: relative;
  background-color: #fff5ed;
  border: 0.0625rem solid #f60;
  border-radius: 1rem;
  padding: 1.1875rem;
}
.coupon_inner .coupon_name {
  display: block;
  padding-right: 4.75rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.coupon_line {
  position: relative;
  display: block;
  height: 0px;
  margin: 1.25rem -1.1875rem;
  border-bottom: 0.0625rem dashed #f60;
}
.coupon_line::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.125rem;
  height: 2.125rem;
  background: #fff;
  border: 0.0625rem solid #f60;
  top: -1.0625rem;
  left: -1.5rem;
  border-radius: 100%;
}
.coupon_line::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.125rem;
  height: 2.125rem;
  background: #fff;
  border: 0.0625rem solid #f60;
  top: -1.0625rem;
  right: -1.5rem;
  border-radius: 100%;
}
.coupon_body .txt_1 {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.coupon_body .txt_2 {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #202020;
}
.coupon_body .txt_3 {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
}
.coupon .remain {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background-color: #f60;
}
.coupon .remain > .text {
  display: block;
  font-size: 0.75rem;
  line-height: 0.75rem;
}
.coupon .remain > .cnt {
  display: block;
  padding-top: 0.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.coupon.selectabled input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.coupon.selectabled input + .coupon_inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.coupon.selectabled input + .coupon_inner .coupon_line {
  border-color: #d9d9d9;
}
.coupon.selectabled input + .coupon_inner .coupon_line::before {
  border-color: #d9d9d9;
}
.coupon.selectabled input + .coupon_inner .coupon_line::after {
  border-color: #d9d9d9;
}
.coupon.selectabled input:checked + .coupon_inner {
  z-index: 1;
  background-color: #fff5ed;
  border-color: #f60;
}
.coupon.selectabled input:checked + .coupon_inner .coupon_line {
  border-color: #f60;
}
.coupon.selectabled input:checked + .coupon_inner .coupon_line::before {
  border-color: #f60;
}
.coupon.selectabled input:checked + .coupon_inner .coupon_line::after {
  border-color: #f60;
}
.coupon.selectabled input:disabled + .coupon_inner {
  border-color: rgba(186, 186, 186, 0.25);
}
.coupon.selectabled input:disabled + .coupon_inner .logo_area {
  opacity: 0.3;
}
.coupon.selectabled input:disabled + .coupon_inner .coupon_line {
  z-index: 3;
  border-color: rgba(0, 0, 0, 0);
}
.coupon.selectabled input:disabled + .coupon_inner .coupon_line::before {
  border-color: rgba(186, 186, 186, 0.25);
}
.coupon.selectabled input:disabled + .coupon_inner .coupon_line::after {
  border-color: rgba(186, 186, 186, 0.25);
}
.coupon.selectabled input:disabled + .coupon_inner .remain {
  opacity: 0.3;
}
.coupon.selectabled input:disabled + .coupon_inner .coupon_body {
  opacity: 0.3;
}
.coupon.selectabled input:disabled + .coupon_inner .bottom {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background: rgba(186, 186, 186, 0.25);
}
.coupon.selectabled input:disabled + .coupon_inner .bottom::after {
  content: "";
  position: absolute;
  right: 4.375rem;
  bottom: 1.125rem;
  width: 4.5rem;
  height: 4.5rem;
  background: url(../img/coupon/img_soldout.svg) no-repeat center center/4.5rem auto;
}
.coupon.etc01 input + .coupon_inner {
  padding: 1.5625rem 1.1875rem;
}
.coupon.etc01 input + .coupon_inner .coupon_line {
  margin: 0 -1.1875rem;
  border-bottom: none;
}
.coupon.etc01 input + .coupon_inner .txt_3 {
  padding-right: 4.75rem;
}
.coupon.etc01 input + .coupon_inner .thumb {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 3.5rem;
  font-size: 0;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.coupon.etc01 input + .coupon_inner .thumb img {
  display: block;
  max-width: 100%;
}
.logo_area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.icon_union {
  display: inline-block;
  width: 0.625rem;
  height: 0.5625rem;
  margin: 0 0.5rem;
  background: url(../img/re/icon_union.svg) no-repeat center;
  background-size: contain;
}
.event_list .item {
  display: block;
}
.event_list .item + .item {
  margin-top: 2.5rem;
}
.event_list .item a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}
.event_list .item .img_box {
  position: relative;
  overflow: hidden;
  background: #d9d9d9;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.event_list .item .img_box img {
  display: block;
  width: 100%;
}
.event_list .item .badge {
  margin-bottom: 0.5rem;
}
.event_list .item .date {
  display: block;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
  margin-bottom: 0.25rem;
}
.event_list .item .txt {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 600;
}
.toggle_div {
  display: none;
}
.toggle_div.on {
  display: block;
}
.auth_guide_top {
  text-align: center;
}
.auth_guide_top h2 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.auth_guide_top .desc {
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.auth_guide_list_wrap {
  padding: 2rem 0 1.75rem 0;
}
.auth_guide_list_wrap h3 {
  padding-bottom: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.auth_guide_list > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
  word-break: keep-all;
}
.auth_guide_list > li > i {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.5rem;
  margin-right: 1rem;
  font-size: 0;
  line-height: 1;
}
.auth_guide_list > li > i img {
  width: 100%;
}
.auth_guide_list > li + li {
  margin-top: 1rem;
}
.swiper-pagination {
  display: block;
  font-size: 0;
  text-align: center;
  position: static;
}
.swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  vertical-align: top;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.25rem;
  border-radius: 0.25rem;
  background-color: #ccc4b8;
  -webkit-transition: width 0.3s, background-color 0.3s;
  transition: width 0.3s, background-color 0.3s;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f60;
  width: 1rem;
}
.menu_content_notice {
  height: 3rem;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #fff5ed;
}
.menu_content_notice_item a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8125rem 2.5rem 0.8125rem 1rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right 1rem center/1rem auto;
}
.menu_content_notice_item .title {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-right: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #000;
}
.menu_content_notice_item .title.ty1 {
  padding-left: 1.25rem;
  background: url(../img/icon_specker.svg) no-repeat left center/1rem auto;
}
.menu_content_notice_item .item_text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn_pagetop_area {
  position: relative;
  height: 0;
}
.btn_pagetop {
  position: absolute;
  z-index: 1;
  display: block;
  right: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.4);
  background: #fff url(../img/icon_pagetop.svg) no-repeat center/1.5rem;
}
.btn_area ~ .btn_pagetop {
  bottom: 4.75rem;
}
.nav_bottom ~ .btn_pagetop {
  bottom: 6.3125rem;
}
.header.is_main {
  position: relative;
  padding-top: 1rem;
  background-color: #f9f7f4;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header.is_main .input .del {
  top: 0.6875rem;
  right: 0.6875rem;
}
.header.is_main input {
  border: 0;
  height: 2.5rem;
  line-height: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 1rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-size: 0.9375rem;
  letter-spacing: -0.1px;
}
.header.is_main .search {
  left: 0.6875rem;
  right: auto;
}
.header.is_main::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #f9f7f4;
  width: 100%;
  height: 0.125rem;
  z-index: 20;
  left: 0;
  top: calc(100% - 0.0625rem);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header.is_main.active_benefit {
  background-color: #fff;
}
.header.is_main.active_benefit::after {
  background-color: #fff;
}
.header.is_main.active_benefit input {
  background-color: #f9f7f4;
}
.cont_wrap .main_swiper {
  margin: 0 -1.5rem;
  margin-top: -0.625rem;
}
.cont_wrap .main_swiper .swiper-wrapper {
  padding: 0.625rem 0;
}
.cont_wrap .main_swiper.stretch_swiper .swiper-wrapper {
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cont_wrap .main_swiper.stretch_swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.cont_wrap .main_swiper#swiper_1 .main_card.pd_0 a {
  font-size: 0;
}
.cont_wrap .main_swiper#swiper_1 .main_card.pd_0 img {
  max-width: 100%;
  border-radius: 1rem;
}
.main_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
  color: #000;
  margin-bottom: 1.5rem;
}
.main_title_sub {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #f60;
  margin-top: 3.5rem;
  margin-bottom: 0.125rem;
}
.main_title .udline::after {
  border-bottom: 0.625rem solid #ffd2ab;
  bottom: 0.25rem;
}
.main_date_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.375rem;
  padding: 0 0.9375rem;
  background: #fff;
  border-radius: 0.75rem;
}
.main_date_box .date {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.9375rem;
  height: 2.5rem;
  background: url(../img/main/img_date_box.svg) no-repeat center;
  background-size: contain;
  padding: 1.125rem 0 0.375rem;
  text-align: center;
  line-height: 1rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  margin-right: 1rem;
}
.main_date_box .text_box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  overflow: hidden;
}
.main_date_box .text_box .name {
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: #000;
}
.main_date_box .text_box .txt {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #333;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main_notice_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.375rem;
  padding: 0 0.9375rem;
  background: #fff;
  border-radius: 0.75rem;
}
.main_notice_box .notice {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/main/img_notcie_box.svg) no-repeat center;
  background-size: contain;
  margin-right: 1rem;
}
.main_notice_box .text_box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  overflow: hidden;
}
.main_notice_box .text_box .name {
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: #000;
}
.main_notice_box .text_box .txt {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #333;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main_tab {
  position: sticky;
  left: 0;
  top: -0.125rem;
  height: 3.625rem;
  z-index: 20;
  background-color: #f9f7f4 !important;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.main_tab .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 3.625rem;
  padding: 0.125rem 1.5rem 0;
}
.main_tab .inner a {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 500;
  margin-right: 1.5625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.main_tab .inner a::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 100%;
  background: #f60;
  margin: 0.25rem -0.4375rem 0 0.125rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s, font-weight 0.3s;
  transition: opacity 0.3s, font-weight 0.3s;
}
.main_tab .inner a:first-child {
  font-weight: 700;
  color: #000;
}
.main_tab .inner a:first-child::after {
  opacity: 1;
}
.main_tab.active_benefit {
  background-color: #fff !important;
}
.main_tab.active_benefit .inner a:first-child {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3);
}
.main_tab.active_benefit .inner a:first-child::after {
  opacity: 0;
}
.main_tab.active_benefit .inner a:nth-child(2) {
  font-weight: 700;
  color: #000;
}
.main_tab.active_benefit .inner a:nth-child(2)::after {
  content: "";
  opacity: 1;
}
.main_swiper {
  position: relative;
  overflow: hidden;
  padding: 0 0.75rem;
}
.main_swiper .swiper-slide {
  padding: 0 0.75rem;
}
.main_swiper .swiper-pagination {
  margin-top: 0.625rem;
}
.main_swiper .swiper-pagination.ty1 {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  white-space: nowrap;
  margin: 0;
  width: auto;
}
.main_swiper.ty1 {
  padding: 0 1.5rem;
}
.main_swiper.ty1 .swiper-slide {
  width: calc(50% - 0.5rem);
  padding: 0;
}
.main_swiper.ty2 {
  padding: 0;
}
.main_swiper.ty2 .swiper-slide {
  width: 100%;
  padding: 0;
}
.main_link_list {
  overflow-y: hidden;
  overflow-x: auto;
  margin: 0 -1.5rem;
  font-size: 0;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main_link_list::-webkit-scrollbar {
  display: none;
}
.main_link_list > .link {
  display: inline-block;
  vertical-align: top;
  border-radius: 0.625rem;
  padding: 0 1rem;
  height: 3rem;
  line-height: 3rem;
  background: #ece6de;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  margin-left: 0.75rem;
}
.main_link_list > .link:first-child {
  margin-left: 1.5rem;
}
.main_link_list > .link:last-child {
  margin-right: 1.5rem;
}
.main_card {
  display: block;
  position: relative;
  border-radius: 1rem;
}
.main_card.ty1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0 0.125rem 0.625rem 0 rgba(172, 161, 145, 0.5);
  box-shadow: 0 0.125rem 0.625rem 0 rgba(172, 161, 145, 0.5);
  padding: 1.25rem 1rem;
  min-height: 100%;
}
.main_card.ty1 .top_area {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.25rem 0 1.375rem 0.5rem;
}
.main_card.ty1 .top_area .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1.25rem;
  line-height: 1.5rem;
  line-height: 1.6875rem;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main_card.ty1 .top_area .title > span {
  color: #aaa;
}
.main_card.ty1 .top_area .link {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.625rem;
  overflow: hidden;
  text-indent: -624.9375rem;
  background: url(../img/icon_arrow_right_type6.svg) no-repeat center;
  background-size: contain;
}
.main_card.ty1 .link_box_list {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  height: 14.75rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.main_card.ty1 .link_box_list > .link_label {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3125rem;
  color: #f60;
}
.main_card.ty1 .link_box_list > .link_label + .item {
  margin-top: 0.5rem;
}
.main_card.ty1 .link_box_list > .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.8125rem 1.25rem;
  border-radius: 0.5rem;
  background-color: #f7f5f2;
}
.main_card.ty1 .link_box_list > .item + .item {
  margin-top: 0.625rem;
}
.main_card.ty1 .link_box_list > .item + .link_label {
  margin-top: 1rem;
}
.main_card.ty1 .link_box_list > .item.empty {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 4.5rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  color: #666;
  background-color: #fcfbf9;
}
.main_card.ty1 .link_box_list > .item.empty::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.0625rem;
  height: 1rem;
  background: url(../img/icon_timer_16.svg) no-repeat center/contain;
  margin: 0 0.5rem 0 0;
}
.main_card.ty1 .link_box_list > .item .txt_area {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  overflow: hidden;
}
.main_card.ty1 .link_box_list > .item .txt_area.link {
  margin-right: -0.25rem;
  padding-right: 2.25rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.main_card.ty1 .link_box_list > .item .txt_area .tit {
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  color: #000;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.main_card.ty1 .link_box_list > .item .txt_area .tit .time {
  display: inline-block;
  vertical-align: top;
  line-height: 0.75rem;
  border-left: 0.0625rem solid #f60;
  margin: 0.25rem 0 0 0.625rem;
  padding-left: 0.625rem;
}
.main_card.ty1 .link_box_list > .item .txt_area .tit .time::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: -0.6875rem 0.25rem -0.625rem 0;
  width: 1.0625rem;
  height: 1rem;
  background: url(../img/icon_timer_16_or.svg) no-repeat center/contain;
}
.main_card.ty1 .link_box_list > .item .txt_area .info_list {
  font-size: 0;
  line-height: 1.3125rem;
  white-space: nowrap;
}
.main_card.ty1 .link_box_list > .item .txt_area .info_list > li {
  display: inline-block;
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  color: #333;
}
.main_card.ty1 .link_box_list > .item .txt_area .info_list > li + li::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  background: #aaa;
  height: 0.625rem;
  width: 0.0625rem;
  margin: 0.3125rem 0.5rem 0;
}
.main_card.ty1 .link_box_list > .item .txt_area .info_list > li.name {
  font-weight: 600;
  color: #000;
}
.main_card.ty1 .link_box_list > .item .txt_area .info_list > li.name + li {
  margin-left: 0.5rem;
}
.main_card.ty1 .link_box_list > .item .txt_area .info_list > li.name + li::before {
  display: none;
}
.main_card.ty1 .link_box_list > .item > .btn {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 0.5rem;
}
.main_card.ty1 .link_box_list > .item_link.ty1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.625rem;
  height: 9.625rem;
  padding: 0 1rem 0 1.25rem;
}
.main_card.ty1 .link_box_list > .item_link.ty1 .inner {
  font-size: 0.9375rem;
  line-height: 1.3125rem;
  text-align: center;
}
.main_card.ty1 .link_box_list > .item_link.ty1 .inner .btn {
  margin-top: 1rem;
}
.main_card.ty1 .link_box_list > .item_link.ty2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.625rem;
  height: 4.5rem;
  padding: 0 1rem 0 1.25rem;
}
.main_card.ty1 .link_box_list .item_link_btn01 {
  position: relative;
  display: block;
  padding-right: 2.8125rem;
  font-size: 0.9375rem;
  color: #202020;
  line-height: 1.375rem;
}
.main_card.ty1 .link_box_list .item_link_btn01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f0f0f0 url(../img/icon_arrow_right_type2.svg) no-repeat center center/1rem auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main_card.ty1 .txt_1 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  color: #000;
  text-align: center;
}
.main_card.ty1 .txt_2 {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #000;
  text-align: center;
}
.main_card.ty1 .empty_area {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main_card.ty1 .empty_area .empty_icon {
  display: block;
  margin: 2.25rem auto 1rem;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../img/main/icon_main_empty_customer.svg) no-repeat center/contain;
}
.main_card.ty1 .empty_area .icon_arr {
  display: inline-block;
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
  margin: -0.125rem 0;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat center/contain;
}
.main_card.ty1 .empty_area .btn_area {
  margin-top: auto;
}
.main_card.ty1 .img {
  width: 12.5rem;
  margin: 0 auto;
}
.main_card.ty1.img1 {
  background: #ffdb80;
}
.main_card.ty1.img1 .top_area {
  margin-bottom: 0.6875rem;
}
.main_card.ty1.img1 .top_area .title {
  line-height: 1.6875rem;
}
.main_card.ty1.img1 .img {
  display: block;
  width: 12.5rem;
  margin: 0 auto;
}
.main_card.ty1.img1 .link {
  display: block;
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  width: calc(100% - 3rem);
  height: 3rem;
  border-radius: 0.75rem;
  background-color: #fff;
  font-size: 1rem;
  line-height: 3rem;
  text-align: center;
  font-weight: 500;
  color: #000;
}
.main_card.ty1.img1 .link::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  margin: 1rem 0.125rem 0 0;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat center;
  background-size: contain;
}
.main_card.ty1.img2 {
  position: relative;
  padding: 0;
  background-color: #fff1e7;
  overflow: hidden;
}
.main_card.ty1.img2 .img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.main_card.ty2 {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.main_card.ty2 img {
  display: block;
  width: 100%;
}
.main_card.ty2 .icon_link {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.main_card.ty3 {
  border-radius: 1rem;
  overflow: hidden;
}
.main_card.ty3 img {
  display: block;
  width: 100%;
}
.main_card.ty3 .icon_download {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
.main_card.ty4 {
  padding: 1.5rem;
}
.main_card.ty4 .line {
  height: 0.0625rem;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}
.main_card.ty4 .fp_review_card {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.5625rem 1.125rem 0.75rem;
}
.main_card.ty4 .fp_review_card .photo {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: block;
  position: relative;
  overflow: hidden;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background-color: #eee;
  margin-right: 0.75rem;
}
.main_card.ty4 .fp_review_card .photo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.main_card.ty4 .fp_review_card .txt_box .tit {
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  color: #000;
  font-weight: 600;
  margin-top: 0.0625rem;
}
.main_card.ty4 .fp_review_card .txt_box .des {
  font-size: 0.9375rem;
  line-height: 1.4375rem;
}
.main_card.ty4 .arrow_right {
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  margin: 0.125rem 0 0 0.125rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat center;
  background-size: 1rem;
}
.main_card.ty4 .banner_box {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}
.main_card.ty4 .banner_box img {
  display: block;
  width: 100%;
}
.main_card.ty4 .banner_box .icon_link {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
.main_card.ty4 .txt_1 > span {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2rem;
}
.main_card.ty4 .txt_1 > span::after {
  content: "";
  display: block;
  margin-top: -0.75rem;
  margin-right: -0.125rem;
  height: 0.75rem;
  background-color: #dcdcfd;
}
.main_card.ty4 .txt_2 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  font-weight: 600;
}
.main_card.ty4 .txt_3 {
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  color: #333;
}
.main_card.ty4.c_1 {
  background-color: #f1f1f6;
}
.main_card.ty4.c_1 .txt_1 > span::after {
  background-color: #dcdcfd;
}
.main_card.ty4.c_2 {
  background-color: #f4f0ea;
}
.main_card.ty4.c_2 .txt_1 > span::after {
  background-color: #f7e7cf;
}
.main_card.ty4.c_3 {
  background-color: #e8eef1;
}
.main_card.ty4.c_3 .txt_1 > span::after {
  background-color: #d6eaf0;
}
.main_card.ty4.c_4 {
  background-color: #f6f1f1;
}
.main_card.ty4.c_4 .txt_1 > span::after {
  background-color: #f3dcdc;
}
.main_card.ty5 {
  position: relative;
}
.main_card.ty5 img {
  display: block;
  width: 100%;
}
.main_card.ty6 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem 1rem;
  background-color: #fff;
  background-image: linear-gradient(135deg, #fa9f78 0%, #f580b1 100%);
  -webkit-box-shadow: 0 0.125rem 0.625rem 0 rgba(172, 161, 145, 0.5);
  box-shadow: 0 0.125rem 0.625rem 0 rgba(172, 161, 145, 0.5);
}
.main_card.ty6 .top_area {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.25rem 0 1.375rem 0;
}
.main_card.ty6 .top_area .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1.25rem;
  line-height: 1.5rem;
  line-height: 1.6875rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main_card.ty6 .top_area .link {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.625rem;
  overflow: hidden;
  text-indent: -624.9375rem;
  background: url(../img/icon_arrow_right_type6_white.svg) no-repeat center;
  background-size: contain;
}
.main_card.ty6 .link_box_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.main_card.ty6 .link_box_list .item {
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 1.25rem 1rem;
  height: 6.125rem;
  width: 100%;
}
.main_card.ty6 .link_box_list .item .count {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  text-align: right;
  font-size: 1rem;
  font-weight: 600;
  color: #f60;
  text-decoration: underline;
  white-space: nowrap;
}
.main_card.ty6 .link_box_list .item .text {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #202020;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.main_card.ty6 .link_box_list .item .text strong {
  font-weight: 600;
}
.main_card.ty6 .link_box_list .item img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 1.5rem;
}
.main_card.ty6 .link_box_list .item.ty1 {
  width: calc(50% - 0.3125rem);
}
.main_card.ty6 .link_box_list .item.ty1 .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.main_card.ty6 .link_box_list .item.ty2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 3.6875rem;
  padding-top: 0;
  padding-bottom: 0;
}
.main_card.ty6 .link_box_list .item.ty2 img {
  margin-right: 0.5rem;
}
.main_card.ty6 .link_box_list .item.ty2 .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding-right: 0.625rem;
}
.main_card.ty6 .link_box_list .item.ty3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 3.6875rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.main_card.ty6 .link_box_list .item.ty3 .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.main_card.ty6 .link_box_list .item.ty3 .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background: #fff url(../img/main/icon_arrow_right_16.svg) no-repeat center/1rem;
}
.main_card.ty6 .txt_1 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  color: #fff;
  text-align: center;
}
.main_card.ty6 .txt_2 {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #fff;
  text-align: center;
}
.main_card.ty6 .icon_arr {
  display: inline-block;
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
  margin: -0.125rem 0;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat center/contain;
}
.main_card.ty6 .empty_area {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.main_card.ty6 .empty_area .empty_icon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1.75rem auto 1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  background-color: #fff;
}
.main_card.ty6 .empty_area .empty_icon::before {
  content: "";
  width: 2.25rem;
  height: 2.25rem;
  background: url(../img/main/icon_empty_touch_36.svg) no-repeat center/contain;
}
.main_card.ty6 .empty_area .btn_area {
  margin-top: auto;
}
.main_card.ty6 .empty_area .btn {
  color: #3f3f3f;
}
.main .main_share_rank {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main .main_share_rank .item {
  position: relative;
  width: calc(50% - 0.5rem);
  margin-top: 1rem;
}
.main .main_share_rank .item:nth-child(1) {
  margin-top: 0;
}
.main .main_share_rank .item:nth-child(2) {
  margin-top: 0;
}
.main .main_share_rank .item:nth-child(2n) {
  margin-left: 1rem;
}
.main .main_share_rank .item .txt {
  margin: 0.5rem 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  letter-spacing: -0.0625rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.main .main_share_rank .item .img_box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  min-height: 2.25rem;
}
.main .main_share_rank .item .img_box .rank {
  display: block;
  position: absolute;
  left: 1rem;
  top: 0;
  width: 2rem;
  height: 1.5rem;
  line-height: 1.5rem;
  background-color: #f60;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
.main .main_share_rank .item .img_box .rank::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-left: 0;
  border-top: 0.75rem solid #f60;
  border-right: 1rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.75rem solid rgba(0, 0, 0, 0);
}
.main .main_share_rank .item .img_box .rank::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-left: 1rem solid rgba(0, 0, 0, 0);
  border-top: 0.75rem solid #f60;
  border-right: 0;
  border-bottom: 0.75rem solid rgba(0, 0, 0, 0);
}
.main .main_share_rank .item .icon_link {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.main_vertical_swiper {
  position: relative;
  overflow: hidden;
  height: 4.375rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.main_line_title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
  font-weight: 600;
}
.main_line_title::before {
  content: "";
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  height: 0.0625rem;
  background-color: #efeff4;
  margin-right: 0.625rem;
}
.main_line_title::after {
  content: "";
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  height: 0.0625rem;
  background-color: #efeff4;
  margin-left: 0.625rem;
}
.main_rec_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.main_rec_list .item {
  position: relative;
  width: 4.375rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.625rem;
  color: #3f3f3f;
  font-weight: 500;
}
.main_rec_list .item img {
  display: block;
  margin-bottom: 0.5rem;
  width: 100%;
}
.main_link_box {
  display: block;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #e2f3fb;
}
.main_link_box .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main_link_box .top .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #000;
  font-weight: 600;
}
.main_link_box .top .title .arr {
  display: inline-block;
  vertical-align: top;
  margin-top: 0.1875rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat center/contain;
}
.main_link_box .top img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3.5rem;
  margin-left: 0.625rem;
}
.main_link_box .text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  color: #3f3f3f;
  letter-spacing: -0.8px;
}
.main_link_box .btn_view_more02 {
  margin-top: 1.5rem;
  display: block;
  width: 100%;
}
.main_link_box.bg1 {
  background-color: #e2f3fb;
}
.main_link_box.bg2 {
  background-color: #efeff4;
}
.main_link_box + .main_link_box {
  margin-top: 1.5rem;
}
@-webkit-keyframes card1 {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
    transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
  }
  10% {
    opacity: 0;
    -webkit-transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
    transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
}
@keyframes card1 {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
    transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
  }
  10% {
    opacity: 0;
    -webkit-transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
    transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
}
@-webkit-keyframes card2 {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
    transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
  }
  10% {
    opacity: 0;
    -webkit-transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
    transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
}
@keyframes card2 {
  0% {
    opacity: 0;
    -webkit-transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
    transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
  }
  10% {
    opacity: 0;
    -webkit-transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
    transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateZ(0) translate(0, 0);
    transform: rotateZ(0) translate(0, 0);
  }
}
@-webkit-keyframes card3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes card3 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes spin_coin {
  0% {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
  10% {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
  50% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}
@keyframes spin_coin {
  0% {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
  10% {
    -webkit-transform: rotateY(720deg);
    transform: rotateY(720deg);
  }
  50% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
}
.main_ani_link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.75rem;
  padding: 0.5625rem 2.5rem 0.5625rem 0.5rem;
  background: #efeff4 url(../img/icon_arrow_right_type7.svg) no-repeat right 1rem center/1.5rem;
}
.main_ani_link .ani {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  width: 3rem;
  height: 3rem;
}
.main_ani_link .ani.ty1 .card {
  display: block;
  position: absolute;
}
.main_ani_link .ani.ty1 .card:nth-of-type(1) {
  opacity: 0;
  left: 1.375rem;
  top: 0.75rem;
  width: 1.125rem;
  height: 1.25rem;
  background: url(../img/ani/main_icon/01/ani_01-3.svg) no-repeat center/contain;
  -webkit-transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
  transform: rotateZ(-73deg) translate(-0.3125rem, -0.8125rem);
}
.main_ani_link .ani.ty1 .card:nth-of-type(2) {
  opacity: 0;
  left: 1.0625rem;
  top: 0.625rem;
  width: 0.875rem;
  height: 1.125rem;
  background: url(../img/ani/main_icon/01/ani_01-2.svg) no-repeat center/contain;
  -webkit-transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
  transform: rotateZ(-40deg) translate(-0.4375rem, -0.0625rem);
}
.main_ani_link .ani.ty1 .card:nth-of-type(3) {
  opacity: 0;
  left: 0.5rem;
  top: 0.875rem;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../img/ani/main_icon/01/ani_01-1.svg) no-repeat center/contain;
}
.main_ani_link .ani.ty1 .circle {
  display: block;
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 1.0625rem;
  height: 1.0625rem;
  background: url(../img/ani/main_icon/01/ani_01-4_button_share.svg) no-repeat center/contain;
}
.main_ani_link .ani.ty1.play .card:nth-of-type(1) {
  -webkit-animation: 3s ease-out infinite forwards card1;
  animation: 3s ease-out infinite forwards card1;
}
.main_ani_link .ani.ty1.play .card:nth-of-type(2) {
  -webkit-animation: 3s ease-out infinite forwards card2;
  animation: 3s ease-out infinite forwards card2;
}
.main_ani_link .ani.ty1.play .card:nth-of-type(3) {
  -webkit-animation: 3s ease-out infinite forwards card3;
  animation: 3s ease-out infinite forwards card3;
}
.main_ani_link .ani.ty2 {
  background: url(../img/ani/main_icon/02/animation-2.svg) no-repeat center/contain;
  -webkit-transform: rotateY(810deg);
  transform: rotateY(810deg);
}
.main_ani_link .ani.ty2.play {
  -webkit-animation: 3s ease-in-out infinite forwards spin_coin;
  animation: 3s ease-in-out infinite forwards spin_coin;
}
.main_ani_link .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 0.875rem;
  color: #202020;
  line-height: 1.125rem;
}
.main_ani_link .text strong {
  font-weight: 600;
}
.cont_wrap > .main_reward_swiper {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.main_reward_swiper {
  position: relative;
  padding: 2rem 0 6rem 0;
}
.main_reward_swiper .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.main_reward_swiper.ty0 .cover.ty0 {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.main_reward_swiper.ty1 .cover.ty1 {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.main_reward_swiper.ty2 .cover.ty2 {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.main_reward_swiper.ty3 .cover.ty3 {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.main_reward_swiper .swiper-wrapper {
  z-index: 3;
}
.main_reward_swiper .swiper-slide {
  width: 17.9375rem;
}
.main_reward_swiper .swiper-slide > a {
  display: block;
}
.main_reward_swiper .swiper-slide .in_cont {
  padding: 1.5rem;
  border-radius: 1rem;
}
.main_reward_swiper .swiper-slide .reward_top {
  font-size: 0;
  text-align: center;
}
.main_reward_swiper .swiper-slide .reward_top > .text {
  display: inline-block;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.75rem;
  color: #202020;
  border-radius: 6.25rem;
  background-color: #fff;
}
.main_reward_swiper .swiper-slide .title {
  min-height: 4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  white-space: nowrap;
}
.main_reward_swiper .swiper-slide .title .udline::after {
  bottom: 0.1875rem;
}
.main_reward_swiper .swiper-slide .thumb {
  margin-top: 0.5rem;
  font-size: 0;
}
.main_reward_swiper .swiper-slide .sub_text {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  text-align: center;
}
.main_reward_swiper .swiper-slide .btn_area {
  margin-top: 1rem;
}
.main_reward_swiper .swiper-slide .btn_area > span {
  display: block;
  width: 100%;
}
.main_reward_swiper .swiper-slide.ty1 .in_cont {
  background-color: #dee0f6;
}
.main_reward_swiper .swiper-slide.ty2 .in_cont {
  background-color: #dfeff7;
}
.main_reward_swiper .swiper-slide.ty3 .in_cont {
  background-color: #f7ecdf;
}
.main_reward_swiper .swiper-slide.ty4 .in_cont {
  background-color: #efdce8;
}
.main_reward_swiper.swiper-initialized .swiper-slide .in_cont {
  position: relative;
  opacity: 0.5;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.main_reward_swiper.swiper-initialized .swiper-slide .in_cont > * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.main_reward_swiper.swiper-initialized .swiper-slide .btn_area {
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main_reward_swiper.swiper-initialized .swiper-slide.swiper-slide-active .in_cont {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
.main_reward_swiper.swiper-initialized .swiper-slide.swiper-slide-active .in_cont > * {
  opacity: 1;
}
.main_reward_swiper.swiper-initialized .swiper-slide.swiper-slide-active .btn_area {
  opacity: 1;
}
.main_reward_swiper:not(.swiper-initialized) {
  font-size: 0;
  text-align: center;
}
.main_reward_swiper:not(.swiper-initialized) .swiper-wrapper {
  display: inline-block;
  width: auto;
}
.main_reward_swiper .main_reward_swiper_link {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  padding: 0 2.75rem;
}
.cont_wrap > .banner_swiper {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.banner_swiper {
  position: relative;
  overflow: hidden;
}
.banner_swiper img {
  display: block;
  width: 100%;
}
.banner_swiper .swiper-pagination {
  position: absolute;
  left: 1.75rem;
  bottom: 1.5rem;
  width: auto;
  white-space: nowrap;
}
.notice_swiper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #333;
}
.notice_swiper .title {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-left: 1.25rem;
  margin-right: 0.3125rem;
  color: #000;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: url(../img/icon_specker.svg) no-repeat left center/1rem;
}
.notice_swiper .list {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  overflow: hidden;
  height: 1.25rem;
  font-size: inherit;
}
.notice_swiper .list li a {
  display: block;
  padding-right: 1.625rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem;
}
.notice_swiper .list li a strong {
  font-weight: 600;
  padding-right: 0.375rem;
}
.border_list {
  padding-top: 2rem;
}
.border_list .list {
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.0625rem solid #ececec;
}
.border_list .list:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.border_list .content_head {
  padding-bottom: 1rem;
}
.border_list .in_cont .title_text {
  padding-bottom: 1rem;
}
.border_list .in_cont * + .in_cont {
  padding-top: 2rem;
}
.border_list.ty2 .list {
  margin-top: 4rem;
  padding-top: 4rem;
  border-color: #f0f0f0;
}
.border_list.ty2 .list:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.border_list.ty3 {
  padding-top: 0;
}
.border_list.ty3 .list + .list {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: none;
}
.border_list.ty3 .list + .list::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: calc(100% + 3rem);
  border-bottom: 0.0625rem solid #ececec;
}
.border_list.ty3 .list .in_cont .title_text {
  padding-bottom: 1rem;
}
.border_list.ty3 .list .in_cont + .in_cont {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid #ececec;
}
.radio_tab.report_type + .notice_text {
  display: none;
}
.icon_box_wrap {
  text-align: center;
}
.icon_box_wrap .icon_box {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #eee;
}
.icon_box_wrap .title_text {
  padding-top: 2.5rem;
}
.icon_box_wrap p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.icon_box_wrap.error {
  margin-top: 7.5rem;
}
.icon_box_wrap.error .icon_box {
  width: 6rem;
  height: 6rem;
  background: none;
}
.icon_box_wrap.error .icon_box + .title_text {
  padding-top: 2rem;
}
.icon_box_wrap.error .slide_wrap.ty2 .slide_trg {
  padding-left: 0;
  padding-right: 0;
}
.icon_box_wrap.error .slide_wrap.ty2 .slide_cont .inner {
  padding: 0;
}
.icon_box_wrap.error .btn_quest {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #888;
}
.icon_box_wrap.error .btn_quest .btn_text {
  margin-left: 0.5rem;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #888;
}
.icon_box_wrap.error .btn_quest .btn_text:after {
  bottom: 0.125rem;
  background-color: #888;
}
.bg_info_box.ty3 {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  background-color: #f5f5f5;
}
.bg_info_box.ty4 {
  padding: 1.5rem 1.25rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.bg_info_box.ty4 .logo {
  margin-bottom: 1rem;
}
.bg_info_box.ty4 .logo img {
  width: 1.25rem;
}
.bg_info_box.ty4 {
  padding: 1.25rem;
  background-color: #f5f5f5;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  border-radius: 0.5rem;
}
.login_area {
  padding: 6rem 1.875rem 0;
  background-color: #fff !important;
}
.login_top p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.login_top .logo {
  width: 13.75rem;
}
.login_comp_wrap .lc_msg {
  position: relative;
  margin: 7.5rem 0 11.125rem 0;
  padding-top: 7.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
}
.login_comp_wrap .lc_msg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #fff4ed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 4rem auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.login_comp_wrap .lc_msg.ty1::before {
  background-image: url(../img/icon_login_type01.svg);
}
.login_comp_wrap .lc_msg.ty2::before {
  background-image: url(../img/icon_login_type02.svg);
}
.login_comp_wrap .lc_msg.ty3::before {
  background-image: url(../img/icon_login_type03.svg);
}
.login_comp_wrap .lc_more {
  margin: 0 1.5rem;
  padding: 1.5rem 0;
  text-align: center;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
}
.login_comp_wrap .lc_more > .text {
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.login_comp_wrap .lc_more > .text strong {
  font-weight: 600;
}
.lc_more_item {
  margin-top: 1.5rem;
  font-size: 0;
}
.lc_more_item .lc_more_link {
  display: inline-block;
  width: 5.5rem;
  padding-top: 3rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 2.5rem auto;
}
.lc_more_item .lc_more_link span {
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
  color: #666;
  text-decoration: underline;
}
.lc_more_item .lc_more_link + a {
  margin-left: 0.5rem;
}
.lc_more_item .lc_more_link.ty1 {
  background-image: url(../img/icon_login_type01.svg);
}
.lc_more_item .lc_more_link.ty2 {
  background-image: url(../img/icon_login_type02.svg);
}
.lc_more_item .lc_more_link.ty3 {
  background-image: url(../img/icon_login_type03.svg);
}
.input_form {
  padding: 0.625rem 1rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
}
.input_form.focus {
  border-color: #000;
}
.input_form.readonly {
  background: #f8f8f8;
}
.input_form.disabled {
  background-color: #f8f8f8;
}
.input_form.disabled .label_tit {
  color: #9e9e9e;
}
.input_form.disabled .input > input {
  font-weight: normal;
}
.input_form.error {
  border-color: #ef2222;
}
.input_form.success {
  border-color: #0084f4;
}
.input_form + .error_text,
.input_form + .success_text {
  margin-top: 0.5rem;
}
.input_form .label_tit {
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #3f3f3f;
}
.input_form .input > input {
  height: 2rem;
  padding: 0 1.875rem 0 0;
  font-weight: 600;
  line-height: 2rem;
  border: none;
}
.input_form .input > input::-webkit-input-placeholder {
  font-weight: normal;
}
.input_form .input > input::-moz-placeholder {
  font-weight: normal;
}
.input_form .input > input:-ms-input-placeholder {
  font-weight: normal;
}
.input_form .input > input::-ms-input-placeholder {
  font-weight: normal;
}
.input_form .input > input::placeholder {
  font-weight: normal;
}
.input_form .input .del {
  top: 0.4375rem;
  right: 0;
  margin-top: 0;
}
.input_form .select.ty1 {
  height: 2rem;
  padding-left: 0;
  background-position: right center;
  border: none;
}
.input_form .comp_wrap.phone .select.ty1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 7.25rem;
  height: 2rem;
  padding-left: 0;
  background-position: right center;
  border: none;
}
.input_form .comp_wrap.phone .input {
  margin: 0 0 0 1.5rem;
}
.input_form .comp_wrap.phone .input .del {
  top: 0.4375rem;
  margin-top: 0;
}
.input_form .comp_wrap.birth .input {
  padding-left: 0;
}
.input_form .comp_wrap.birth .birth_after .input {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 3.3125rem;
  flex: 0 0 3.3125rem;
}
.input_form .comp_wrap.card .input_bullet {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}
.error_text {
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #ef2222;
  background: url(../img/icon_input_error.svg) no-repeat left center/1rem auto;
}
.success_text {
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #0084f4;
  background: url(../img/icon_input_success.svg) no-repeat left center/1rem auto;
}
.input_form_group {
  padding: 1.1875rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
}
.input_form_group .ars_box {
  padding: 0;
  border: 0;
}
.agree_list_wrap {
  padding: 1.25rem 1rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
}
.agree_list_wrap > .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agree_list_wrap > .list .checkbox > span {
  line-height: 2rem;
}
.input_bullet {
  font-size: 0;
}
.input_bullet > i {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  margin-left: 0.25rem;
  border-radius: 100%;
  background-color: #333d47;
}
.input_bullet > i:first-child {
  margin-left: 0;
}
.note_text {
  position: relative;
  padding-left: 0.875rem;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
}
.note_text:before {
  content: "*";
  position: absolute;
  top: 0.125rem;
  left: 0.25rem;
}
.note_text.no_icon {
  padding-left: 0;
}
.note_text.no_icon::before {
  display: none;
}
.note_text.ty2 {
  padding-left: 1.125rem;
}
.note_text.ty2:before {
  content: "";
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: url(../img/icon_description.svg) left top/0.75rem auto;
}
.ars_box {
  padding: 1.25rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
}
.ars_box .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ars_box .inner > p {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.ars_box .inner .limit_num {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #f60;
}
.ars_box .note_text {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.img_box {
  text-align: center;
}
.img_box img {
  max-width: 100%;
  vertical-align: top;
}
.needs_info {
  margin: 0;
}
.needs_info .needs_tit {
  margin-top: 4rem;
}
.needs_info .needs_tit:first-of-type {
  margin-top: 0;
}
.needs_info .needs_cont {
  margin: 2.5rem 0 0;
}
.needs_info .needs_cont .img_box + .img_box {
  margin-top: 2rem;
}
.needs_info .needs_cont .card_cont {
  margin-top: 1rem;
}
.needs_info .needs_cont .tbl.ty5 > .title_text {
  padding-bottom: 0;
  font-size: 0.875rem;
  line-height: 2rem;
}
.needs_info .needs_cont .tbl td img {
  width: 100%;
}
.needs_info .needs_cont .word_list {
  margin: 2.5rem 1.25rem 0;
}
.needs_info .needs_cont .qna_list {
  text-align: left;
}
.needs_info .needs_cont .note_text.ty2 {
  padding-left: 0.875rem;
}
.needs_info .needs_cont .note_text.ty2:before {
  left: 0;
}
.tip_box {
  padding: 1.5rem 1.25rem;
  background-color: #f9f9f9;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  border-radius: 1rem;
}
.tip_box .badge_cont {
  margin-bottom: 0.5rem;
  line-height: 1.125rem;
}
.tip_box .badge_cont .badge {
  letter-spacing: 0;
  border-radius: 0.25rem;
}
.tip_box ol li {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
}
.tip_box ol li + li {
  margin-top: 0.5rem;
}
.tip_box .list_bullet.ty2 > li {
  padding-left: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.tip_box .list_bullet.ty2 > li + li {
  margin-top: 0.5rem;
}
.tip_box .list_bullet.ty2 > li:before {
  left: 0.125rem;
}
.tip_box.ty2 {
  padding: 0.75rem 1rem;
}
.tip_box.ty2 > p {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.tip_box.ty3 {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: #fff;
  border-radius: 4rem;
  background-color: #666;
}
.tip_box.ty4 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  text-align: center;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.tip_box.ty5 {
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
  text-align: center;
  border-radius: 6.25rem;
  background-color: #f5f5f5;
}
.tip_box.ty6 {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  text-align: center;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.tip_box.ty6 .cont + .cont {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid #ececec;
}
.border_box_wrap .box {
  padding: 1.5rem 1.25rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
}
.word_list {
  overflow: hidden;
  border: 0.0625rem solid #ececec;
  border-radius: 1rem;
}
.word_list dt {
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  text-align: center;
  background-color: #f5f5f5;
  border-bottom: 0.0625rem solid #ececec;
}
.word_list dd {
  margin: 0;
  padding: 1.25rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.needs_qna {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 0.0625rem dashed #ececec;
}
.needs_qna dt {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.needs_qna dd {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
}
.needs_qna + .needs_qna {
  margin-top: 1.5rem;
}
.needs_qna.bd_none {
  border: none;
}
.slide_list {
  margin-left: 1.5rem;
}
.slide_list > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 9.6875rem;
  margin-right: 1rem;
}
.slide_list > li .icon_link {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
}
.slide_list > li .icon_link02 {
  position: absolute;
  top: 6.6875rem;
  right: 0.5rem;
  z-index: 2;
}
.slide_list > li .icon_link02.bottom {
  top: auto;
  bottom: 0.5rem;
}
.slide_list > li .mid_link {
  position: relative;
  z-index: 2;
}
.slide_list > li .mid_link .icon_link {
  top: auto;
  bottom: 0.5rem;
}
.slide_list > li .mid_link .icon_link02 {
  top: auto;
  bottom: 0.5rem;
}
.slide_list > li .loc_badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  max-width: calc(100% - 1rem);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
}
.slide_list > li .bookmark {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.slide_list > li .heart.big {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.slide_list > li:last-child {
  margin-right: 1.5rem;
}
.slide_list .img_thumb {
  position: relative;
  z-index: 1;
  height: 8.125rem;
  text-align: center;
}
.slide_list .img_thumb .rank {
  display: block;
  position: absolute;
  left: 1rem;
  top: 0;
  width: 2rem;
  height: 1.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  color: #fff;
  text-align: center;
  background-color: #f60;
}
.slide_list .img_thumb .rank::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-left: 0;
  border-top: 0.75rem solid #f60;
  border-right: 1rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.75rem solid rgba(0, 0, 0, 0);
}
.slide_list .img_thumb .rank::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-left: 1rem solid rgba(0, 0, 0, 0);
  border-top: 0.75rem solid #f60;
  border-right: 0;
  border-bottom: 0.75rem solid rgba(0, 0, 0, 0);
}
.slide_list .img_thumb img {
  display: block;
  max-width: 100%;
  height: 8.125rem;
  border-radius: 1rem;
}
.slide_list .img_thumb .icon {
  position: absolute;
  left: 1rem;
  top: 0;
}
.slide_list.etc_ty1 > li .img_thumb {
  height: auto;
}
.slide_list.etc_ty1 > li .img_thumb::after {
  content: none;
}
.slide_list.etc_ty1 > li .img_thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
}
.slide_list.etc_ty1 > li .badge_cont {
  display: block;
  margin-top: 0.25rem;
}
.slide_list.etc_ty2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 1.5rem 1rem;
  margin-left: 0;
}
.slide_list.etc_ty2 > li {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(50% - 0.5rem);
  margin-right: 0;
}
.slide_list.etc_ty2 > li .img_thumb {
  height: auto;
}
.slide_list.etc_ty2 > li .img_thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
}
.slide_list.etc_ty2 > li .icon_link {
  right: 0.5rem;
}
.slide_top {
  display: -webkit-box;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.slide_swiper {
  position: relative;
  overflow: hidden;
  padding: 0 0.75rem;
  margin: 0 -1.5rem;
}
.slide_swiper .swiper-slide {
  padding: 0 0.75rem;
}
.slide_swiper .swiper-pagination {
  margin-top: 1rem;
}
.slide_swiper .slide_item {
  position: relative;
}
.slide_swiper .slide_item .icon_link02 {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}
.slide_swiper .slide_item img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}
.slide_swiper.ty1 {
  padding: 0 1.5rem;
}
.slide_swiper.ty1 .swiper-slide {
  display: inline-block;
  vertical-align: top;
  width: 16.875rem;
  padding: 0;
}
.slide_swiper.ty1 .slide_item .icon_link02 {
  top: auto;
  bottom: 0.5rem;
  right: 0.5rem;
}
.slide_swiper.ty2 .slide_item {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.slide_swiper.ty2 img {
  display: block;
  width: 100%;
}
.slide_swiper.ty2 .text_box {
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  width: calc(100% - 3rem);
  z-index: 1;
}
.slide_swiper.ty2 .text_box .badge_cont {
  margin-bottom: 0.5rem;
  padding-right: 2.75rem;
}
.slide_swiper.ty2 .text_box .badge_cont .badge {
  border-radius: 0.25rem;
}
.slide_swiper.ty2 .text_box .tit {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.slide_swiper.ty2 .comment_box {
  position: absolute;
  word-break: keep-all;
  left: 1rem;
  bottom: 1rem;
  padding: 1rem 3rem 1rem 1rem;
  border-radius: 1rem;
  background-color: #fff;
  width: calc(100% - 2rem);
  background: #fff url(../img/icon_arrow_right_type1.svg) no-repeat right 1rem center/1rem;
  font-weight: 600;
  line-height: 1.125rem;
  color: #3f3f3f;
}
.slide_swiper.ty3 {
  text-align: center;
}
.slide_swiper.ty3 .num {
  display: block;
  position: relative;
  z-index: 1;
  width: 1.875rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background-color: #3f3f3f;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5rem;
  font-weight: 700;
  margin: 0 auto -0.75rem;
}
.slide_swiper.ty3 img {
  display: block;
  width: 100%;
}
.slide_swiper.ty4 {
  padding: 0 1.5rem;
}
.slide_swiper.ty4 .swiper-slide {
  display: inline-block;
  vertical-align: top;
  width: 16.875rem;
  padding: 0;
}
.slide_swiper.ty4 .slide_item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  height: 16.875rem;
  padding: 1.5rem 1rem 1rem;
  border-radius: 1rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, #f1f2be), to(#e4e5ac));
  background: linear-gradient(to bottom, #f1f2be 33%, #e4e5ac 100%);
}
.slide_swiper.ty4 .slide_item .text_1 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-left: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #7b8829;
}
.slide_swiper.ty4 .slide_item .text_2 {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #000;
}
.slide_swiper.ty4 .slide_item img {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  margin: 0 0 -1.375rem;
  z-index: 1;
}
.slide_swiper.ty4 .slide_item .text_3 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #fff;
  color: #202020;
  height: 4.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.375rem;
  padding: 0 1.6875rem 0 1rem;
  background: #fff url(../img/icon_arrow_right_type1.svg) no-repeat right 0.6875rem center/1rem;
}
.slide_swiper.ty4 .slide_item.c1 {
  background: #fae6e6;
}
.slide_swiper.ty4 .slide_item.c1 .text_1 {
  color: #c65959;
}
.slide_swiper.ty4 .slide_item.c2 {
  background: #e4f2f7;
}
.slide_swiper.ty4 .slide_item.c2 .text_1 {
  color: #58a7c3;
}
.slide_swiper.ty4 .slide_item.c3 {
  background: #e5e5f9;
}
.slide_swiper.ty4 .slide_item.c3 .text_1 {
  color: #5d5dd1;
}
.slide_swiper.ty4 .slide_item.c4 {
  background: #f1f2cb;
}
.slide_swiper.ty4 .slide_item.c4 .text_1 {
  color: #7b8829;
}
.slide_swiper.ty4 .slide_item.c5 {
  background: #f6ebd8;
}
.slide_swiper.ty4 .slide_item.c5 .text_1 {
  color: #c28a30;
}
.cont_detail .cont_detail_top {
  position: relative;
  margin: -2rem -1.5rem 0;
}
.cont_detail .cont_detail_top .category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  height: 1.625rem;
  line-height: 1.625rem;
  padding: 0 0.5rem;
  background-color: #202020;
  color: #fff;
  border-radius: 0.8125rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.cont_detail .cont_detail_top .icon_link02 {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.cont_detail .cont_detail_top .multiple {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.5rem;
  border-radius: 2.25rem;
  background-color: rgba(0, 0, 0, 0.45);
}
.cont_detail .cont_detail_top .multiple .icon_link02 {
  position: static;
}
.cont_detail .cont_detail_top img {
  display: block;
  width: 100%;
}
.cont_detail .cont_detail_top .text_area {
  position: absolute;
  left: 1.5rem;
  bottom: 1rem;
  width: calc(100% - 3rem);
  color: #202020;
}
.cont_detail .cont_detail_top .text_area .title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.cont_detail .cont_detail_top .text_area .sub_1 {
  font-size: 0.875rem;
  line-height: 0.875rem;
  margin-top: 0.625rem;
}
.cont_detail .cont_detail_top .text_area .sub_2 {
  text-align: right;
  font-size: 0.75rem;
  line-height: 0.75rem;
  opacity: 0.6;
  margin-top: 0.625rem;
}
.cont_detail .cont_detail_body {
  padding-top: 1.5rem;
}
.learning_wrap .scroll_wrap.slide {
  margin-top: 1.5rem;
}
.learning_wrap .scroll_wrap.slide .slide_top {
  padding: 0 0.5rem;
}
.learning_cont {
  position: relative;
}
* + .learning_cont {
  margin-top: 2rem;
  padding-top: 2.5rem;
}
* + .learning_cont:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: calc(100% + 3rem);
  height: 0.5rem;
  background-color: #f5f5f5;
}
.learning_cont:first-child .title_text {
  margin-top: 0;
}
.learning_cont .content_head {
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}
.learning_cont .content_head .title_text {
  line-height: 1.875rem;
  color: #202020;
}
.learning_cont .content_head .learn_count {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-left: 0.625rem;
}
.learning_cont .desc {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.icon.flag {
  width: 2rem;
  height: 1.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  color: #fff;
  text-align: center;
  background-color: #f60;
}
.icon.flag:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0;
  border-top: 0.75rem solid #f60;
  border-right: 1rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.75rem solid rgba(0, 0, 0, 0);
}
.icon.flag:after {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: 0;
  height: 0;
  border-left: 1rem solid rgba(0, 0, 0, 0);
  border-top: 0.75rem solid #f60;
  border-right: 0;
  border-bottom: 0.75rem solid rgba(0, 0, 0, 0);
}
.info_plus_top {
  padding: 5rem 1.5rem;
  background-color: #fff5ed !important;
}
.info_plus_top .download_intro_page {
  background: none;
  min-height: auto;
}
.info_plus_top_desc {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
  color: #202020;
  letter-spacing: -0.6px;
}
.info_step_list > li {
  margin-top: 4rem;
  color: #202020;
}
.info_step_list > li .step_num {
  margin-bottom: 1rem;
}
.info_step_list > li .step_num > span {
  display: inline-block;
  min-width: 1.875rem;
  padding: 0.25rem 0.1875rem;
  background-color: #3f3f3f;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: bold;
  color: #fff;
  border-radius: 0.75rem;
}
.info_step_list > li .title_text + .support_info_swiper {
  margin-top: 1.5rem;
}
.info_step_list > li .title_text.h5 {
  line-height: 1.5rem;
}
.info_step_list > li .btn_area {
  margin-bottom: 1.5rem;
}
.info_step_list > li .bubble_msg {
  display: inline-block;
  margin-top: 1.5rem;
}
.support_info_swiper {
  margin: 0 -1.5rem;
}
.support_info_swiper .swiper-slide .img_box img {
  display: block;
  width: 100%;
}
.support_info_swiper .swiper-pagination {
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}
.plus_function {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.plus_function > .item {
  width: calc(50% - 0.5rem);
  padding: 1.5rem 0;
  text-align: center;
  border-radius: 1rem;
  background-color: #fff;
}
.plus_function > .item img {
  display: block;
  width: 5rem;
  margin: 0 auto;
}
.plus_function > .item img + div {
  padding-top: 1rem;
}
.plus_function > .item > div {
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
}
.plus_function > .item > div span {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #202020;
}
.plus_function_desc {
  margin-top: 2.5rem;
}
.plus_step {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin-top: -0.875rem;
  padding-top: 1.1875rem;
  background: url(../img/bg_flow.png) no-repeat center 0.875rem/100%;
}
.plus_step > li {
  width: 50%;
  padding-top: 0.875rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #202020;
  text-align: center;
}
.plus_step > li .step_num {
  position: relative;
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: #bababa;
}
.plus_step > li .step_num:before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.25rem;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem auto;
  border-radius: 100%;
}
.plus_step > li.flow01 .step_num:before {
  background-image: url(../img/icon_hand.svg);
}
.plus_step > li.flow02 .step_num:before {
  background-image: url(../img/icon_msg.svg);
}
.plus_step > li.flow03 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
}
.plus_step > li.flow03 .step_num:before {
  background-image: url(../img/icon_part.svg);
}
.plus_step > li.flow04 .step_num:before {
  background-image: url(../img/icon_analysis.svg);
}
.plus_step > li.flow05 .step_num:before {
  background-image: url(../img/icon_file.svg);
}
.i_simbol_text {
  margin-top: 5rem;
  padding-top: 2.25rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  text-align: center;
  background: url(../img/re/img_simbol.svg) no-repeat center top/1.25rem auto;
}
.info_main_logo {
  margin-top: 1rem;
  text-align: center;
}
.info_main_logo img {
  height: 2.5rem;
}
.info_cont_use {
  margin: 0;
}
.info_cont_use dt,
.info_cont_use dd {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
}
.info_cont_use dt {
  margin-top: 0.5rem;
  font-weight: 600;
}
.info_cont_use dd {
  margin-top: 0.25rem;
}
.onboarding_box {
  -webkit-box-flex: 0 !important;
  -moz-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
  height: 100%;
}
.onboarding_swiper {
  height: 100%;
}
.onboarding_swiper .swiper-slide {
  background-color: #fff9f2;
}
.onboarding_swiper .swiper-slide .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem 1.5rem 4.75rem;
}
.onboarding_swiper .swiper-slide .inner .top {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  height: 10.625rem;
  text-align: center;
}
.onboarding_swiper .swiper-slide .inner .top .tit {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
}
.onboarding_swiper .swiper-slide .inner .top .tit p {
  margin-top: 0.25rem;
  font-size: 1.75rem;
  line-height: 2.625rem;
  font-weight: 700;
  color: #f60;
}
.onboarding_swiper .swiper-slide .inner .top .desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.onboarding_swiper .swiper-slide .inner .img_box {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.onboarding_swiper .swiper-slide .inner .img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100%;
}
.onboarding_swiper .swiper-slide .inner .btn_area .btn:after {
  border: none;
}
.onboarding_swiper .swiper-slide .inner .btn_area .btn span {
  padding-left: 1.625rem;
  background: url(../img/icon_logo_orangetouch.svg) no-repeat left center/1.25rem auto;
}
.onboarding_swiper .swiper-slide[data-color="bg"] .inner {
  padding: 0 1.875rem 5.75rem 1.875rem;
}
.onboarding_control {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 100%;
  padding: 1.125rem 1.5rem;
}
.onboarding_control .btn_text {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  margin-top: -0.6875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #888;
}
.onboarding_control .btn_text:after {
  content: none;
}
.onboarding_control .swiper-pagination {
  height: 1.5rem;
  line-height: 1.5rem;
}
.onboarding_control .swiper-pagination-bullet {
  vertical-align: middle;
}
.onboarding_start {
  color: #202020;
}
.onboarding_start_top {
  z-index: 1;
}
.onboarding_start_top .icon {
  display: block;
  width: 5.5rem;
  margin-bottom: 1.1875rem;
}
.onboarding_start_top .tit {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  line-height: 2.625rem;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: #202020;
}
.onboarding_start_top .tit p {
  color: #f60;
  font-size: 2rem;
}
.onboarding_start_top .bg {
  display: block;
  position: absolute;
  top: 7.125rem;
  left: 50%;
  width: 43.75rem;
  max-width: none;
  margin-left: -13.1875rem;
}
.onboarding_start_bot {
  position: absolute;
  z-index: 1;
  width: 20.4375rem;
  left: 1.5rem;
  bottom: 4.875rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.2px;
}
.onboarding_start_bot strong {
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-weight: 500;
  height: 1.75rem;
}
.onboarding_start_bot strong::before {
  content: "";
  display: block;
  height: 0.5625rem;
  background-color: #ffc1aa;
  margin: 1.0625rem 0 -1.625rem 0;
}
.onboarding_start .desc {
  margin-top: 22.125rem;
}
.quick_menu_wrap {
  -webkit-box-flex: 1 !important;
  -moz-box-flex: 1 !important;
  -ms-flex: 1 !important;
  flex: 1 !important;
  text-align: center;
}
.quick_menu_wrap .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: calc(100% - 3.5rem);
}
.quick_menu_wrap .inner .logo img {
  width: 4.625rem;
}
.quick_menu_wrap .inner .progress_box {
  margin: 1rem 0 2rem;
  padding: 0 2.375rem;
}
.quick_menu_wrap .inner .title_text {
  font-weight: 400;
  line-height: 1.5rem;
  color: #666;
}
.quick_menu_wrap .inner .title_text > span {
  font-weight: 600;
  color: #202020;
}
.splash_lottie {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.splash_lottie.ld lottie-player {
  height: 109vw;
  width: 100vw;
}
.splash_lottie lottie-player {
  display: block;
  position: absolute;
  height: 100vh;
  width: 137vh;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.splash_bottom {
  position: absolute;
  bottom: 2.9375rem;
  left: 0;
  width: 100%;
  padding: 0 2.375rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0) !important;
}
.splash_bottom img {
  width: 9.5rem;
}
.progress_box .progress_base.ty3 {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  background: none;
}
.progress_box .progress_base.ty3 .circle {
  position: absolute;
  left: -0.25rem;
  top: -0.25rem;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.progress_box .progress_base.ty3 span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/icon_loading_circle.png) no-repeat center/3.5rem auto;
  border-radius: 0;
}
.loading_bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.loading_bar .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.loading_bar .inner .loading_area {
  width: 100%;
  padding: 0 2.375rem;
  text-align: center;
}
.loading_bar .inner .loading_area .progress_box {
  margin-bottom: 1.5rem;
}
.loading_bar .inner .loading_area .progress_box .progress_base {
  height: 0.1875rem;
}
.loading_bar .inner .loading_area .progress_box .progress_base.circle {
  height: 3.5rem;
}
.loading_bar .inner .loading_area > p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #202020;
}
.loading_move .progress_bar {
  -webkit-animation: progressBar infinite 2s ease-out;
  animation: progressBar infinite 2s ease-out;
}
.loading_move.circle .progress_bar {
  -webkit-animation: progressCircle infinite 1s linear;
  animation: progressCircle infinite 1s linear;
}
@-webkit-keyframes progressBar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes progressBar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@-webkit-keyframes progressCircle {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes progressCircle {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bubble_msg {
  position: relative;
  padding: 0.9375rem 1.5rem;
  border: 0.0625rem solid #f60;
  border-radius: 1.875rem;
}
.bubble_msg:before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  z-index: 1;
  width: 0.9375rem;
  height: 0.5rem;
  margin-left: -0.4375rem;
  background: url(../img/icon_bubble.png) no-repeat center/cover;
}
.bubble_msg span {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.125rem;
  color: #f60;
}
.mypoint_box_wrap {
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  border: 0.0625rem solid #ececec;
  border-radius: 1rem;
}
.mypoint_box_wrap.ty2 {
  padding: 1.25rem;
  background-color: #f5f5f5;
  border: 0;
}
.mypoint_box_wrap .ota_point_dp.ty2 {
  padding: 0;
  background-color: #fff;
}
.mypoint_box_wrap .ota_point_dp.ty2 .tit {
  background-position: 0.0625rem center;
  font-size: 1rem;
  font-weight: 600;
}
.mypoint_box_wrap .ota_point_dp.ty3 {
  padding: 0;
}
.mypoint_box_wrap .ota_point_dp.ty3 .tit {
  font-size: 0.9375rem;
  color: #202020;
}
.mypoint_box_wrap .ota_point_dp.ty3 .point {
  padding-right: 0;
  background: none;
  font-size: 1.5rem;
}
.mypoint_box_wrap .btn_area {
  margin-top: 1.5rem;
}
.mypoint_box_wrap .btn_area.bar {
  overflow: hidden;
  border-radius: 0.75rem;
}
.bnr_swiper {
  position: relative;
  margin: 0 -1.5rem;
}
.bnr_swiper .swiper-slide {
  padding: 0 1.5rem;
}
.bnr_swiper .swiper-slide .item {
  overflow: hidden;
}
.bnr_swiper .swiper-slide .item img {
  display: block;
  width: 100%;
  border-radius: 1rem;
}
.bnr_swiper .swiper-pagination {
  position: absolute;
  left: 2.75rem;
  bottom: 1.25rem;
  width: auto;
}
.bnr_swiper .swiper-pagination .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.bnr_item {
  overflow: hidden;
  display: block;
  border-radius: 1rem;
}
.bnr_item img {
  display: block;
  width: 100%;
}
.bnr_item + .bnr_item {
  margin-top: 0.5rem;
}
.coupon_box_wrap .cp_item {
  display: block;
  width: 100%;
  padding: 0;
  background-color: #fff;
  text-align: left;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.125rem 0.375rem 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.375rem 0 rgba(0, 0, 0, 0.08);
}
.coupon_box_wrap .cp_item + .cp_item {
  margin-top: 1rem;
}
.coupon_box_wrap .cp_item .cp_detail {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 1.25rem 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.coupon_box_wrap .cp_item .cp_detail .left {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.coupon_box_wrap .cp_item .cp_detail .left > * {
  display: block;
}
.coupon_box_wrap .cp_item .cp_detail .left > * + * {
  margin-top: 0.5rem;
}
.coupon_box_wrap .cp_item .cp_detail .left .period {
  font-weight: bold;
  color: #f60;
}
.coupon_box_wrap .cp_item .cp_detail .left .name {
  color: #888;
}
.coupon_box_wrap .cp_item .cp_detail .left .cont {
  min-height: 3.25rem;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
  color: #202020;
}
.coupon_box_wrap .cp_item .cp_detail .right {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 3.5rem;
  flex: 0 0 3.5rem;
  margin-left: 0.9375rem;
}
.coupon_box_wrap .cp_item .cp_detail .right img {
  display: block;
  width: 100%;
}
.coupon_box_wrap .cp_item .cp_link {
  position: relative;
  display: block;
  margin: 0 1.25rem;
  text-align: center;
  border-top: 0.0625rem dashed #bababa;
}
.coupon_box_wrap .cp_item .cp_link:before {
  content: "";
  display: block;
  position: absolute;
  top: -1rem;
  left: -2.75rem;
  width: 2.125rem;
  height: 2.125rem;
  background: url(../img/coupon/icon_coupon_circle_l.png) no-repeat center/100% auto;
  z-index: 10;
}
.coupon_box_wrap .cp_item .cp_link:after {
  content: "";
  display: block;
  position: absolute;
  top: -1rem;
  right: -2.75rem;
  width: 2.125rem;
  height: 2.125rem;
  background: url(../img/coupon/icon_coupon_circle_r.png) no-repeat center/100% auto;
  z-index: 10;
}
.coupon_box_wrap .cp_item .cp_link .cp_btn_view {
  display: inline-block;
  padding: 0.875rem 1.5rem 1rem 0;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center/1.5rem auto;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.coupon_box_wrap .cp_item .cp_link .cp_num {
  display: block;
  padding: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.coupon_box_wrap .cp_item .cp_link .cp_num .code {
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 1.4375rem;
  border-bottom: 0.0625rem solid #ececec;
}
.coupon_box_wrap .cp_item .cp_link .cp_num .code > * {
  display: block;
}
.coupon_box_wrap .cp_item .cp_link .cp_num .code > * + * {
  margin-top: 0.5rem;
}
.coupon_box_wrap .cp_item .cp_link .cp_num .due {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  color: #202020;
}
.coupon_box_wrap .cp_item .cp_link .cp_num .due .d_tit {
  color: #888;
}
.coupon_box_wrap .cp_item.disabled {
  position: relative;
  border-radius: 1rem;
}
.coupon_box_wrap .cp_item.disabled .cp_detail:after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  z-index: 101;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 4rem auto;
  font-size: 0;
  line-height: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.coupon_box_wrap .cp_item.disabled.send .cp_detail:after {
  background-image: url(../img/coupon/img_stamp_send.svg);
}
.coupon_box_wrap .cp_item.disabled.use .cp_detail:after {
  content: "";
  background-image: url(../img/coupon/img_stamp_use.svg);
}
.coupon_box_wrap .cp_item.disabled.end .cp_detail:after {
  background-image: url(../img/coupon/img_stamp_due.svg);
}
.coupon_box_wrap .cp_item.disabled.end .cp_link .cp_num .code {
  position: relative;
}
.coupon_box_wrap .cp_item.disabled.end .cp_link .cp_num .code:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
}
.coupon_box_wrap .cp_item.disabled .cp_detail .right {
  position: relative;
}
.coupon_box_wrap .cp_item.disabled .cp_detail .right:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
}
.coupon_box_wrap.view .cp_item .cp_detail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding: 1.5rem;
}
.coupon_box_wrap.view .cp_item .cp_detail .left {
  text-align: center;
}
.coupon_box_wrap.view .cp_item .cp_detail .left .cont {
  min-height: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.coupon_box_wrap.view .cp_item .cp_detail .right {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: 0 0 4.0625rem;
  flex: 0 0 4.0625rem;
  margin: 0 0 1rem;
}
.coupon_box_wrap.view .cp_item .cp_detail .right img {
  width: 4rem;
}
.coupon_box_wrap.view .cp_item.disabled .cp_detail:after {
  top: 1.5rem;
  right: 1.5rem;
  width: 5rem;
  height: 5rem;
  background-size: 5rem auto;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.coupon_box_wrap .no_result_msg {
  position: relative;
  margin: 0;
  padding: 5.5rem 0 1.5rem;
  background: #fff url(../img/coupon/img_no_coupon.svg) no-repeat center 1.5rem/3.5rem auto;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.125rem 0.375rem 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.375rem 0 rgba(0, 0, 0, 0.08);
}
.coupon_box_wrap .no_result_msg:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -1.5rem;
  width: 2.125rem;
  height: 2.125rem;
  background: url(../img/coupon/icon_coupon_circle_l.png) no-repeat center/100% auto;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.coupon_box_wrap .no_result_msg:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1.5rem;
  width: 2.125rem;
  height: 2.125rem;
  background: url(../img/coupon/icon_coupon_circle_r.png) no-repeat center/100% auto;
  z-index: 10;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.for_gift {
  padding-top: 4.5rem;
  background: url(../img/coupon/img_coupon.svg) no-repeat center top/3.5rem auto;
  background-color: #fff;
  text-align: center;
}
.for_gift > * + * {
  margin-top: 0.5rem;
}
.for_gift .info {
  font-size: 0;
  line-height: 0;
}
.for_gift .info > span {
  position: relative;
  padding-left: 0.75rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #888;
}
.for_gift .info > span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.375rem;
  width: 0.0625rem;
  height: 0.75rem;
  background-color: #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.for_gift .info > span:first-child {
  padding-left: 0;
}
.for_gift .info > span:first-child:after {
  content: none;
}
.for_gift .date {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #888;
}
.touch_box_log {
  padding: 0.5rem 0 2.5rem 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
  text-align: center;
}
.touch_box .date {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #888;
  text-align: center;
}
.touch_box .date > span {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #3f3f3f;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #fff;
  border-radius: 1.375rem;
}
.touch_box .touch_list + .date {
  margin-top: 2.5rem;
}
.touch_box .touch_list > li + li {
  margin-top: 2.5rem;
}
.touch_box .touch_list > li .touch_sub {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.touch_box .touch_list > li .touch_sub > * + * {
  margin-left: 0.5rem;
}
.touch_box .touch_list > li .touch_sub .profile {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5625rem;
  background-color: #fff;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 100%;
}
.touch_box .touch_list > li .touch_sub .profile img {
  width: 1.375rem;
  height: 1.375rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.touch_box .touch_list > li .touch_sub .name {
  font-size: 0.9375rem;
  line-height: 2.5rem;
  font-weight: 600;
}
.touch_box .touch_list > li .touch_sub .time {
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #9e9e9e;
}
.touch_box .touch_list > li .item_card {
  padding: 1.5rem 1.25rem;
}
.touch_box .touch_list > li .item_card > * + * {
  margin-top: 1rem;
}
.touch_box .touch_list > li .item_card .title_text {
  margin-top: 0;
}
.touch_box .touch_list > li.ty1 .touch_sub {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.touch_box .touch_list > li.ty1 .touch_sub > * + * {
  margin-left: 0;
  margin-right: 0.5rem;
}
.touch_box .touch_list > li.ty1 .item_card {
  position: relative;
  margin-left: 3.5rem;
  background-color: #f5f5f5;
  -webkit-box-shadow: 0 0 0 0.0625rem #ececec inset;
  box-shadow: 0 0 0 0.0625rem #ececec inset;
  border-radius: 1rem 0 1rem 1rem;
}
.touch_box .touch_list > li.ty1 .item_card .bubble_top {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -0.5625rem;
  background-color: #f5f5f5;
  -webkit-box-shadow: -0.0625rem 0.125rem 0.0625rem 0 #ececec inset;
  box-shadow: -0.0625rem 0.125rem 0.0625rem 0 #ececec inset;
  width: 1.5625rem;
  height: 0.625rem;
}
.touch_box .touch_list > li.ty1 .item_card .bubble_top:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -0.0625rem;
  width: 200%;
  height: 250%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 0.0625rem #ececec inset;
  box-shadow: 0 0 0 0.0625rem #ececec inset;
  border-radius: 100%;
}
.touch_box .touch_list > li.ty1 .item_card .title_text {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.touch_box .touch_list > li.ty2 .item_card {
  position: relative;
  margin-right: 3.5rem;
  background-color: #fff4ed;
  -webkit-box-shadow: 0 0 0 0.0625rem #ffd2ab inset;
  box-shadow: 0 0 0 0.0625rem #ffd2ab inset;
  border-radius: 0 1rem 1rem 1rem;
}
.touch_box .touch_list > li.ty2 .item_card .bubble_top {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -0.5625rem;
  width: 1.5625rem;
  height: 0.625rem;
  background-color: #fff4ed;
  -webkit-box-shadow: 0.0625rem 0.125rem 0px 0px #ffd2ab inset;
  box-shadow: 0.0625rem 0.125rem 0px 0px #ffd2ab inset;
}
.touch_box .touch_list > li.ty2 .item_card .bubble_top:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.0625rem;
  width: 200%;
  height: 250%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 0.0625rem #ffd2ab inset;
  box-shadow: 0 0 0 0.0625rem #ffd2ab inset;
  border-radius: 100%;
}
.touch_box .touch_list > li.ty2 .item_card .title_text {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.touch_box .touch_list > li.ty2 .item_card .btn {
  font-weight: 600;
  font-size: 1rem;
}
.touch_box .touch_list > li.ty2 .item_card .btn.c_2 {
  font-weight: 500;
  font-size: 0.9375rem;
}
.touch_box .touch_list > li.ty3 {
  position: relative;
  margin-top: 4.25rem;
  padding-bottom: 1.375rem;
}
.touch_box .touch_list > li.ty3:after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.125rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/img_char1.svg) no-repeat center/2.5rem auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.touch_box .touch_list > li.ty3 .item_card {
  background-color: #eef5fb;
  border-radius: 1rem;
}
.touch_box .touch_list > li.ty3 .item_card .title_text {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
  text-align: center;
}
.touch_box .touch_list > li.ty3 .item_card .btn_area {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.touch_box .touch_list > li.ty3 .item_card .btn_area .btn {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
}
.touch_box .touch_list > li.ty4 {
  position: relative;
}
.touch_box .touch_list > li.ty4 .item_card {
  border-radius: 1rem;
  background-color: #eef5fb;
}
.touch_box .touch_list > li.ty4 .item_card .title_text {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  text-align: center;
}
.touch_box .touch_list > li.ty4 .item_card .btn_area {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.touch_box .touch_list > li.ty4 .item_card .btn_area .btn {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1rem;
}
.user_card_list .item .check i {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.float_btn {
  padding: 1rem 1.5rem;
  background: #fff;
}
.tutorial_item {
  margin-bottom: 0.5rem;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tutorial_item .badge {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f60;
  font-size: 0.875rem;
  line-height: 0.875rem;
  font-weight: 600;
  color: #fff;
  border-radius: 1.25rem;
}
.tutorial_item .tit {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding: 1rem 0;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #202020;
}
.tutorial_item .desc {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 5.5rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.tutorial_item .desc .small {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #9e9e9e;
}
.tutorial_item img {
  max-width: 100%;
  max-height: calc(100vh - 26rem);
  width: auto !important;
}
.tutorial_btn {
  width: 100%;
}
.tutorial_btn .btn {
  margin-left: 0 !important;
}
.tutorial_btn .btn_confirm {
  display: none;
}
.keyword_select_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 0 0 1.5rem;
}
.keyword_select_wrap > .title {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-right: 0.875rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 2rem;
}
* + .card_cont_list {
  margin-top: 1rem;
}
.card_cont_list.active .chker {
  display: block;
}
.card_cont_list + .content_head {
  margin-top: 2rem;
}
.card_cont {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
  background: #fff;
}
.card_cont.empty_text {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  background-color: #fafafa;
}
.card_cont + .card_cont {
  margin-top: 1rem;
}
.card_cont.info_type {
  padding: 1.875rem;
}
.card_cont.data_type {
  padding: 1.875rem;
  border: none;
  background-color: #f9fafc;
}
.card_cont.data_type.etc_ty1 {
  padding: 1.5rem 1.25rem;
}
.card_cont.data_type .content_head {
  padding-bottom: 1rem;
}
.card_cont.data_type .content_head + .content_head {
  margin-top: 0.5rem;
}
.card_cont.data_type .content_head .title_text.h5 {
  line-height: 1.1875rem;
}
.card_cont.data_type * + .content_head {
  margin-top: 1.5rem;
}
.card_cont.shadow_add {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.04);
}
.card_cont > .chker {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.card_cont > .chker input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.card_cont > .chker > span {
  position: absolute;
  top: -0.0625rem;
  left: -0.0625rem;
  width: calc(100% + 0.125rem);
  height: calc(100% + 0.125rem);
  border-radius: 1rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card_cont > .chker input:checked + span {
  border: 0.0625rem solid #f60;
}
.card_cont .card_cont_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -0.1875rem;
  padding-bottom: 0.625rem;
}
.card_cont .card_cont_top .mark_chker {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 0;
  margin-left: auto;
}
.card_cont .card_cont_top .card_status {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-right: 0.3125rem;
}
.card_cont .mark_chker {
  font-size: 0;
}
.card_cont .mark_chker .checkbox {
  position: static;
}
.card_cont .mark_chker i::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0);
  opacity: 0.5;
  background-color: #fff;
  -webkit-transition: border 0.3s, background-color 0.3s, opacity 0.3s;
  transition: border 0.3s, background-color 0.3s, opacity 0.3s;
  pointer-events: none;
}
.card_cont .mark_chker i::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #d9d9d9 url(../img/icon_check_type1.svg) no-repeat center center/0.875rem auto;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.card_cont .mark_chker input:checked + i::before {
  border: 0.0625rem solid #f60;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
}
.card_cont .mark_chker input:checked + i::after {
  background: #fe7637 url(../img/icon_check_type1.svg) no-repeat center center/0.875rem auto;
}
.card_cont .badge_cont {
  margin-bottom: 0.625rem;
}
.card_cont .date {
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1rem;
  color: #9e9e9e;
}
.card_cont .date > span {
  display: inline-block;
  vertical-align: top;
}
.card_cont .date > span::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin: 0.125rem 0.25rem;
  height: 0.75rem;
  width: 0.0625rem;
  background-color: #d9d9d9;
}
.card_cont .name {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.card_cont .opts {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.25rem 0;
  font-size: 0;
}
.card_cont .opts > span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.8125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #888;
}
.card_cont .opts > span strong {
  font-weight: 600;
  color: #202020;
}
.card_cont .opts > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  height: 0.75rem;
  border-left: 0.0625rem solid #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.card_cont .opts > span:last-child {
  margin-right: 0;
}
.card_cont .opts > span:last-child::after {
  content: none;
}
.card_cont .opts + .opts {
  margin-top: 0.375rem;
}
.card_cont .msg_text {
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #202020;
}
.card_cont .msg_text.ty1 {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.card_cont .favorite_chker {
  position: absolute;
  top: 1.3125rem;
  right: 1.25rem;
  z-index: 2;
}
.card_cont .card_link {
  display: block;
  color: #202020;
}
.card_cont .card_link .name {
  position: relative;
  padding-right: 2rem;
  background: url(../img/icon_arrow_right_type1.svg) no-repeat right center/1rem auto;
}
.card_cont .card_cont_memo .memo_title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375rem;
}
.card_cont .card_cont_memo .opts {
  margin-top: 0.5rem;
}
.card_cont .card_cont_memo .opts > span {
  margin-right: 0.5625rem;
  color: #9e9e9e;
}
.card_cont .card_cont_memo .opts > span::after {
  right: -0.3125rem;
}
.card_cont .card_cont_memo .memo_text {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card_cont .card_cont_memo.import .memo_text {
  white-space: initial;
}
.card_cont .in_cont {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid #d9d9d9;
}
.card_cont .in_cont.light_line {
  border-top: 0.0625rem solid #f0f0f0;
}
.card_cont .progress_head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-bottom: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1rem;
}
.card_cont .progress_head .r_side strong {
  font-weight: 600;
  font-size: 1rem;
}
.card_cont .btn_area.space {
  margin-top: 1.5rem;
}
.card_cont .content_head .name {
  margin-bottom: 0;
}
.card_cont.disabled * {
  color: #bdbdbd !important;
}
.card_cont.disabled .card_status img {
  opacity: 0.3;
}
.card_cont.disabled .badge_cont .badge {
  color: #fff !important;
  border-color: #bdbdbd !important;
  background-color: #bdbdbd !important;
}
.card_cont.disabled .progress_bar {
  background-color: #bdbdbd !important;
}
.card_cont.reward_point {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: none;
}
.card_cont.reward_point .item_info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.card_cont.reward_point .item_info > div + div {
  margin-top: 0.5rem;
}
.card_cont.reward_point .item_info .tit {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1875rem;
}
.card_cont.reward_point .item_info .date {
  padding: 0;
  font-size: 0.75rem;
}
.card_cont.reward_point .item_info .due {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 1.25rem;
  background: url(../img/icon_due.svg) no-repeat left center/1rem auto;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #f60;
}
.card_cont.reward_point .item_info .due .badge_cont {
  margin: 0 0 0 0.5rem;
}
.card_cont.reward_point .item_point {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 0.625rem;
  text-align: right;
}
.card_cont.reward_point .item_point .num {
  font-size: 1rem;
  line-height: 1.1875rem;
  font-weight: 600;
  color: #202020;
}
.card_cont.reward_point .item_point .num.plus {
  color: #f60;
}
.card_cont.reward_point .item_point .status {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #9e9e9e;
}
.card_status {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card_status.space_between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card_status .badge_cont {
  margin: 0 0.625rem 0 0;
}
.card_status .badge_cont + .logo_img img {
  max-height: 1.125rem;
}
.card_status .logo_img {
  font-size: 0;
  margin-right: 0.625rem;
}
.card_status .logo_img:last-child {
  margin-right: 0;
}
.card_status .logo_img img {
  display: block;
  max-height: 1.25rem;
}
.card_status + .card_link {
  margin-top: 0.5rem;
}
.card_status + * {
  margin-top: 0.625rem;
}
.sort_radio_wrap {
  position: relative;
}
.sort_radio_wrap .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.5rem 0.375rem;
}
.sort_radio_wrap .scroll_wrap {
  height: auto;
  white-space: initial;
  overflow: visible;
}
.sort_radio_wrap.ty_1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin-bottom: 2rem;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.sort_radio_wrap.ty_1::after {
  content: none;
}
.sort_radio_wrap.ty_1 .scroll_wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin-right: 0.625rem;
}
.sort_radio_wrap.ty_1 .btn_text {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 0.6875rem;
}
.sort_radio_wrap.ty1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.sort_radio_wrap.ty1 .scroll_wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin-right: 0.625rem;
}
.sort_radio_wrap.ty1 .btn_text {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 0.4375rem;
}
.sort_radio_wrap.ty2 {
  margin: 0 -1.5rem;
  padding-right: 0;
  padding-bottom: 1.25rem;
}
.sort_radio_wrap.ty2 .scroll_wrap {
  height: 2.25rem;
  padding: 0 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
}
.sort_radio_wrap.ty2 .scroll_wrap .inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
  height: 2.25rem;
  white-space: nowrap;
}
.sort_radio_wrap.ty2 .scroll_wrap .inner .rnd_radio {
  margin-right: 0.375rem;
}
.sort_radio_wrap.ty2.active {
  padding-bottom: 0;
}
.sort_radio_wrap.ty2.active .sort_radio_open {
  top: auto;
  bottom: 0;
}
.sort_radio_wrap.ty2.active .scroll_wrap {
  height: auto;
  overflow: visible;
}
.sort_radio_wrap.ty2.active .scroll_wrap .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.sort_radio_wrap.ty2.active .scroll_wrap .inner .rnd_radio {
  margin-right: 0;
}
.sort_radio_wrap.ty2.active .scroll_wrap .inner + .inner {
  margin-top: 1rem;
  padding-top: 1.0625rem;
}
.sort_radio_wrap.ty2.active .scroll_wrap .inner + .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 2rem);
  border-top: 0.0625rem solid #ececec;
}
.sort_radio_wrap.ty3 .inner {
  gap: 0;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sort_radio_open {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 0.5rem;
}
.sort_radio_open > span {
  position: relative;
  z-index: 1;
  display: block;
  height: 2.5rem;
  line-height: 1;
  text-indent: -62.4375rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #fff;
}
.sort_radio_open > span::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
}
.sort_radio_open.active > span::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sort_radio_open.type_white {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.sort_radio_open.type_white::before {
  width: 5.625rem;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(245, 245, 245, 0)),
    color-stop(32%, #fff),
    color-stop(39%, #fff)
  );
  background-image: linear-gradient(to right, rgba(245, 245, 245, 0) 0%, #fff 32%, #fff 39%);
}
.sort_radio_open.type_white > span {
  border: 0.0625rem solid #f0f0f0;
  -webkit-box-shadow: 0.5rem 0.5rem 0.375rem 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0.5rem 0.5rem 0.375rem 0 rgba(0, 0, 0, 0.03);
}
.scroll_wrap {
  white-space: nowrap;
}
.scroll_wrap::-webkit-scrollbar {
  display: none;
}
.scroll_wrap .inner {
  font-size: 0;
}
.scroll_wrap.tab_group {
  height: 3.5rem;
  overflow-y: hidden;
  overflow-x: auto;
}
.scroll_wrap.table_view {
  height: 100%;
  margin: 0 -1.5rem;
  padding-bottom: 1.0625rem;
  overflow-x: auto;
}
.scroll_wrap.table_view::-webkit-scrollbar {
  display: block !important;
  height: 0.1875rem;
  background-color: #ececec;
}
.scroll_wrap.table_view::-webkit-scrollbar-thumb {
  background: #888;
}
.scroll_wrap.table_view .inner {
  display: inline-block;
  margin: 0 1.5rem;
}
.scroll_wrap.table_view .inner .tbl table {
  table-layout: auto;
}
.scroll_wrap.table_view .inner .tbl table th,
.scroll_wrap.table_view .inner .tbl table td {
  white-space: nowrap;
}
.scroll_wrap.slide {
  height: auto;
  margin: 0 -1.5rem;
  overflow: hidden;
  overflow-x: auto;
}
.scroll_wrap.slide .space_type1 {
  margin-left: 1.5rem;
}
.scroll_wrap.slide .space_type1 > * {
  margin-right: 0.375rem;
}
.scroll_wrap.slide .space_type1 > *:last-child {
  margin-right: 1.5rem;
}
.scroll_wrap.slide .space_type1 {
  margin-left: 1.5rem;
}
.scroll_wrap.slide .space_type1 > * {
  margin-right: 0.5rem;
}
.scroll_wrap.slide .space_type1 > *:last-child {
  margin-right: 1.5rem;
}
.scroll_wrap .keyword_list {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.scroll_wrap .tab_list.ty_1 .menu {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.group_dom {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.group_dom::after {
  content: "";
  position: absolute;
  left: -1.5rem;
  bottom: 0;
  width: calc(100% + 3rem);
  border-bottom: 0.0625rem solid #e6e6e6;
}
.group_dom .btn_area {
  margin-top: 0;
}
.group_dom .active + .btn_area {
  margin-top: 1rem;
}
.keyword {
  display: inline-block;
  vertical-align: top;
}
.keyword_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.keyword_list.only_word {
  gap: 0.375rem;
}
.keyword_list.only_word .keyword {
  border-color: #ececec;
}
.keyword_list.only_word .keyword > a {
  display: block;
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1.25rem;
  overflow: hidden;
  color: #666;
  white-space: nowrap;
}
.keyword > a {
  padding: 0.5rem 0.125rem 0.5rem 0.75rem;
  color: #202020;
}
.keyword > button {
  position: relative;
  width: 1.75rem;
  height: 2rem;
  margin-left: 0.125rem;
  padding: 0.5rem 0.75rem 0.5rem 0;
  background: none;
  font-size: 0;
  line-height: 0;
  background: url(../img/icon_close_16.svg) no-repeat left center/1rem;
}
.rnd_radio {
  display: inline-block;
}
.rnd_radio.active .text {
  font-weight: 600;
  color: #fff;
  background-color: #ff6300;
}
.rnd_radio .text {
  display: block;
  padding: 0 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2rem;
  border-radius: 1.25rem;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.04);
}
.rnd_radio .text .count {
  color: #f60;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rnd_radio .text.icon_ty1 {
  padding-left: 2.25rem;
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-image: url(../img/icon_favorite_bk_line_on.svg);
  background-size: 1rem auto;
}
.rnd_radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.rnd_radio input:checked + .text {
  font-weight: 600;
  color: #fff;
  background-color: #ff6300;
}
.rnd_radio input:checked + .text .count {
  color: #fff;
}
.rnd_radio input:checked + .text.icon_ty1 .count {
  color: #fff;
}
.rnd_radio.type_white input + .text {
  line-height: 1.875rem;
  border: 0.0625rem solid #ececec;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.rnd_radio.type_white input:checked + .text {
  font-weight: 600;
  line-height: 2rem;
  color: #fff;
  border: none;
  background-color: #ff6300;
}
.entry_cont {
  margin-top: 2rem;
}
.entry_cont .label {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375rem;
}
.entry_cont .inner_cont {
  padding-top: 0.625rem;
}
.profile_container {
  padding: 1.5rem;
}
.profile_container .profile_info {
  position: relative;
}
.profile_container .profile_info .step {
  position: absolute;
  top: 0.25rem;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.profile_container .profile_info .step > span {
  width: 1.125rem;
  margin-right: 0.5rem;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.125rem;
  color: #999;
  text-align: center;
  border-radius: 50%;
  background-color: #f5f5f5;
}
.profile_container .profile_info .step > span:last-child {
  margin-right: 0;
}
.profile_container .profile_info .step > span.active {
  font-weight: 700;
  color: #fff;
  background-color: #9d8778;
}
.profile_container .profile_info .name {
  padding-right: 3.125rem;
  font-size: 1rem;
  line-height: 1.25rem;
}
.profile_container .profile_detail {
  margin-top: 1rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #f7f5f2;
}
.profile_container .profile_detail .in_cont {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid #dbdbdb;
}
.profile_container .profile_detail .details {
  margin-top: 1rem;
}
.profile_container .profile_detail .details li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.profile_container .profile_detail .details li + li {
  margin-top: 0.5rem;
}
.profile_container .profile_detail .details li .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  width: 5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.profile_container .profile_detail .details li .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  text-align: right;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.profile_container .profile_detail .details li .cont em {
  color: #f60;
}
.profile_container .profile_user {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.profile_container .profile_user .thumb {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #eee;
}
.profile_container .profile_user .thumb img {
  max-width: 100%;
  max-height: 100%;
}
.profile_container .profile_user .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  padding-left: 0.75rem;
}
.profile_container .profile_user .cont .line_1 {
  font-size: 0;
}
.profile_container .profile_user .cont .line_1 > span {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.125rem;
}
.profile_container .profile_user .cont .line_1 > span:last-child {
  margin-right: 0;
}
.profile_container .profile_user .cont .line_2 {
  padding-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.contract_detail_info .contract_name {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.contract_detail_info .contract_detail_bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.625rem;
  font-size: 0.875rem;
}
.contract_detail_info .contract_detail_bottom .l_side span {
  color: #666;
}
.contract_detail_info .contract_detail_bottom .l_side strong {
  font-weight: 500;
  color: #000;
}
.flex_top_wrap {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  border-top: 0.5rem solid #f5f5f5;
  border-bottom: 0.0625rem solid #f5f5f5;
}
.flex_top_wrap .noti {
  margin-top: 0.5rem;
  font-size: 0;
}
.flex_top_wrap .noti > span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 1.0625rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.flex_top_wrap .noti > span:last-child {
  margin-right: 0;
}
.flex_top_wrap .noti > span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5625rem;
  height: 0.75rem;
  border-left: 0.0625rem solid #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flex_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.list_view_opt {
  padding: 1.875rem 0 0 0;
  text-align: right;
}
.list_view_opt + .status_info {
  margin-top: 1.25rem;
}
.status_info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.status_info > span {
  position: relative;
  padding-left: 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.status_info > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625rem;
  border-bottom: 0.625rem solid;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.status_info > span + span {
  margin-left: 1rem;
}
.status_info > span.status_color_1::before {
  border-color: #66c8ff;
}
.status_info > span.status_color_2::before {
  border-color: #ff6e6e;
}
.status_info > span.status_color_3::before {
  border-color: #9b9eb4;
}
.status_info > span.status_color_4::before {
  border-color: #202020;
}
.guar_container .guar_head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.guar_container .guar_head .ratio {
  font-size: 0.875rem;
}
.guar_container .guar_head .ratio > strong {
  font-weight: 600;
  font-size: 1rem;
}
.guar_container .guar_head .ratio > span {
  font-size: 0.8125rem;
}
.guar_container .guar_head .r_side {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  font-weight: 600;
  font-size: 1rem;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.guar_container .guar_head .r_side small {
  font-size: 0.875rem;
}
.guar_container .guar_desc {
  padding: 0.5rem 0 0.75rem 0;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #888;
}
.guar_container .guar_cont {
  margin-top: 1.25rem;
}
.guar_container .guar_cont + .guar_cont {
  margin-top: 2.5rem;
}
.guar_container .guar_cont .progress_box {
  margin-top: 1rem;
}
.compare_wrap .compare_head {
  padding-bottom: 1.5rem;
}
.compare_wrap .compare_head .desc {
  padding-top: 0.3125rem;
  line-height: 1.5rem;
  color: #666;
}
.compare_wrap .notice_text {
  margin-top: 1.5rem;
}
.compare_wrap .compare_cont {
  margin-top: 2.5rem;
  padding: 1.875rem;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
}
.compare_wrap .compare_cont .desc {
  padding-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #727272;
}
.compare_wrap .compare_cont .status_info {
  margin-top: 0.5rem;
}
.compare_wrap .compare_cont .in_cont {
  margin-top: 1.875rem;
}
.compare_wrap .compare_cont .in_cont > .in_cont {
  margin-top: 1.5rem;
}
.compare_wrap .compare_cont .in_cont + .in_cont {
  margin-top: 2.5rem;
}
.compare_wrap .compare_cont .in_cont .chart_area {
  margin-top: 1.25rem;
  text-align: center;
}
.compare_wrap .compare_cont .in_cont .chart_area img {
  max-width: 100%;
}
.quick_items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}
.quick_items .quick_item {
  position: relative;
  display: block;
  min-width: 2.5rem;
  padding-top: 3rem;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  color: #888;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 2.5rem auto;
}
.quick_items .quick_item.ty1 {
  background-image: url(../img/icon_quick_item_ty1.svg);
}
.quick_items .quick_item.ty2 {
  background-image: url(../img/icon_quick_item_ty2.svg);
}
.quick_items .quick_item.ty3 {
  background-image: url(../img/icon_quick_item_ty3.svg);
}
.quick_items .quick_item.ty4 {
  background-image: url(../img/icon_quick_item_ty4.svg);
}
.quick_items .quick_item.ty5 {
  background-image: url(../img/icon_quick_item_ty5.svg);
}
.quick_items .quick_item.ty6 {
  background-image: url(../img/icon_quick_item_ty6.svg);
}
.bar_d_items {
  font-size: 0;
}
.bar_d_items > span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.8125rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #202020;
}
.bar_d_items > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  height: 0.75rem;
  border-left: 0.0625rem solid #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.bar_d_items > span:last-child {
  margin-right: 0;
}
.bar_d_items > span:last-child::after {
  content: none;
}
.modify_cont {
  margin-top: 2rem;
}
.modify_cont .modify_head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modify_cont .modify_head .front .input_label {
  margin: 0;
}
.modify_cont .modify_head .r_side {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  margin-left: auto;
}
.modify_cont .in_cont {
  margin-top: 0.5rem;
}
.interval_list.t8 > * + * {
  margin-top: 0.5rem;
}
.interval_list.t16 > * + * {
  margin-top: 1rem;
}
.attach_cont > .title {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.attach_cont .attach_files {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #faf9f8;
}
.attach_file {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 1.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #202020;
  word-break: break-all;
  background: url(../img/icon_attach.svg) no-repeat left top/1.25rem auto;
}
.attach_file .attach_byte {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
  padding-left: 0.625rem;
  font-size: 0.875rem;
  color: #9e9e9e;
}
.attach_file + .attach_file {
  margin-top: 1rem;
}
.slide_wrap.ty1 {
  border-top: 0.0625rem solid #f0f0f0;
}
.slide_wrap.ty1 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 0.0625rem solid #f0f0f0;
  background-color: #fff;
}
.slide_wrap.ty1 .slide_trg .title {
  position: relative;
  display: block;
  padding-right: 3rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.slide_wrap.ty1 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty1 .slide_trg * + .title {
  margin-top: 0.5rem;
}
.slide_wrap.ty1 .slide_trg.active {
  border-bottom: 0.0625rem solid #f5f5f5;
}
.slide_wrap.ty1 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty1 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty1 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
  background-color: #f5f5f5;
}
.slide_wrap.ty1 .slide_cont .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.slide_wrap.ty1 .slide_cont .inner a {
  color: inherit;
}
.slide_wrap.ty2 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background-color: #fff;
}
.slide_wrap.ty2 .slide_trg .title {
  position: relative;
  display: block;
  padding-right: 3rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.slide_wrap.ty2 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty2 .slide_trg * + .title {
  margin-top: 0.5rem;
}
.slide_wrap.ty2 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty2 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty2 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 0 1.5rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.slide_wrap.ty2 .slide_cont .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.slide_wrap.ty2 .slide_cont .inner a {
  color: inherit;
}
.slide_wrap.ty3 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background-color: #fff;
}
.slide_wrap.ty3 .slide_trg .title {
  position: relative;
  display: block;
  padding-left: 1.5rem;
  padding-right: 3rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1rem auto;
}
.slide_wrap.ty3 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_01 {
  background-image: url(../img/nav_bottom/icon_mini_menu01.svg);
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_02 {
  background-image: url(../img/nav_bottom/icon_mini_menu02.svg);
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_03 {
  background-image: url(../img/nav_bottom/icon_mini_menu03.svg);
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_04 {
  background-image: url(../img/nav_bottom/icon_mini_menu04.svg);
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_05 {
  background-image: url(../img/nav_bottom/icon_mini_menu05.svg);
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_06 {
  background-image: url(../img/nav_bottom/icon_mini_menu06.svg);
}
.slide_wrap.ty3 .slide_trg .title.menu_content_ic_07 {
  background-image: url(../img/nav_bottom/icon_mini_menu07.svg);
}
.slide_wrap.ty3 .slide_trg * + .title {
  margin-top: 0.5rem;
}
.slide_wrap.ty3 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty3 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty3 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 0 1.5rem 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
  background-color: #f8f8f8;
}
.slide_wrap.ty4 {
  position: relative;
}
.slide_wrap.ty4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  border-bottom: 0.0625rem solid #fff;
}
.slide_wrap.ty4 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  background-color: #fff;
}
.slide_wrap.ty4 .slide_trg .title {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem 1.625rem 1.5rem 0;
  border-bottom: 0.0625rem solid #ececec;
}
.slide_wrap.ty4 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty4 .slide_trg .title .stamp {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 2.5rem;
  font-size: 0;
}
.slide_wrap.ty4 .slide_trg .title .stamp img {
  width: 100%;
}
.slide_wrap.ty4 .slide_trg .title .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 1rem 0 0.5rem;
  word-break: keep-all;
}
.slide_wrap.ty4 .slide_trg .title .cont .tit {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
}
.slide_wrap.ty4 .slide_trg .title .cont .tit em {
  color: #f60;
}
.slide_wrap.ty4 .slide_trg .title .cont .text {
  display: block;
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
}
.slide_wrap.ty4 .slide_trg .title .by {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4.0625rem;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2rem;
  color: #f60;
  text-align: center;
  border-radius: 6.25rem;
  background-color: #fff4ed;
  letter-spacing: 0.0625rem;
}
.slide_wrap.ty4 .slide_trg .title .by strong {
  font-weight: 700;
}
.slide_wrap.ty4 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty4 .slide_trg:disabled .title::after {
  content: none;
}
.slide_wrap.ty4 .slide_cont {
  background-color: #f8f8f8;
}
.slide_wrap.ty4 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 1.5rem 2.5rem;
}
.slide_wrap.ty4 .slide_cont .inner::before {
  content: "";
  position: absolute;
  top: -0.0625rem;
  left: 0;
  width: 100%;
  border-bottom: 0.0625rem solid #ececec;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list {
  max-height: 5.125rem;
  padding: 0 0.25rem;
  overflow: auto;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li .name {
  padding-right: 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #000;
  word-break: break-all;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li span {
  position: relative;
  padding-right: 1.0625rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #333;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  height: 0.625rem;
  border-left: 0.0625rem solid #aaa;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li span:last-child {
  padding-right: 0;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li span:last-child::after {
  content: none;
}
.slide_wrap.ty4 .slide_cont .inner .atta_list li + li {
  margin-top: 0.5rem;
}
.slide_wrap.ty5 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.4375rem 1.5rem;
  text-align: left;
  border-radius: 1rem;
  border: 0.0625rem solid #ececec;
  background-color: #fff;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.1);
}
.slide_wrap.ty5 .slide_trg .title {
  position: relative;
  display: block;
  padding-left: 2rem;
  padding-right: 2.375rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #202020;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5rem auto;
}
.slide_wrap.ty5 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty5 .slide_trg .title.icon_ty1 {
  background-image: url(../img/icon_slide_ty5_ty1.svg);
}
.slide_wrap.ty5 .slide_trg .title.icon_ty2 {
  background-image: url(../img/icon_slide_ty5_ty2.svg);
}
.slide_wrap.ty5 .slide_trg .title.icon_ty3 {
  background-image: url(../img/icon_slide_ty5_ty3.svg);
}
.slide_wrap.ty5 .slide_trg * + .title {
  margin-top: 0.5rem;
}
.slide_wrap.ty5 .slide_trg.active {
  border-radius: 1rem 1rem 0 0;
  border-bottom: 0.0625rem solid #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.slide_wrap.ty5 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty5 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty5 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 1.5rem 1.25rem;
  border: 0.0625rem solid #ececec;
  border-top: none;
  border-radius: 0 0 1rem 1rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.slide_wrap.ty5 .slide_cont + .slide_title {
  margin-top: 1rem;
}
.slide_wrap.ty6 .slide_title {
  margin-top: 1rem;
}
.slide_wrap.ty6 .slide_trg {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1.4375rem 3rem 1.4375rem 1.5rem;
  text-align: left;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-transition: 0s;
  transition: 0s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.slide_wrap.ty6 .slide_trg::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty6 .slide_trg .title {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #202020;
}
.slide_wrap.ty6 .slide_trg .title > span {
  display: block;
}
.slide_wrap.ty6 .slide_trg .title .date {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #f60;
}
.slide_wrap.ty6 .slide_trg .title .tit_cnt {
  margin-top: 0.5rem;
}
.slide_wrap.ty6 .slide_trg * + .title {
  margin-top: 0.5rem;
}
.slide_wrap.ty6 .slide_trg .point {
  white-space: nowrap;
}
.slide_wrap.ty6 .slide_trg.active {
  border-radius: 1rem 1rem 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.slide_wrap.ty6 .slide_trg.active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty6 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty6 .slide_cont {
  border-radius: 0 0 1rem 1rem;
  background-color: #fff;
}
.slide_wrap.ty6 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 0.75rem 0 1.25rem;
  margin: 0 1.25rem;
  border-top: none;
  overflow: hidden;
  border-top: 0.0625rem solid #ececec;
}
.slide_wrap.ty7 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 0.0625rem solid #f0f0f0;
  background-color: #fff;
}
.slide_wrap.ty7 .slide_trg .title {
  position: relative;
  display: block;
  padding-right: 2.375rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.slide_wrap.ty7 .slide_trg .title em {
  color: #f60;
}
.slide_wrap.ty7 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty7 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty7 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty7 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 1.5rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.slide_wrap.ty8 {
  overflow: hidden;
}
.slide_wrap.ty8 * + .slide_title {
  margin-top: 1rem;
}
.slide_wrap.ty8 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-radius: 1rem;
  background-color: #f5f5f5;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0s, 0.1s;
  transition-delay: 0s, 0.1s;
  -webkit-transition-property: padding-bottom, border-radius;
  transition-property: padding-bottom, border-radius;
}
.slide_wrap.ty8 .slide_trg .title {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: initial;
}
.slide_wrap.ty8 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty8 .slide_trg .title .thumb {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.slide_wrap.ty8 .slide_trg .title .thumb img {
  width: 1.5rem;
  max-height: 100%;
}
.slide_wrap.ty8 .slide_trg .title .thumb.new::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.25rem;
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../img/recommend/icon_recommend_new.svg) no-repeat center center/0.8125rem auto;
}
.slide_wrap.ty8 .slide_trg .title .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 0.625rem 0 0.5rem;
  color: #202020;
  word-break: keep-all;
  letter-spacing: -0.0625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide_wrap.ty8 .slide_trg .title .cnt {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
  color: #f60;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide_wrap.ty8 .slide_trg * + .title {
  margin-top: 0.5rem;
}
.slide_wrap.ty8 .slide_trg.active {
  padding-bottom: 0.5rem;
  border-radius: 1rem 1rem 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  -webkit-transition-property: padding-bottom, border-radius;
  transition-property: padding-bottom, border-radius;
  background-color: #f7f5f2;
}
.slide_wrap.ty8 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty8 .slide_trg.active .title .text {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.slide_wrap.ty8 .slide_trg.active .title .cnt {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.slide_wrap.ty8 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty8 .slide_cont {
  border-radius: 0 0 1rem 1rem;
  background-color: #f7f5f2;
}
.slide_wrap.ty8 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 0 1.25rem 1.5rem 1.25rem;
}
.slide_wrap.ty9 {
  border-top: 0.0625rem solid #f0f0f0;
}
.slide_wrap.ty9 .slide_trg {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  text-align: left;
  border-bottom: 0.0625rem solid #f0f0f0;
  background-color: #fff;
}
.slide_wrap.ty9 .slide_trg .q_bullet {
  display: block;
  position: absolute;
  left: 1.5rem;
  top: 1.25rem;
  width: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.slide_wrap.ty9 .slide_trg .title {
  position: relative;
  display: block;
  padding-right: 2.25rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
}
.slide_wrap.ty9 .slide_trg .title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slide_wrap.ty9 .slide_trg.active {
  border-bottom: 0.0625rem solid #f5f5f5;
}
.slide_wrap.ty9 .slide_trg.active .title {
  overflow: initial;
  text-overflow: initial;
  -webkit-line-clamp: initial;
}
.slide_wrap.ty9 .slide_trg.active .title::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.slide_wrap.ty9 .slide_cont .inner {
  position: relative;
  display: none;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
  background-color: #f5f5f5;
}
.slide_wrap.ty9 .slide_cont .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.slide_wrap.ty9 .slide_cont .inner a {
  color: inherit;
}
.cont_wrap .slide_wrap.ty9 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.notice_list {
  border-top: 0.0625rem solid #f0f0f0;
}
.notice_list > li a {
  position: relative;
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0;
  text-align: left;
  border-bottom: 0.0625rem solid #f0f0f0;
  background-color: #fff;
}
.notice_list > li a .title {
  position: relative;
  display: block;
  padding-right: 2.125rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: initial;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center/1.5rem auto;
}
.notice_list > li a * + .title {
  margin-top: 0.5rem;
}
.notice_list > li a .date {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.board_head {
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
}
.board_head .title {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
}
.board_head * + .title {
  margin-top: 0.5rem;
}
.board_head .date {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.board_content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.875rem 1.5rem;
  border-top: 0.0625rem solid #f0f0f0;
}
.board_content .inner {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.board_content .inner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.board_content > .btn_area {
  margin-top: auto;
  padding-top: 2.5rem;
}
* + .agree_cont .title_text.h5 {
  margin: 0.5rem 0;
}
.agree_cont .title_text:not(.h5) {
  padding-bottom: 1rem;
}
.agree_cont .desc {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
}
.agree_cont .desc + .list_bullet {
  margin-top: 0.5rem;
}
.agree_cont a {
  color: #666;
}
.agree_cont + .agree_cont {
  margin-top: 2.5rem;
}
.agree_cont.top .title_text {
  padding-bottom: 1.5rem;
}
.agree_cont .tbl + .list_bullet {
  margin-top: 0.5rem;
}
.agree_cont .title_text.h5 + .list_bullet {
  margin-top: 0.5rem;
}
.agree_cont .list_bullet > li .list_bullet {
  margin-top: 0.5rem;
}
.agree_cont .list_bullet + .title_text.h5 {
  margin-top: 1rem;
}
.setting_wrap dl {
  margin: 0;
}
.setting_wrap dl dt {
  padding: 0.5625rem 1.5rem;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #888;
  background-color: #f5f5f5;
}
.setting_wrap dl dd {
  margin: 0;
  padding: 1.25rem 1.5rem;
  background-color: #fff;
}
.setting_wrap dl dd + dd {
  border-top: 0.0625rem solid #f0f0f0;
}
.setting_wrap dl dd + dd.sub {
  padding-left: 3rem;
}
.setting_wrap dl dd + dd.sub + .sub {
  padding: 0 0 0 3rem;
  border-top: 0;
}
.setting_wrap dl dd + dd.sub + .sub .version_wrap {
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-top: 0.0625rem solid #f0f0f0;
}
.setting_wrap dl dd .dir_link {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat right center/1.5rem auto;
}
.version_wrap .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.version_info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.version_info .ver {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.version_info .cont {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #f60;
}
.version_info .cont .btn {
  margin-left: 0.5rem;
}
.setting_auth_msg {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.setting_auth {
  margin: 1.25rem -1.5rem -1.25rem -1.5rem;
}
.setting_auth li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.setting_auth li .l_side .tit {
  padding-left: 2rem;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5rem auto;
}
.setting_auth li .l_side .tit.ty1 {
  background-image: url(../img/icon_auth_pin.svg);
}
.setting_auth li .l_side .tit.ty2 {
  background-image: url(../img/icon_auth_patttern.svg);
}
.setting_auth li .l_side .tit.ty3 {
  background-image: url(../img/icon_auth_body.svg);
}
.setting_auth li .r_side {
  margin-left: auto;
  font-size: 0.875rem;
  color: #f60;
}
.setting_auth li .r_side .btn {
  margin-left: 0.5rem;
}
.setting_auth li + li {
  border-top: 0.0625rem solid #f0f0f0;
}
.download_area {
  padding: 4rem 1.5rem 0 1.5rem;
}
.download_top .title {
  font-size: 0;
}
.download_top .title img {
  display: inline-block;
  width: 11.8125rem;
}
.download_top .title > .text {
  display: block;
  padding-top: 0.25rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}
.download_body {
  margin-top: 4.0625rem;
}
.download_title {
  position: relative;
  padding-left: 4rem;
}
.download_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.125rem;
  height: 3.125rem;
  background: url(../img/icon_launcher.svg) no-repeat left top/3.125rem auto;
}
.download_title h2 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.download_title p {
  padding-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
}
.add_images > label {
  display: block;
  padding: 0.4375rem 0;
  text-align: center;
  border-radius: 0.5rem;
  border: 0.0625rem solid #666;
}
.add_images > label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.add_images > label .text {
  display: inline-block;
  padding-left: 2.0625rem;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #666;
  background: url(../img/icon_camera.svg) no-repeat left center/1.5625rem auto;
}
.attach_image_cont {
  display: none;
}
.attach_image_cont.active {
  padding-top: 1.5rem;
  display: block;
}
.attach_image_cont .attach_image_item {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 33.3%;
  font-size: 0;
  border-radius: 0.5rem;
  background-color: #f0f0f0;
  overflow: hidden;
}
.attach_image_cont .attach_image_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 0.0625rem solid #d9d9d9;
  pointer-events: none;
}
.attach_image_cont .attach_image_item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.attach_image_cont .attach_image_item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
.attach_image_cont .attach_image_item .attach_image_remove {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  z-index: 2;
  width: 1.25rem;
  height: 1.25rem;
  overflow: hidden;
  text-indent: -624.9375rem;
  background: url(../img/icon_del_20.svg) no-repeat center center/1.25rem auto;
}
.recommend_list_wrap {
  font-size: 0;
}
.recommend_list_wrap .recommend_list {
  width: 50%;
}
.recommend_list {
  display: inline-block;
  vertical-align: top;
}
.recommend_list > li {
  padding: 0.75rem 0;
}
.recommend_list > li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.recommend_list > li a > .num {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.5rem;
  margin-right: 0.625rem;
  font-weight: 600;
  text-align: center;
  color: #f60;
}
.group_list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.group_list li .link {
  display: inline-block;
}
.group_list li .r_side {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  padding-left: 0.625rem;
}
.group_list li .r_side .btn + .btn {
  margin-left: 0.5rem;
}
.group_list li.draggable {
  padding: 0 0 0 1.5rem;
}
.group_list li.draggable .word {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 1.25rem 0.625rem 1.25rem 0;
}
.group_list li.draggable .m_btn_icon {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4rem;
  height: 4rem;
  background: url(../img/icon_menu.svg) no-repeat center center/1.5rem auto;
  text-indent: -624.9375rem;
  overflow: hidden;
}
.hc_user_top {
  min-height: 5rem;
  padding-right: 6rem;
  background: url(../img/icon_hc_user.svg) no-repeat right top/5rem auto;
}
.hc_user_top .title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #000;
}
.hc_user_top .date {
  display: inline-block;
  vertical-align: top;
  margin-top: 0.5rem;
  padding: 0 0.75rem;
  height: 1.625rem;
  font-size: 0.75rem;
  line-height: 1.625rem;
  color: #202020;
  border-radius: 0.8125rem;
  background-color: #f5f5f5;
}
.hc_top.ty1 {
  padding-top: 2rem;
  text-align: center;
}
.hc_top.ty1 .title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #202020;
}
.hc_top.ty1 .title > span {
  display: block;
  font-weight: normal;
}
.hc_top.ty1 .text {
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.hc_top.ty1 .img {
  padding-top: 0.5rem;
}
.hc_top.ty1 .img img {
  display: block;
  width: 100%;
}
.hc_top.ty2 {
  padding: 2rem 1.5rem 2.75rem 1.5rem;
  text-align: center;
  background: url(../img/healthcheck/img_healthcheck_info_kv_cover.svg) no-repeat center bottom/cover;
}
.hc_top.ty2 .title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #202020;
}
.hc_top.ty2 .text {
  padding-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.hc_top.ty2 .img {
  padding-top: 2rem;
}
.hc_top.ty2 .img img {
  display: block;
  width: 100%;
}
.hc_top.ty3 {
  padding: 3rem 1.5rem;
  text-align: center;
}
.hc_top.ty3 .title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.5rem;
  color: #202020;
}
.hc_top.ty3 .title small {
  display: block;
  padding-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #666;
}
.hc_top.ty3 .title span {
  color: #f60;
}
.hc_top.ty3 .img {
  padding-top: 3.5rem;
}
.hc_top.ty3 .img img {
  display: block;
  width: 100%;
}
.hc_guide_wrap.ty2 {
  padding: 0 2.5rem;
}
.hc_guide_wrap.ty3 {
  padding-top: 3.375rem;
}
.hc_guide_wrap.ty3 > .top {
  display: block;
  width: 100%;
}
.hc_guide_wrap.ty3 .inner {
  padding: 1.625rem 1.5rem 4rem 1.5rem;
  background-color: #fff4ed;
}
.hc_guide_wrap.ty4 {
  padding: 4.625rem 1.5rem 0 1.5rem;
}
.hc_guide_title.ty2 {
  padding-top: 9.75rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #202020;
  text-align: center;
  background: url(../img/healthcheck/img_healthcheck_info_03_01.svg) no-repeat center top/8.75rem auto;
}
.hc_guide_title.ty2 > span {
  color: #ff6300;
}
.hc_guide_cont {
  position: relative;
}
.hc_guide_cont.ty1 {
  background-color: #f5f5f5;
  padding: 1.5rem 1.25rem;
  border: 0.0625rem solid #f5f5f5;
  border-radius: 1rem;
}
.hc_guide_cont.ty1 hr {
  display: block;
  height: 0.0625rem;
  background-color: #ececec;
  margin: 1rem 0 0;
}
.hc_guide_cont.ty1 .hc_step_box {
  position: relative;
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  border-radius: 1rem;
}
.hc_guide_cont.ty1 .hc_step_box + .hc_step_box {
  margin-top: 2rem;
}
.hc_guide_cont.ty1 .hc_step_box + .hc_step_box::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.3125rem;
  left: 50%;
  margin-left: -0.5rem;
  width: 1rem;
  height: 0.625rem;
  border-top: 0.625rem solid #3f3f3f;
  border-right: 0.5rem solid rgba(0, 0, 0, 0);
  border-left: 0.5rem solid rgba(0, 0, 0, 0);
}
.hc_guide_cont.ty1 .hc_step_box > .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hc_guide_cont.ty1 .hc_step_box > .top > img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3rem;
  margin-right: 1rem;
}
.hc_guide_cont.ty1 .hc_step_box > .top > .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  font-weight: 600;
}
.hc_guide_cont.ty1 .text_1 {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
}
.hc_guide_cont.ty1 .text_2 {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.hc_guide_cont.ty1 .msg {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.hc_guide_cont.ty1 .msg .name {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}
.hc_guide_cont.ty1 .msg.ty1 {
  background-color: #f5f5f5;
  border-radius: 0 1rem 1rem;
}
.hc_guide_cont.ty1 .msg.ty2 {
  background-color: #fff4ed;
  border-radius: 1rem 0 1rem 1rem;
}
.hc_guide_cont.ty1 .msg.ty2 .name {
  color: #f60;
  text-align: right;
}
.hc_guide_cont.ty2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hc_guide_cont.ty2 .thumb {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 10rem;
  font-size: 0;
}
.hc_guide_cont.ty2 .thumb img {
  width: 10rem;
}
.hc_guide_cont.ty2 .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  white-space: nowrap;
  text-align: center;
}
.hc_guide_cont.ty2 .cont > span {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: #666;
}
.hc_guide_cont.ty2 .cont > p {
  padding-top: 0.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.hc_guide_cont.ty2.r_type {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.hc_guide_cont.ty2 + .hc_guide_cont.ty2 {
  margin-top: 0.75rem;
  padding-top: 2.375rem;
  background: url(../img/healthcheck/bg_hc_guide_cont_ty2_line.svg) no-repeat center top/1.625rem auto;
}
.hc_guide_cont.ty3 {
  margin-top: 5.5625rem;
  font-size: 0;
}
.hc_guide_cont.ty3::after {
  content: "";
  display: block;
  clear: both;
}
.hc_guide_cont.ty3 .cts_case {
  position: relative;
  display: inline-block;
  width: 6.4375rem;
  vertical-align: top;
  padding: 1.5rem 0;
  text-align: center;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0.125rem 0.1875rem 0.5rem 0 rgba(255, 100, 0, 0.08);
  box-shadow: 0.125rem 0.1875rem 0.5rem 0 rgba(255, 100, 0, 0.08);
}
.hc_guide_cont.ty3 .cts_case .num {
  position: absolute;
  top: -1rem;
  left: 50%;
  width: 2rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}
.hc_guide_cont.ty3 .cts_case .thumb {
  height: 3rem;
}
.hc_guide_cont.ty3 .cts_case .thumb img {
  -o-object-fit: cover;
  object-fit: cover;
}
.hc_guide_cont.ty3 .cts_case .sub {
  padding-top: 1rem;
}
.hc_guide_cont.ty3 .cts_case .sub strong {
  display: block;
  padding-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.hc_guide_cont.ty3 .cts_case .sub span {
  position: relative;
  display: inline-block;
  padding-left: 1.125rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #202020;
}
.hc_guide_cont.ty3 .cts_case .sub span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.625rem;
  border-bottom: 0.625rem solid #ff4d42;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hc_guide_cont.ty3 .cts_case.ty1 {
  position: absolute;
  top: -2.0625rem;
  left: 6.9375rem;
  width: 6.5625rem;
  padding: 2rem 0 1.5rem 0;
  -webkit-box-shadow: 0 1rem 1.25rem 0 rgba(255, 102, 0, 0.12);
  box-shadow: 0 1rem 1.25rem 0 rgba(255, 102, 0, 0.12);
}
.hc_guide_cont.ty3 .cts_case.ty1 .num {
  background-color: #f60;
}
.hc_guide_cont.ty3 .cts_case.ty2 .num {
  background-color: #ff9752;
}
.hc_guide_cont.ty3 .cts_case.ty3 {
  float: right;
  margin-top: 1rem;
}
.hc_guide_cont.ty3 .cts_case.ty3 .num {
  background-color: #b19f93;
}
.hc_guide_cont.ty4 {
  padding: 2rem 1.25rem 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 0.0625rem solid #f0f0f0;
  text-align: center;
}
.hc_guide_cont.ty4 .point {
  position: absolute;
  top: -1rem;
  left: 50%;
  display: inline-block;
  padding: 0 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 2rem;
  color: #fff;
  border-radius: 1.3125rem;
  background-color: #f60;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hc_guide_cont.ty4 .title {
  padding-top: 8.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 7.5rem auto;
}
.hc_guide_cont.ty4 .title.ty1 {
  background-image: url(../img/healthcheck/img_healthcheck_info_04_01.svg);
}
.hc_guide_cont.ty4 .title.ty2 {
  background-image: url(../img/healthcheck/img_healthcheck_info_04_02.svg);
}
.hc_guide_cont.ty4 .title.ty3 {
  background-image: url(../img/healthcheck/img_healthcheck_info_04_03.svg);
}
.hc_guide_cont.ty4 .text {
  padding-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.hc_guide_cont.ty4 + .hc_guide_cont.ty4 {
  margin-top: 2.5rem;
}
.hc_guide_cont.ty5 {
  padding: 1.5rem 1.25rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
}
.hc_guide_cont.ty5 .text_1 {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.hc_guide_cont.ty5 .img_1 {
  display: block;
  width: 100%;
  margin: 2rem auto;
}
.hc_guide_cont.ty5 .btn_area {
  gap: 0.5rem;
}
.hc_guide_cont.ty5 .title {
  padding-left: 2rem;
  font-size: 37.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 1.5rem auto;
}
.hc_guide_cont.ty5 .title.ty1 {
  background-image: url(../img/healthcheck/bg_hc_s_tit01.svg);
}
.hc_guide_cont.ty5 .title.ty2 {
  background-image: url(../img/healthcheck/bg_hc_s_tit02.svg);
}
.hc_guide_cont.ty5 .title.ty3 {
  background-image: url(../img/healthcheck/bg_hc_s_tit03.svg);
}
.hc_guide_cont.ty5 .hc_s_case {
  margin-top: 1rem;
}
.hc_guide_cont.ty5 .hc_s_case li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.hc_guide_cont.ty5 .hc_s_case li .case_tit {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3.75rem;
  border-radius: 1.5625rem;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  text-align: center;
  white-space: nowrap;
}
.hc_guide_cont.ty5 .hc_s_case li .case_tit.ty1 {
  color: #0084f4;
  background-color: #ebf6ff;
}
.hc_guide_cont.ty5 .hc_s_case li .case_tit.ty2 {
  color: #ef2222;
  background-color: #ffe1e1;
}
.hc_guide_cont.ty5 .hc_s_case li .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3f3f3f;
  word-break: keep-all;
}
.hc_guide_cont.ty5 .hc_s_case li + li {
  margin-top: 0.5rem;
}
.hc_guide_cont.ty5 + .hc_guide_cont.ty5 {
  margin-top: 1rem;
}
.ot_active_top img {
  display: block;
  width: 100%;
}
.ot_active_cont.ty1 {
  padding: 1rem 1.5rem;
}
.ot_active_cont.ty2 {
  padding: 2.5rem 1.5rem;
}
* + .ot_active_cont {
  border-top: 0.0625rem solid #ececec;
}
.ot_active_cont_head .title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #202020;
}
.ot_active_cont_head .title.normal {
  display: block;
  text-align: center;
  line-height: 1.75rem;
}
.ot_active_cont_head .desc {
  padding-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  text-align: center;
}
.ot_active_cont_head .desc em {
  font-weight: 600;
  color: #f60;
}
.ot_active_cont .ot_cal_title {
  text-align: center;
}
.ot_active_cont .ot_cal_title .text {
  position: relative;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2.375rem 0 1rem 0;
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  background-color: #f5f5f5;
}
.ot_active_cont .ot_cal_title .text span {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 0.9375rem;
  line-height: 2rem;
  color: #202020;
}
.ot_active_cont .ot_cal_title .text span.cal {
  position: relative;
  width: 1.8125rem;
  height: 1.75rem;
  margin: 0 0.25rem 0 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 0.25rem;
  background: url(../img/active/bg_day_cal.svg) no-repeat center center/1.8125rem auto;
}
.ot_active_cont .ot_cal_title .text .point_balloon {
  position: absolute;
  right: 0;
  top: -1.375rem;
  padding: 0 0.75rem;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.625rem;
  color: #fff;
  border-radius: 3.125rem;
  background-color: #3f3f3f;
  white-space: nowrap;
}
.ot_active_cont .ot_cal_title .text .point_balloon::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  right: 1.125rem;
  border-top: 0.25rem solid #3f3f3f;
  border-right: 0.25rem solid rgba(0, 0, 0, 0);
  border-left: 0.25rem solid rgba(0, 0, 0, 0);
}
.ota_point_dp {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ota_point_dp .tit {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-left: 2rem;
  font-weight: normal;
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.ota_point_dp .point {
  position: relative;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}
.ota_point_dp .point .balloon {
  position: absolute;
  top: -2.25rem;
  right: -1.25rem;
  padding: 0 0.75rem;
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1.5rem;
  color: #fff;
  white-space: nowrap;
  border-radius: 6.25rem;
  background-color: #3f3f3f;
}
.ota_point_dp .point .balloon em {
  font-weight: 700;
}
.ota_point_dp .point .balloon::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: -0.3125rem;
  width: 0.875rem;
  border-top: 0.5rem solid #3f3f3f;
  border-left: 0.4375rem solid rgba(0, 0, 0, 0);
  border-right: 0.4375rem solid rgba(0, 0, 0, 0);
}
.ota_point_dp.ty1 {
  padding: 1.25rem 1.5rem;
  color: #fff;
  border-radius: 1rem;
  background-color: #3f3f3f;
}
.ota_point_dp.ty1 .tit {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  background: url(../img/icon_point_p01.svg) no-repeat left center/1.5rem auto;
}
.ota_point_dp.ty1 .tit small {
  display: block;
  padding-top: 0.25rem;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1;
}
.ota_point_dp.ty2 {
  padding: 1.25rem 1.25rem;
  color: #202020;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.ota_point_dp.ty2 .tit {
  background: url(../img/icon_point_p02.svg) no-repeat left center/1.5rem auto;
}
.ota_point_dp.ty3 {
  padding: 1rem 0.75rem;
  color: #202020;
  border-radius: 1rem;
}
.ota_point_dp.ty3 .tit {
  padding: 0;
  font-size: 0.875rem;
  color: #666;
}
.ota_point_dp.ty3 .point {
  padding-right: 1.25rem;
  background: url(../img/icon_arrow_right_type3.svg) no-repeat right center/1rem auto;
  font-size: 0.9375rem;
}
.ota_point_dp.ty4 {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  color: #202020;
  border-radius: 0.75rem;
  background-color: #f5f5f5;
}
.ota_point_dp.ty4 .tit {
  padding: 0;
  font-size: 0.9375rem;
  color: #666;
}
.ota_point_dp.ty4 .point {
  padding-right: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
  background: url(../img/icon_arrow_right_type3.svg) no-repeat right center/1rem auto;
}
.color_num_block {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.color_num_block span {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  text-indent: -0.125rem;
}
.color_num_block span.ty1 {
  background-color: #f60;
}
.color_num_block span.ty2 {
  background-color: #0094ff;
}
.color_num_block span.ty3 {
  background-color: #29ccb8;
}
.color_num_block.ty1 {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}
.color_num_block.ty1 span {
  width: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.5rem;
}
.color_num_block.ty1 span + span {
  margin-left: -0.25rem;
}
.color_num_block.ty2 {
  margin-right: 0.25rem;
}
.color_num_block.ty2 span {
  width: 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.25rem;
}
.color_num_block.ty2 span + span {
  margin-left: -0.1875rem;
}
.ot_active_list.ty1 {
  padding-top: 1rem;
}
.ot_active_list.ty1 li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
}
.ot_active_list.ty1 li .stamp {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.5rem;
  font-size: 0;
}
.ot_active_list.ty1 li .stamp img {
  width: 100%;
}
.ot_active_list.ty1 li .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 1rem;
  word-break: keep-all;
}
.ot_active_list.ty1 li .cont .tit {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.ot_active_list.ty1 li .cont .tit em {
  color: #f60;
}
.ot_active_list.ty1 li .cont .text {
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
}
.ot_active_list.ty1 li .by {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4.375rem;
  line-height: 2rem;
  color: #f60;
  text-align: center;
  border-radius: 6.25rem;
  background-color: #fff4ed;
  letter-spacing: 0.0625rem;
}
.ot_active_list.ty1 li .by strong {
  font-weight: 700;
}
.ot_active_list.ty1 li + li {
  border-top: 0.0625rem solid #ececec;
}
.ot_active_list.ty2 {
  padding: 0.5rem 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}
.ot_active_list.ty2 li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
}
.ot_active_list.ty2 li a .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 0.5rem 0 0;
}
.ot_active_list.ty2 li a .cont .tit {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.ot_active_list.ty2 li a .cont .tit span {
  font-weight: normal;
}
.ot_active_list.ty2 li a .cont .text {
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
}
.ot_active_list.ty2 li a .cont .text em {
  color: #f60;
}
.ot_active_list.ty2 li a .point {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  text-align: right;
}
.ot_active_list.ty2 li a .point strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #f60;
}
.ot_active_list.ty2 li a .point span {
  display: block;
  font-weight: 700;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #202020;
}
.ot_active_list.ty2 li a .point span.un {
  font-weight: normal;
  color: #9e9e9e;
}
.ot_active_list.ty2 li + li {
  border-top: 0.0625rem solid #ececec;
}
.ot_accu_wrap {
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  background-color: #fff;
}
.ot_accu_wrap_head {
  padding-bottom: 1.5rem;
  text-align: center;
}
.ot_accu_wrap_head .text {
  padding-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #202020;
}
.ota_point_comp {
  font-size: 0;
  text-align: center;
}
.ota_point_comp .thumb {
  position: relative;
  display: inline-block;
  width: 15rem;
}
.ota_point_comp .thumb .date {
  position: absolute;
  top: calc(50% + 0.5rem);
  left: calc(50% + 0.625rem);
  width: 1.75rem;
  height: 1.6875rem;
  padding-top: 0.5625rem;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #202020;
  background: url(../img/active/bg_comp_cal.svg) no-repeat center center/1.75rem auto;
}
.ota_point_comp img {
  width: 100%;
}
.ota_point_comp .text {
  padding: 0.5rem 0 1rem 0;
  padding: 0.5rem 0 0 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #202020;
  text-align: center;
}
.ota_point_comp .text span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
}
.ota_point_comp .text em {
  font-weight: 600;
  color: #f60;
}
.ota_point_comp + * {
  margin-top: 2rem;
}
.mission_cont {
  position: relative;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
}
.mission_cont.full {
  border-radius: 0;
}
.mission_cont .badge_cont {
  position: relative;
  z-index: 2;
}
.mission_cont .badge_cont + * {
  margin-top: 1rem;
}
.mission_cont .link {
  position: relative;
  z-index: 2;
  display: block;
  color: #202020;
}
.mission_cont .link .txt01 {
  display: block;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.mission_cont .link .txt02 {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.mission_cont .link .txt03 {
  display: block;
  padding-top: 1rem;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
  color: #666;
}
.mission_cont a.link .txt01 {
  padding-right: 2rem;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat right top 0.125rem/1.5rem auto;
}
.mission_cont .img {
  margin-top: 1rem;
  font-size: 0;
  text-align: center;
}
.mission_cont .img img {
  max-width: 100%;
}
.mission_cont .mission_cont_detail_wrap {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: #fff;
}
.mission_cont .mission_cont_detail li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.25rem 0;
}
.mission_cont .mission_cont_detail li .tit {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 0.625rem 0 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  word-wrap: break-word;
  word-break: keep-all;
  background: url(../img/icon_check_type5.svg) no-repeat left top/1.5rem auto;
  overflow: hidden;
}
.mission_cont .mission_cont_detail li .cnt {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4rem;
  margin-left: auto;
  font-size: 0.9375rem;
  line-height: 2rem;
  color: #f60;
  text-align: center;
  letter-spacing: 0.0625rem;
  border-radius: 6.25rem;
  background-color: #fff4ed;
}
.mission_cont .mission_cont_detail li .cnt strong {
  font-weight: 600;
}
.mission_cont .mission_cont_detail li.active .tit {
  background-image: url(../img/icon_check_type6.svg);
}
.mission_cont.end .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(238, 238, 238, 0.8);
}
.mission_custom_area {
  padding: 2rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  border-bottom: 0.0625rem solid #ececec;
}
.mission_detail_list li {
  margin-top: 2rem;
}
.mission_detail_list li + li {
  margin-top: 2.5rem;
}
.mission_detail_list li .sub_title {
  padding-top: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.mission_detail_list li .mission_detail {
  padding-top: 0.375rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.mission_detail_list li .mission_detail img {
  display: block;
  max-width: 100%;
}
.mission_detail_list li .mission_detail img + img {
  margin-top: 0.5rem;
}
.rec_detail_top {
  text-align: center;
}
.rec_detail_title {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #202020;
  word-break: keep-all;
}
.rec_detail_title strong {
  font-weight: 600;
}
.rec_detail_desc {
  padding-bottom: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  color: #666;
}
.msg_balloon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.msg_balloon .thumb {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.5rem;
  margin-right: 0.5rem;
}
.msg_balloon .thumb::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  right: -0.625rem;
  width: 0.8125rem;
  height: 0.875rem;
  background: url(../img/recommend/bg_balloon_tail.svg) no-repeat center center/cover;
}
.msg_balloon .msg_box {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.625rem 1rem;
  border-radius: 1rem;
  background-color: #9d8778;
  overflow: hidden;
}
.msg_balloon .msg_box .msg_text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #fff;
  word-wrap: break-word;
  word-break: keep-all;
  overflow: hidden;
}
.rate_list > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
}
.rate_list > li + li {
  margin-top: 0.625rem;
}
.rate_list > li > .tit {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  max-width: 100%;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #202020;
}
.rate_list > li > .rate_cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0.25rem;
}
.rate_cont {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.25rem;
}
.item_rate {
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  font-size: 0;
  background: url(../img/icon_rate.svg) no-repeat center center/1rem auto;
}
* + .rec_custom_bnr {
  margin-top: 1rem;
}
.rec_custom_bnr.ty1 {
  background-color: #fff;
  border-radius: 1rem;
}
.rec_custom_bnr.ty1 > .inner .in_cont .title {
  padding-top: 0;
}
.rec_custom_bnr > .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
}
.rec_custom_bnr > .inner .in_cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-right: 0.625rem;
}
.rec_custom_bnr > .inner .in_cont .title {
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
}
.rec_custom_bnr > .inner .in_cont .sub_text {
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.rec_custom_bnr > .inner .r_side {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 5rem;
  margin-left: auto;
}
.rec_custom_bnr > .inner .r_side .stat {
  position: relative;
  padding-top: 1.25rem;
}
.rec_custom_bnr > .inner .r_side .stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  background: url(../img/recommend/icon_lamp.svg) no-repeat center center/cover;
}
.rec_custom_bnr > .inner .r_side .stat .by {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 5rem;
  color: #fff;
  border-radius: 50%;
  background-color: #3f3f3f;
  text-align: center;
}
.rec_custom_bnr > .inner .r_side .stat .by .text1 {
  font-size: 0.625rem;
  line-height: 0.75rem;
}
.rec_custom_bnr > .inner .r_side .stat .by .text2 {
  padding-top: 0.125rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1rem;
}
.get_point_wrap {
  margin-top: 1rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.get_point_wrap img {
  width: 100%;
}
.get_point_wrap.ty1 {
  padding: 1.5rem;
}
.get_point_wrap_head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.get_point_wrap_head .text {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.get_point_wrap_cont .text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.get_point_wrap_cont .text em {
  font-weight: 600;
  color: #f60;
}
.get_point_wrap_cont .text.chker {
  padding-left: 1.75rem;
  background: url(../img/icon_check_type4.svg) no-repeat left top/1.25rem auto;
}
.get_point_wrap + .get_point_wrap {
  margin-top: 1.5rem;
}
.gpc {
  margin-top: 1.5rem;
}
.gpc.ty1 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #202020;
}
.gpc.ty2 .gpc_step {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.gpc.ty2 .gpc_step + .gpc_step {
  margin-top: 1.25rem;
}
.gpc.ty2 .gpc_step + .gpc_step::before {
  content: "";
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  width: 1.375rem;
  height: 1.375rem;
  background: url(../img/active/icon_gpc_step02.svg) no-repeat center center/1.375rem auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.gpc .gpc_item1 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  text-align: center;
}
.gpc .gpc_item1 .b {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  border-radius: 50%;
  background-color: #fff;
}
.gpc .gpc_item1 .p {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.gpc .gpc_item2 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  margin: 0 0.5rem;
  text-align: center;
}
.gpc .gpc_item2 .b {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 4.5rem;
  border-radius: 6.25rem;
  background-color: #fff;
}
.gpc .gpc_item2 .b span {
  font-size: 0.875rem;
  line-height: 1rem;
}
.gpc .gpc_item2 .b span em {
  font-weight: 600;
}
.gpc .gpc_item2 .b span + span {
  padding-left: 2.375rem;
  background: url(../img/active/icon_gpc_step01.svg) no-repeat left 0.4375rem center/1.5rem auto;
}
.gpc .gpc_item2 .p {
  padding-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.gpc .gpc_item2 .p em {
  font-weight: 600;
}
.gpc .gpc_item3 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  text-align: center;
}
.gpc .gpc_item3 .b {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  border-radius: 50%;
  background-color: #fff;
}
.gpc .gpc_item3 .p {
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #ef2222;
}
.gpc .gpc_item4 {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.5625rem 0;
  border-radius: 6.25rem;
  background-color: #fff;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
  text-align: center;
}
.gpc .gpc_item4 em {
  font-weight: 600;
}
.gpc .gpc_item4 + .gpc_item4 {
  margin-left: 0.5rem;
}
.gpc .gpc_item4 + .gpc_item4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/active/icon_gpc_step01.svg) no-repeat left center/1.5rem auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gpc .gpc_item5 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 4.5rem;
  border-radius: 6.25rem;
  background-color: #fff;
}
.gpc .gpc_item5 p {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.gpc .gpc_item5 p em {
  padding-left: 0.1875rem;
  color: #ef2222;
}
.calendar_wrap.ty1 {
  padding: 1.25rem 0.9375rem 1.5rem 0.9375rem;
  border-radius: 1rem;
  border: 0.0625rem solid #ff9752;
  background-color: #fff4ed;
}
.calendar_wrap.ty1 .calendar_head {
  position: relative;
  height: 3.25rem;
  margin-bottom: 1rem;
}
.calendar_wrap.ty1 .calendar_head .date {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.calendar_wrap.ty1 .calendar_head .calendar_head_btn {
  position: absolute;
  top: 0;
  width: 3.25rem;
  height: 3.25rem;
}
.calendar_wrap.ty1 .calendar_head .calendar_head_btn.prev {
  left: 0;
  text-indent: -624.9375rem;
  overflow: hidden;
  background: url(../img/icon_arrow_left_type1.svg) no-repeat center center/1.5rem;
}
.calendar_wrap.ty1 .calendar_head .calendar_head_btn.next {
  right: 0;
  text-indent: -624.9375rem;
  overflow: hidden;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat center center/1.5rem;
}
.calendar_wrap.ty2 {
  padding: 1.5rem 1.25rem;
  background-color: #f5f5f5;
}
.calendar_wrap.ty2 .calendar_head {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.calendar_wrap.ty2 .calendar_head .date {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}
.calendar_wrap.ty2 .calendar_head .date .date_text {
  display: inline-block;
  margin: 0 0.25rem;
  padding-top: 0.0625rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.calendar_wrap.ty2 .calendar_head .date .cal_btn {
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem auto;
}
.calendar_wrap.ty2 .calendar_head .date .cal_btn.prev {
  background-image: url(../img/icon_arrow_left_type2.svg);
}
.calendar_wrap.ty2 .calendar_head .date .cal_btn.next {
  background-image: url(../img/icon_arrow_right_type11.svg);
}
.calendar_wrap.ty2 .calendar_head .r_side {
  margin-left: auto;
  font-size: 0;
}
.calendar_wrap.ty2 .calendar_select {
  background-color: rgba(0, 0, 0, 0);
}
.calendar_table.ty1 thead th {
  height: 2.5rem;
  vertical-align: top;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #9c9d9f;
}
.calendar_table.ty1 tbody tr.space td {
  height: 0.625rem;
}
.calendar_table.ty1 tbody tr.space td::after {
  content: none;
}
.calendar_table.ty1 tbody td {
  position: relative;
  text-align: center;
}
.calendar_table.ty1 tbody td::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.calendar_table.ty1 tbody td button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  width: calc(100% - 0.125rem);
  height: calc(100% - 0.125rem);
  background-color: rgba(0, 0, 0, 0);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.calendar_table.ty1 tbody td button:disabled {
  color: #9e9e9e;
}
.calendar_table.ty1 tbody td button:disabled > span {
  color: #9e9e9e;
}
.calendar_table.ty1 tbody td button.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/active/img_ot_stamp08.svg) no-repeat center center/cover;
}
.calendar_table.ty1 tbody td button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #000;
  line-height: 1rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.calendar_table.ty2 thead th {
  height: 2.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #202020;
}
.calendar_table.ty2 tbody tr.space td {
  height: 0.625rem;
}
.calendar_table.ty2 tbody tr.space td::after {
  content: none;
}
.calendar_table.ty2 tbody td {
  position: relative;
  text-align: center;
}
.calendar_table.ty2 tbody td::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.calendar_table.ty2 tbody td button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  width: calc(100% - 0.375rem);
  height: calc(100% - 0.375rem);
  background-color: rgba(0, 0, 0, 0);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.calendar_table.ty2 tbody td button:disabled {
  color: #bababa;
}
.calendar_table.ty2 tbody td button:disabled span {
  color: #bababa;
}
.calendar_table.ty2 tbody td button.active {
  font-weight: 600;
  color: #f60;
  border-radius: 50%;
  border: 0.0625rem solid #f60;
  background-color: #fff;
}
.calendar_table.ty2 tbody td button > span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 500;
  font-size: 0.875rem;
  color: #202020;
  line-height: 1rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.udline {
  position: relative;
  display: inline-block;
}
.udline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.0625rem;
  display: block;
  width: 100%;
  border-bottom: 0.5625rem solid #ffd2ab;
}
.udline.b4::after {
  bottom: 0.25rem;
}
.udline > span {
  position: relative;
  z-index: 1;
}
.udline.etc01::after {
  border-bottom: 0.5625rem solid #ffe8d6;
}
.udline.etc02::after {
  bottom: 0;
  border-bottom: 0.3125rem solid #ff8533;
  opacity: 0.6;
}
.udline.etc03::after {
  border-bottom: 0.625rem solid #acb0e5;
}
.udline.etc04::after {
  border-bottom: 0.625rem solid #acd6e5;
}
.udline.etc05::after {
  border-bottom: 0.625rem solid #e5c2ac;
}
.udline.etc06::after {
  border-bottom: 0.625rem solid #e5acd1;
}
.udline.etc07::after {
  border-bottom: 0.375rem solid #ffd2ab;
}
.title_text.h3 .udline::after {
  bottom: 0.1875rem;
}
.sort_date {
  margin-bottom: 1.5rem;
}
.sort_date .date_area {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.sort_date .date {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
}
.sort_date .btn {
  overflow: hidden;
  text-indent: -624.9375rem;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_date_24.svg) no-repeat center;
}
.sort_date .tit {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.125rem;
  color: #202020;
}
.re_visual_top {
  position: relative;
  display: block;
  padding: 1.5rem 0 0 0;
  text-align: center;
}
.re_visual_top .txt_1 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #202020;
}
.re_visual_top .txt_2 {
  padding: 0 0.1875rem;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.625rem;
  color: #202020;
}
.re_visual_top .txt_2 .line {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.re_visual_top .txt_2 .line::after {
  content: "";
  display: block;
  height: 0.5625rem;
  margin: -0.875rem -0.1875rem 0;
  background-color: #ffe8d6;
}
.re_visual_top .txt_3 {
  margin-top: 1.4375rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.re_visual_top .img {
  display: block;
  width: 100%;
}
.life_solution_qualify {
  margin: 0 -1.5rem;
  padding: 2rem 1.5rem;
  background-color: #f5f5f5;
}
.qualify_list {
  text-align: left;
}
.qualify_list li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.qualify_list li + li {
  margin-top: 2rem;
}
.qualify_list li > .tit {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3.75rem;
}
.qualify_list li > .tit span {
  display: block;
  padding: 0 0.4375rem;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.875rem;
  color: #fff;
  text-align: center;
  border-radius: 2.5rem;
  background-color: #f60;
}
.qualify_list li > .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-left: 1rem;
}
.qualify_list li > .cont.etc {
  padding-top: 0;
}
.qualify_list li > .cont .word {
  font-size: 1rem;
  line-height: 1.625rem;
  color: #202020;
}
.qualify_list li > .cont .word strong {
  font-weight: 600;
}
.qualify_list li > .cont .btn_area {
  margin-top: 0.625rem;
}
.ls_apply_list {
  position: relative;
}
.ls_apply_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  height: 100%;
  border-left: 0.0625rem dashed #d9d9d9;
}
.ls_apply_list li {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ls_apply_list li + li {
  margin-top: 1.25rem;
}
.ls_apply_list li > .thumb {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 4rem;
}
.ls_apply_list li > .thumb img {
  display: block;
  width: 100%;
}
.ls_apply_list li > .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-left: 0.625rem;
}
.ls_more_box {
  padding: 2rem 1.5rem;
  background-color: #f5f5f5 !important;
}
.ls_more_box .text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3f3f3f;
  text-align: center;
}
.ls_more_box .btn_area {
  margin-top: 1rem;
}
.life_solution_box {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  color: #202020;
  text-align: center;
  border-radius: 1rem;
  background-color: #fff5ed;
}
.life_solution_box .tit {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.life_solution_box .icon_dv {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.75rem auto;
  background: url(../img/re/img_simbol.svg) no-repeat center;
  background-size: contain;
}
.life_solution_box .icon_dv:first-child {
  margin-top: 0;
}
.life_solution_box .txt {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.re_visual_01 {
  display: block;
  padding: 2rem 1.5rem;
}
.re_visual_01 .tit {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #000;
  text-align: center;
}
.re_visual_01 .item {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding-left: 3.25rem;
}
.re_visual_01 .item img {
  position: absolute;
  left: -0.1875rem;
  bottom: 0;
  display: block;
  width: 3rem;
  height: 3rem;
}
.re_visual_01 .item .txt {
  position: relative;
  display: block;
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.375rem;
  color: #3f3f3f;
  border-radius: 1rem;
  word-break: keep-all;
  background-color: #f5f5f5;
}
.re_visual_01 .item .txt::before {
  content: "";
  position: absolute;
  left: -0.625rem;
  bottom: 0.6875rem;
  display: block;
  width: 0.6875rem;
  height: 1.25rem;
  background: url(../img/re/bg_cmt_left.svg) no-repeat center;
  background-size: contain;
}
.re_visual_01 .item.right {
  padding-right: 3.25rem;
  text-align: right;
}
.re_visual_01 .item.right img {
  left: auto;
  right: -0.1875rem;
  bottom: 0.8125rem;
}
.re_visual_01 .item.right .txt {
  margin-left: 0.875rem;
  margin-right: 0.625rem;
  padding: 0.9375rem;
  font-weight: 600;
  line-height: 1.5rem;
  border: 0.0625rem solid #f60;
  word-break: break-all;
  background: #fff;
}
.re_visual_01 .item.right .txt::before {
  content: "";
  position: absolute;
  left: auto;
  right: -0.625rem;
  display: block;
  bottom: 1.1875rem;
  width: 0.625rem;
  height: 0.625rem;
  background: #fff url(../img/re/bg_cmt_right.svg) no-repeat left 0 bottom -0.0625rem/0.625rem auto;
}
@-webkit-keyframes popbox {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popbox {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.re_sec_box {
  position: relative;
  display: block;
  margin-top: 1rem;
  padding: 1.1875rem 1.4375rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  background-color: #fff;
}
.re_sec_box.gray {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}
.re_sec_box.link {
  padding-right: 2.5rem;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat right 0.6875rem center/1.5rem auto;
}
.re_sec_box .inner_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.re_sec_box .inner_top .tit {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3125rem;
  color: #000;
}
.re_sec_box .inner_top .tit p {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.re_sec_box img {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
}
.re_sec_box .img_circle {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  background-color: #f5f5f5;
}
.re_sec_box .img_circle img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0;
}
.re_sec_box .txt_1 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
}
.re_sec_box .txt_2 {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
}
.re_sec_box .txt_3 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #3f3f3f;
  text-align: center;
}
.re_sec_box .txt_4 {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
  text-align: center;
}
.re_sec_box .list_bullet {
  margin-top: 1.25rem;
}
.re_sec_box[play-by-scroll] {
  opacity: 0;
}
.re_sec_box[play-by-scroll].play {
  -webkit-animation-name: popbox;
  animation-name: popbox;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.user_review_swiper {
  position: relative;
  overflow: hidden;
  padding: 0 0.75rem;
  margin: 0 -1.5rem;
}
.user_review_swiper .swiper-wrapper {
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.user_review_swiper .swiper-wrapper .swiper-slide {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: auto !important;
}
.user_review_swiper .swiper-wrapper .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: calc(100% - 1.625rem);
  margin-top: 1.625rem;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  padding: 2rem 1.25rem 1.375rem;
  border-radius: 1rem;
  text-align: center;
  background-color: #fff;
}
.user_review_swiper .swiper-wrapper .item .user_img {
  display: block;
  width: 3rem;
  height: 3rem;
  margin: -3.625rem auto 0.625rem;
  border-radius: 1.5rem;
  background-color: #fbe9da;
  overflow: hidden;
}
.user_review_swiper .swiper-wrapper .item .user_img img {
  display: block;
  width: 100%;
}
.user_review_swiper .swiper-wrapper .item .icon_q {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: -3rem auto 0;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 2rem;
  color: #fff;
  text-align: center;
  border-radius: 1.5rem;
  background-color: #f60;
  overflow: hidden;
}
.user_review_swiper .swiper-wrapper .item .txt_1 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.user_review_swiper .swiper-wrapper .item .txt_2 {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.user_review_swiper .swiper-wrapper .item .txt_2::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0.3125rem;
  height: 1.125rem;
  margin: 0 0 0;
  background: url(../img/re/icon_q_left.svg) no-repeat center center;
  background-size: 0.3125rem auto;
}
.user_review_swiper .swiper-wrapper .item .txt_2::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0.3125rem;
  height: 1.125rem;
  margin: -0.5625rem 0 0;
  background: url(../img/re/icon_q_right.svg) no-repeat center center;
  background-size: 0.3125rem auto;
}
.user_review_swiper .swiper-wrapper .item .txt_3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.625rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3125rem;
  color: #202020;
}
.user_review_swiper .swiper-wrapper .item .list_bullet {
  margin-bottom: 0.625rem;
  text-align: left;
  word-break: keep-all;
}
.user_review_swiper .swiper-wrapper .item .line {
  display: block;
  height: 0.0625rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #f0f0f0;
}
.user_review_swiper .swiper-wrapper .item .answer {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 0.6875rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #666;
}
.user_review_swiper .swiper-pagination {
  margin-top: 1.5rem;
}
.user_review_swiper.c_1 .swiper-wrapper .item {
  background-color: #fff;
}
.re_update_box {
  margin-top: 3rem;
  padding: 1.5rem 1.25rem 0;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  overflow: hidden;
}
.re_update_box .txt_1 {
  display: inline-block;
  vertical-align: top;
  padding: 0 0.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.125rem;
  border-radius: 0.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
  background-color: #f60;
}
.re_update_box .txt_2 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #000;
}
.re_update_box .txt_3 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  margin-top: 1rem;
  font-weight: 600;
}
.re_update_box .txt_4 {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #3f3f3f;
  margin-top: 1rem;
  font-weight: 400;
  padding: 1rem 1.25rem;
  margin: 0.875rem -1.25rem 0;
  background: #f5f5f5;
  word-break: keep-all;
}
.re_update_box .txt_4 strong {
  font-weight: 600;
}
.cont_wrap .coupon_detail_acc {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.coupon_detail_acc {
  position: relative;
  padding-bottom: 1.5rem;
}
.coupon_detail_acc .slide_title {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
}
.coupon_detail_acc .slide_title .slide_trg {
  display: block;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center;
  width: 1.5rem;
  height: 1.5rem;
}
.coupon_detail_acc .slide_title .slide_trg.active {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.coupon_detail_acc .inner {
  display: none;
  background: #f5f5f5;
  padding: 2rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.coupon_detail_acc .inner .dv_line {
  background: #bababa;
  display: block;
  height: 0.0625rem;
  margin: 2rem 0;
}
.coupon_detail_acc.etc {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  padding-bottom: 0;
  background-color: #f5f5f5;
}
.coupon_detail_acc.etc .title_text {
  padding-bottom: 1rem;
}
.coupon_detail_acc.etc .inner {
  display: block;
  margin-top: 0;
  padding: 0 1.5rem 0 1.5rem;
}
.coupon_detail_acc.etc .inner .list_bullet {
  padding-bottom: 2rem;
}
.coupon_detail_acc.etc .inner .coupon_directions_swiper {
  padding-bottom: 2.5rem;
}
.coupon_detail_acc.etc .inner .coupon_directions_swiper + * {
  padding-top: 2rem;
  border-top: 0.0625rem solid #bababa;
}
.coupon_directions_swiper {
  overflow: hidden;
  padding: 0 0.75rem;
  margin: 0 -1.5rem;
}
.coupon_directions_swiper .swiper-slide {
  text-align: center;
  padding: 0 0.75rem;
}
.coupon_directions_swiper .swiper-slide img {
  display: block;
  width: 100%;
}
.coupon_directions_swiper .order_number {
  display: inline-block;
  vertical-align: top;
  height: 1.5rem;
  background: #3f3f3f;
  border-radius: 0.75rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 0.5rem;
}
.coupon_directions_swiper .txt_1 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 600;
  margin-bottom: 1rem;
}
.coupon_directions_swiper .txt_1.flex_type_line_2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 3rem;
}
.coupon_directions_swiper .swiper-pagination {
  margin-top: 1.5rem;
}
.icon_re_like {
  padding-left: 1.75rem;
}
.icon_re_like::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin: -0.1875rem 0.25rem -0.0625rem -1.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/re/icon_like.svg) no-repeat center;
  background-size: contain;
}
.hash_list {
  font-size: 0;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}
.hash_list .item {
  display: inline-block;
  vertical-align: top;
  border: 0.0625rem solid #edc0a1;
  color: #f60;
  font-size: 0.8125rem;
  line-height: 1.875rem;
  padding: 0 0.9375rem;
  height: 2rem;
  border-radius: 1rem;
  text-align: center;
  margin: 0 0.5rem 0.5rem 0;
}
.platform_info {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
  border-top: 0.0625rem solid #f0f0f0;
  color: #202020;
}
.platform_info .txt_1 {
  font-size: 0.75rem;
  line-height: 0.875rem;
  margin-bottom: 0.75rem;
}
.platform_info .txt_1 .hanwha {
  font-weight: 700;
}
.platform_info .txt_1 strong {
  font-weight: 600;
}
.platform_info .logo_area {
  margin-bottom: 2rem;
}
.platform_info .txt_2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.platform_info .txt_3 {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
  margin-top: 1rem;
}
.platform_info .link {
  display: inline-block;
  background: url(../img/icon_arrow_right_type4.svg) no-repeat right center;
  background-size: 1rem;
  padding-right: 1.25rem;
  margin-top: 1.1875rem;
}
.platform_info .link span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.375rem;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.ani_img_01 {
  margin-top: 2rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 64.22%;
  overflow: hidden;
}
.ani_img_01 img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
}
.ani_img_01 .img {
  width: 100%;
  left: 0;
  top: 0;
}
.ani_img_01 .img_1 {
  width: 41%;
  left: 45%;
  top: 33%;
}
.ani_img_01 .img_2 {
  width: 22%;
  left: 29.5%;
  top: 59.5%;
}
.ani_img_01 .img_3 {
  width: 22%;
  left: 12%;
  top: 47%;
}
.ani_img_01 .img_4 {
  width: 35%;
  left: 24.5%;
  top: 5%;
}
.ani_img_01 .glitter {
  display: block;
  position: absolute;
  background: url(../img/re/ani_img_01/img_glitter.svg) no-repeat;
  background-size: contain;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity 1s linear, -webkit-transform 1s linear;
  transition: opacity 1s linear, -webkit-transform 1s linear;
  transition: transform 1s linear, opacity 1s linear;
  transition: transform 1s linear, opacity 1s linear, -webkit-transform 1s linear;
}
.ani_img_01 .glitter:nth-of-type(1) {
  width: 5%;
  padding-top: 5%;
  left: 62%;
  top: 20%;
}
.ani_img_01 .glitter:nth-of-type(2) {
  width: 3%;
  padding-top: 3%;
  left: 21%;
  top: 33%;
}
.ani_img_01 .glitter:nth-of-type(3) {
  width: 4%;
  padding-top: 4%;
  left: 82%;
  top: 70%;
}
.ani_img_01.play img {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  opacity: 1;
}
.ani_img_01.play .img_1 {
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0;
  transition-delay: 0;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.ani_img_01.play .img_2 {
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-animation-duration: 2.8s;
  animation-duration: 2.8s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.ani_img_01.play .img_3 {
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-animation-duration: 3.6s;
  animation-duration: 3.6s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.ani_img_01.play .img_4 {
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-animation-duration: 3.4s;
  animation-duration: 3.4s;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.ani_img_01.play .glitter {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ani_img_01.play .glitter:nth-of-type(1) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.ani_img_01.play .glitter:nth-of-type(2) {
  -webkit-transition-delay: 1.7s;
  transition-delay: 1.7s;
}
.ani_img_01.play .glitter:nth-of-type(3) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.ani_img_02 {
  position: relative;
  padding-top: 64.2%;
}
.ani_img_02 .line {
  position: absolute;
  width: 91.74%;
  left: 6.1%;
  top: 18.57%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  opacity: 0;
}
.ani_img_02 .img_1 {
  position: absolute;
  width: 55%;
  left: 8.6%;
  top: 2.5%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
}
.ani_img_02 .img_2 {
  position: absolute;
  width: 55%;
  left: 36.4%;
  top: 32.38%;
  z-index: 1;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  opacity: 0;
}
.ani_img_02 .img_3 {
  position: absolute;
  width: 55%;
  left: 15.6%;
  top: 61.9%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
}
.ani_img_02 .icon_des {
  position: absolute;
  width: 6.1%;
  left: 81.65%;
  top: 75.23%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  opacity: 0;
}
.ani_img_02 .icon_1 {
  position: absolute;
  width: 11%;
  left: 5%;
  top: 15.71%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  opacity: 0;
}
.ani_img_02 .icon_2 {
  position: absolute;
  width: 13.45%;
  left: 80.42%;
  top: 30.95%;
  z-index: 1;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
  opacity: 0;
}
.ani_img_02 .icon_3 {
  position: absolute;
  width: 11%;
  left: 12%;
  top: 72%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
  opacity: 0;
}
.ani_img_02.play .line {
  opacity: 1;
}
.ani_img_02.play .img_1 {
  opacity: 1;
}
.ani_img_02.play .img_2 {
  opacity: 1;
}
.ani_img_02.play .img_3 {
  opacity: 1;
}
.ani_img_02.play .icon_des {
  opacity: 1;
}
.ani_img_02.play .icon_1 {
  opacity: 1;
}
.ani_img_02.play .icon_2 {
  opacity: 1;
}
.ani_img_02.play .icon_3 {
  opacity: 1;
}
.receipt_top {
  position: relative;
}
.receipt_top .cover_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 0.5rem);
  font-size: 0;
}
.receipt_top .cover_img img {
  -o-object-fit: fill;
  object-fit: fill;
  width: 100%;
  height: 100%;
}
.receipt_top .receipt_top_tab {
  margin-top: 1.5rem;
  padding: 0 2.75rem;
}
.receipt_top.ty1 .title {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #202020;
  text-align: center;
  word-break: keep-all;
}
.receipt_top.ty1 .receipt_top_search {
  padding: 0 2.75rem;
}
.receipt_top.ty2 .receipt_top_cont {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 7rem;
  margin-top: 2.5rem;
  padding: 0 1.5rem;
  text-align: center;
}
.receipt_top.ty2 .receipt_top_cont .title {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #202020;
  word-break: keep-all;
}
.receipt_top.ty2 .receipt_top_cont .info_cont {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.receipt_top.ty2 .receipt_top_cont .info_cont .info {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0.5rem;
}
.receipt_top.ty2 .receipt_top_cont .info_cont .info span {
  position: relative;
  margin-right: 0.8125rem;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #202020;
}
.receipt_top.ty2 .receipt_top_cont .info_cont .info span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  height: 0.75rem;
  border-left: 0.0625rem solid #666;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.receipt_top.ty2 .receipt_top_cont .info_cont .info span:last-child {
  margin-right: 0;
}
.receipt_top.ty2 .receipt_top_cont .info_cont .info span:last-child::after {
  content: none;
}
.receipt_top.ty2 .receipt_top_cont .info_cont > a {
  display: inline-block;
  padding: 0 0.75rem;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.875rem;
  color: #f60;
  border-radius: 3.125rem;
  border: 0.0625rem solid #f60;
  background-color: #fff;
  white-space: nowrap;
}
.receipt_detail_top {
  padding: 1.5rem;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.receipt_comp_top > .title {
  padding-top: 4rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  background: url(../img/re/bg_receipt_comp.svg) no-repeat center top/auto 2.5rem;
}
.receipt_comp_tip {
  margin-top: 1rem;
  padding: 1.25rem;
  text-align: center;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.receipt_comp_tip .txt1 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.receipt_comp_tip .txt1 em {
  font-weight: 600;
}
.receipt_comp_tip .txt2 {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
}
.cd_cont {
  position: relative;
  display: block;
  overflow: hidden;
}
.cd_cont_inner {
  display: block;
  position: relative;
  padding: 1rem;
  border-radius: 1rem;
  border: 0.0625rem solid #ffbb80;
  background-color: #fff4ed;
}
.cd_cont_line {
  position: relative;
  display: block;
  height: 0px;
  margin: 1.25rem -1.1875rem;
  border-bottom: 0.0625rem dashed #ffbb80;
}
.cd_cont_line::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.0625rem;
  height: 2.0625rem;
  background: #fff;
  border: 0.0625rem solid #ffbb80;
  top: -1rem;
  left: -1.1875rem;
  border-radius: 100%;
}
.cd_cont_line::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.0625rem;
  height: 2.0625rem;
  background: #fff;
  border: 0.0625rem solid #ffbb80;
  top: -1rem;
  right: -1.1875rem;
  border-radius: 100%;
}
.cd_cont .cd_in_cont_profile {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cd_cont .cd_in_cont_profile .in_cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.cd_cont .cd_in_cont_profile .r_side {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  padding-left: 0.625rem;
}
.cd_cont .cd_in_cont .name {
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.cd_cont .cd_in_cont .opts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.25rem 0;
  font-size: 0;
}
.cd_cont .cd_in_cont .opts > span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.8125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #888;
}
.cd_cont .cd_in_cont .opts > span strong {
  font-weight: 600;
  color: #202020;
}
.cd_cont .cd_in_cont .opts > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  height: 0.75rem;
  border-left: 0.0625rem solid #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd_cont .cd_in_cont .opts > span:last-child {
  margin-right: 0;
}
.cd_cont .cd_in_cont .opts > span:last-child::after {
  content: none;
}
.cd_cont .cd_in_cont .opts + .opts {
  margin-top: 0.375rem;
}
.cd_cont .cd_in_cont.ty1 {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: #fff;
}
.cd_cont .cd_in_cont.ty2 {
  padding: 0 0.5rem 0.5rem 0.5rem;
}
.cd_cont .cd_in_cont.ty3 {
  padding: 0.25rem 0.5rem 0 0.5rem;
}
.fa_point_list li {
  padding: 0.75rem 1.25rem 2rem;
}
.fa_point_list li + li {
  border-top: 0.0625rem solid #f0f0f0;
  padding-top: 2.75rem;
}
.fa_point_list li[play-by-scroll] {
  opacity: 0;
}
.fa_point_list li[play-by-scroll].play {
  -webkit-animation-name: popbox;
  animation-name: popbox;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.fa_point_list li .point {
  display: inline-block;
  vertical-align: top;
  padding: 0 0.5625rem;
  border-radius: 0.875rem;
  height: 1.75rem;
  line-height: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #3f3f3f;
  margin-bottom: 1rem;
}
.fa_point_list li .txt_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.fa_point_list li .txt_box .txt {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}
.fa_point_list li .txt_box .txt .line {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.fa_point_list li .txt_box .txt .line::after {
  content: "";
  display: block;
  height: 0.5625rem;
  background-color: #ffe8d6;
  margin: -0.75rem -0.0625rem 0;
}
.fa_point_list li .txt_box .img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 0.625rem;
  width: 4.5rem;
}
.fa_banner {
  display: block;
  padding: 1.5rem 8.4375rem 2.875rem 2rem;
  background: url(../img/re/img_event_s_01.svg) no-repeat right 0.5rem center/auto 100%;
  background-color: #f2ebec !important;
}
.fa_banner .txt_1 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.fa_banner .txt_2 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #000;
}
.fa_coming_soon {
  display: block;
  margin: 2.5rem 1.5rem 0;
  height: 3rem;
  line-height: 3rem;
  border-radius: 0.625rem;
  color: #888;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  background-color: #d9d9d9 !important;
}
.myplus_user_office {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #333;
  margin-bottom: 0.25rem;
}
.myplus_user_name {
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 700;
  margin-bottom: 1rem;
}
.myplus_link_bscard {
  display: block;
  position: relative;
  padding: 0.9375rem 3.0625rem 0.9375rem 3.9375rem;
  border: 0.0625rem solid #ececec;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #333;
  border-radius: 1rem;
  background: url(../img/icon_business_card.svg) no-repeat left 0.9375rem top 0.9375rem/2rem auto;
}
.myplus_link_bscard::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  margin-top: -0.5rem;
  width: 1rem;
  height: 1rem;
  background: url(../img/icon_arrow_right_type4.svg) no-repeat center/1rem;
}
.myplus_link_bscard strong {
  display: block;
  font-weight: 600;
  color: #000;
}
.myplus_text_1 {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.myplus_text_2 {
  padding: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #9e9e9e;
  text-align: center;
  border-radius: 1rem;
  background-color: #fff;
}
.myplus_text_2 .icon_confirm_gray {
  vertical-align: top;
  margin: -0.125rem 0.5rem -0.125rem 0;
}
.myplus_card {
  display: block;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background-color: #fff;
}
.myplus_card + .myplus_card {
  margin-top: 1rem;
}
.myplus_card .notice_text {
  margin: 0;
}
.myplus_card .notice_text + .notice_text {
  margin-top: 1rem;
}
.myplus_card.ty_1 {
  text-align: center;
  padding: 2rem 1.5rem;
}
.myplus_card.ty_1 .icon_confirm {
  vertical-align: middle;
}
.myplus_card.ty_1 .btn.s_3.c_9:disabled {
  background-color: #eeeef0;
  color: #bababa;
}
.myplus_card.ty_1 .btn.s_3.c_9:disabled::after {
  border-color: #eeeef0;
}
.myplus_card .top_area {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.0625rem solid #f0f0f0;
}
.myplus_card .top_area_head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.myplus_card .top_area_msg {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #666;
}
.myplus_card .top_area_msg + .top_area_msg {
  margin-top: 0.5rem;
}
.myplus_card .top_area .title {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #202020;
}
.myplus_card .top_area .badge_cont {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: 0.625rem;
}
.myplus_card .btn_area {
  margin-top: 1rem;
}
.myplus_card .btn_area > a,
.myplus_card .btn_area button {
  margin-left: 0.5rem;
}
.myplus_card .btn_area > a:first-child,
.myplus_card .btn_area button:first-child {
  margin-left: 0;
}
.myplus_card .btn_area .icon_check,
.myplus_card .btn_area .icon_edit {
  position: relative;
  top: -0.125rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.myplus_card .text_1 {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.myplus_card .text_1 + .text_2 {
  margin-top: 0.5rem;
}
.myplus_card .text_2 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.myplus_card .text_3 {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #f60;
}
.myplus_card .text_4 {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #666;
}
.myplus_card .text_5 {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #202020;
}
.myplus_card * + .text_5 {
  margin-top: 0.5rem;
}
.match_title {
  padding-bottom: 1rem;
}
.match_title > .date {
  display: inline-block;
  vertical-align: bottom;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.match_title > .sub_text {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin-left: 0.5rem;
  padding-left: 0.6875rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #202020;
}
.match_title > .sub_text::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 0.1875rem;
  border-bottom: 0.1875rem solid #202020;
  border-radius: 50%;
}
.my_fp {
  padding-top: 1.25rem;
}
.my_fp .fp_info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.my_fp .fp_info .cont {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding-right: 0.625rem;
}
.my_fp .fp_info .cont .text1 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #333;
}
.my_fp .fp_info .cont .text2 {
  padding-top: 0.125rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #202020;
}
.my_fp .fp_info .thumb {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3rem;
  font-size: 0;
  text-align: center;
}
.my_fp .fp_info .thumb img {
  max-width: 100%;
}
.my_fp .fp_info + .fp_sub_text {
  margin-top: 1rem;
}
.my_fp .my_business_card {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background-color: #fff4ed;
  border: 0.0625rem solid #ffbb80;
}
.my_fp .my_business_card > a {
  display: block;
  padding-right: 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  background: url(../img/icon_arrow_right_type3.svg) no-repeat right center/1rem auto;
}
.my_fp .my_business_card .card_menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1rem 0 0.5rem;
}
.my_fp .my_business_card .card_menu > .menu {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 3.5rem;
  background-position: center top;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  background-color: #fff4ed;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  color: #f60;
  text-align: center;
}
.my_fp .my_business_card .card_menu > .menu.ty1 {
  background-image: url(../img/myplus/icon_name_card01.png);
}
.my_fp .my_business_card .card_menu > .menu.ty2 {
  background-image: url(../img/myplus/icon_name_card02.png);
}
.my_fp .my_business_card .card_menu > .menu.ty3 {
  background-image: url(../img/myplus/icon_name_card03.png);
}
.my_fp .my_business_card .card_menu > .menu + .menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.0625rem;
  height: 3.5rem;
  background: #ffe9d4;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.my_fp .fp_sub_text li {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.125rem;
}
.my_fp .fp_sub_text .ic_word {
  padding-left: 1.375rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.25rem auto;
}
.my_fp .fp_sub_text .ic_word.ty1 {
  background-image: url(../img/myplus/icon_openbook.svg);
}
.my_fp .fp_sub_text .ic_word.ty2 {
  background-image: url(../img/myplus/icon_heart.svg);
}
.myplus_points {
  padding: 1.5rem 0;
}
.myplus_points_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.myplus_points_wrap .cont {
  width: 50%;
  padding: 0 0.625rem;
  text-align: center;
  word-break: break-all;
}
.myplus_points_wrap .cont + .cont {
  border-left: 0.0625rem solid #ececec;
}
.myplus_points_wrap .cont .tit {
  padding-bottom: 0.5rem;
}
.myplus_points_wrap .cont .tit .tit_text {
  display: inline-block;
  padding-left: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #202020;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5rem auto;
}
.myplus_points_wrap .cont .tit .tit_text.ty1 {
  background-image: url(../img/icon_point_p03.svg);
}
.myplus_points_wrap .cont .tit .tit_text.ty2 {
  background-image: url(../img/icon_coupon.svg);
}
.myplus_points_wrap .cont .link {
  display: inline-block;
  padding-right: 1.25rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.myplus_points .btn_area {
  margin-top: 1.5rem;
}
.myplus_points .myplus_points_link {
  padding: 0.5rem 0;
  text-align: center;
  border-radius: 1rem;
  background-color: #f5f5f5;
}
.myplus_points .myplus_points_link > span {
  position: relative;
  display: inline-block;
  padding: 0 1.25rem 0 2.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 2rem;
  background: url(../img/myplus/icon_cart.svg) no-repeat left center/2rem auto,
    url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.mpm_cont_wrap .mpm_cont {
  color: #202020;
  border-bottom: 0.5rem solid #ececec;
}
.mpm_cont_wrap .mpm_cont.ty1 {
  padding: 2.5rem 1.5rem;
  background-color: #f5f5f5;
}
.mpm_cont_wrap .mpm_cont.ty2 {
  padding: 0.5rem 1.5rem;
}
.mpm_cont_wrap .mpm_cont_head {
  padding-bottom: 1.5rem;
}
.mpm_cont_wrap .mpm_cont_head .desc {
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.mpm_cont_wrap .mpm_cont_head .desc em {
  color: red;
}
.mpm_cont_wrap .g_msg {
  padding: 1.5rem 0;
  text-align: center;
}
.mpm_cont_wrap .g_msg .text {
  position: relative;
  display: inline-block;
  padding-left: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #f60;
}
.mpm_cont_wrap .g_msg .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 1.25rem;
  background: url(../img/icon_list_bullet02.svg) no-repeat center center/0.5rem auto;
}
.mpm_cont_wrap .g_msg .text em {
  font-weight: 600;
}
.reward_list .item {
  padding: 1.25rem;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
}
.reward_list .item + .item {
  margin-top: 1rem;
}
.reward_link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1.5rem;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat right center/1.5rem auto;
}
.reward_link .thumb {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.5rem;
  font-size: 0;
}
.reward_link .thumb img {
  width: 100%;
}
.reward_link .text_box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 0.625rem 0 0.5rem;
  color: #202020;
}
.reward_link .text_box .tit {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125rem;
}
.reward_link .text_box .text {
  padding-top: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.reward_link .r_side {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #f60;
}
.mission_step {
  margin-top: 1.5rem;
}
.steps_wrap {
  position: relative;
  padding-left: 0.5rem;
}
.steps_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.375rem;
  border-radius: 3.125rem;
  background-color: #ececec;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.steps_wrap .inner {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2rem;
}
.steps_wrap .inner .steps {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  height: 0.375rem;
}
.steps_wrap .inner .steps::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.5rem;
  height: 0.625rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0.5rem auto;
  background-image: url(../img/myplus/icon_progress_dot.svg);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.steps_wrap .step {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 2rem;
  background-color: #fff;
}
.steps_wrap .step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5rem;
  width: calc(100% + 0.5rem);
  height: 0.375rem;
  border-radius: 3.125rem 0 0 3.125rem;
  background-color: #f60;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.steps_wrap .step .ici {
  position: absolute;
  top: 0;
  right: -0.75rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem auto;
}
.steps_wrap .step .ici::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  right: 0.6875rem;
  border-bottom: 0.375rem solid #ffe9d4;
  border-left: 0.3125rem solid rgba(0, 0, 0, 0);
  border-right: 0.3125rem solid rgba(0, 0, 0, 0);
}
.steps_wrap.none .step {
  left: 0;
  width: 2rem;
}
.steps_wrap.none .step::before {
  content: none;
}
.steps_wrap.none .step .ici {
  right: 0;
  background-image: url(../img/myplus/icon_progress_step_none.svg);
}
.steps_wrap.none .step .ici::after {
  right: 0.0625rem;
}
.steps_wrap.none .inner .steps::after {
  background-image: url(../img/myplus/icon_progress_dot_none.svg);
}
.steps_wrap.g0 .step {
  left: 0;
  width: 2rem;
}
.steps_wrap.g0 .step::before {
  content: none;
}
.steps_wrap.g0 .step .ici {
  right: 0;
  background-image: url(../img/myplus/icon_progress_step0.svg);
}
.steps_wrap.g0 .step .ici::after {
  right: 0.0625rem;
}
.steps_wrap.g1 .step {
  width: calc((100% - 0.5rem) / 6 * 1);
}
.steps_wrap.g1 .step .ici {
  background-image: url(../img/myplus/icon_progress_step1.svg);
}
.steps_wrap.g2 .step {
  width: calc((100% - 0.5rem) / 6 * 2);
}
.steps_wrap.g2 .step .ici {
  background-image: url(../img/myplus/icon_progress_step2.svg);
}
.steps_wrap.g3 .step {
  width: calc((100% - 0.5rem) / 6 * 3);
}
.steps_wrap.g3 .step .ici {
  background-image: url(../img/myplus/icon_progress_step3.svg);
}
.steps_wrap.g4 .step {
  width: calc((100% - 0.5rem) / 6 * 4);
}
.steps_wrap.g4 .step .ici {
  background-image: url(../img/myplus/icon_progress_step4.svg);
}
.steps_wrap.g5 .step {
  width: calc((100% - 0.5rem) / 6 * 5);
}
.steps_wrap.g5 .step .ici {
  background-image: url(../img/myplus/icon_progress_step5.svg);
}
.steps_wrap.g6 .step {
  width: calc((100% - 0.5rem) / 6 * 6);
}
.steps_wrap.g6 .step .ici {
  right: 0;
  background-image: url(../img/myplus/icon_progress_step6.svg);
}
.steps_wrap.g6 .step .ici::after {
  right: 1.3125rem;
}
.steps_wrap.complete {
  padding-left: 0;
  text-align: center;
}
.steps_wrap.complete::before {
  content: none;
}
.steps_wrap.complete .thumb {
  position: relative;
  display: inline-block;
  width: 8.75rem;
  font-size: 0;
}
.steps_wrap.complete .thumb img {
  max-width: 100%;
}
.steps_wrap.complete .thumb .mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.steps_wrap.complete .thumb .mark img {
  position: relative;
  z-index: 1;
}
.steps_wrap.complete .thumb .mark .word {
  display: block;
  width: 100%;
  margin-top: -0.1875rem;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #fff;
  text-align: center;
  line-height: 1.5rem;
  background-color: #3f3f3f;
  border-radius: 6.25rem;
}
.ms_msg {
  position: relative;
  padding: 0.4375rem 0.4375rem;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  color: #202020;
  text-align: center;
  border-radius: 6.25rem;
  background-color: #ffe9d4;
}
.steps_wrap + .ms_msg {
  margin-top: 0.5625rem;
}
.steps_wrap.complete + .ms_msg {
  margin-top: 0.3125rem;
}
.steps_wrap.complete + .ms_msg::before {
  content: "";
  position: absolute;
  top: -0.3125rem;
  left: 50%;
  border-bottom: 0.375rem solid #ffe9d4;
  border-left: 0.3125rem solid rgba(0, 0, 0, 0);
  border-right: 0.3125rem solid rgba(0, 0, 0, 0);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@-webkit-keyframes pop_balloon {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pop_balloon {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.loading_slide {
  position: relative;
}
.loading_slide .txt_1 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: -0.0625rem;
  color: #202020;
  text-align: center;
}
.loading_slide .img_box {
  display: block;
  position: relative;
  width: 9rem;
  padding-top: 9rem;
  margin: 2rem auto 4rem;
}
.loading_slide .img_box .balloon {
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 4.375rem;
  height: 4.375rem;
  background: url(../img/ani/loading_slide/balloon.svg) no-repeat center/contain;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.loading_slide .img_box.ty_1 {
  background: url(../img/ani/loading_slide/01/phone.svg) no-repeat right 0.3125rem bottom 0.3125rem/7.9375rem auto;
}
.loading_slide .img_box.ty_1 .graph {
  display: block;
  position: absolute;
  width: 2.875rem;
  height: 2.6875rem;
  left: 50%;
  top: 50%;
  margin: -1.3125rem 0 0 -1.4375rem;
}
.loading_slide .img_box.ty_1 .graph::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/ani/loading_slide/01/graph.svg) no-repeat center/contain;
  opacity: 0;
}
.loading_slide .img_box.ty_1 .bar_1 {
  display: block;
  position: absolute;
  left: 0.25rem;
  bottom: 0.5rem;
  width: 0.5625rem;
  height: 0;
  background: url(../img/ani/loading_slide/01/bar_1.svg) no-repeat left top/100% auto;
}
.loading_slide .img_box.ty_1 .bar_2 {
  display: block;
  position: absolute;
  left: 1rem;
  bottom: 0.5rem;
  width: 0.5625rem;
  height: 0;
  background: url(../img/ani/loading_slide/01/bar_2.svg) no-repeat left top/100% auto;
}
.loading_slide .img_box.ty_1 .bar_3 {
  display: block;
  position: absolute;
  left: 1.4375rem;
  bottom: 0.5rem;
  width: 1.1875rem;
  height: 0;
  background: url(../img/ani/loading_slide/01/bar_3.svg) no-repeat left top/100% auto;
}
.loading_slide .img_box.ty_2 {
  background: url(../img/ani/loading_slide/02/hands.svg) no-repeat right 0.53125rem bottom 0.0625rem/7.375rem auto;
}
.loading_slide .img_box.ty_2 .board {
  display: block;
  position: absolute;
  left: 1.1875rem;
  top: 1.125rem;
  background: #fff;
  width: 2rem;
  height: 2.5rem;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  border-radius: 0.3125rem;
}
.loading_slide .img_box.ty_2 .board::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.5rem;
  top: -0.1875rem;
  width: 1rem;
  height: 0.375rem;
  border-radius: 0.1875rem;
  background-color: #ffbb80;
}
.loading_slide .img_box.ty_2 .bar_1 {
  display: block;
  position: absolute;
  left: 0.1875rem;
  bottom: 0.5rem;
  width: 0.4375rem;
  height: 0;
  background: url(../img/ani/loading_slide/02/bar_1.svg) no-repeat left top/100% auto;
}
.loading_slide .img_box.ty_2 .bar_2 {
  display: block;
  position: absolute;
  left: 0.75rem;
  bottom: 0.5rem;
  width: 0.4375rem;
  height: 0;
  background: url(../img/ani/loading_slide/02/bar_2.svg) no-repeat left top/100% auto;
}
.loading_slide .img_box.ty_2 .bar_3 {
  display: block;
  position: absolute;
  left: 1.3125rem;
  bottom: 0.5rem;
  width: 0.4375rem;
  height: 0;
  background: url(../img/ani/loading_slide/02/bar_3.svg) no-repeat left top/100% auto;
}
.loading_slide .img_box.ty_3 {
  background: url(../img/ani/loading_slide/03/report.svg) no-repeat right 0.3125rem bottom 0.3125rem/5.9375rem auto;
}
.loading_slide .img_box.ty_3 .airplane {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.loading_slide .img_box.ty_3 .airplane::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5625rem;
  height: 2.4375rem;
  left: 1rem;
  top: 1.0625rem;
  background: url(../img/ani/loading_slide/03/airplane.svg) no-repeat center/contain;
  -webkit-transform: translate(5rem, 5rem);
  transform: translate(5rem, 5rem);
}
.swiper-slide-active .loading_slide .img_box .balloon {
  -webkit-animation: pop_balloon 1 1s ease forwards;
  animation: pop_balloon 1 1s ease forwards;
}
.swiper-slide-active .loading_slide .img_box.ty_1 .graph::before {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.swiper-slide-active .loading_slide .img_box.ty_1 .bar_1 {
  height: 0.6875rem;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.swiper-slide-active .loading_slide .img_box.ty_1 .bar_2 {
  height: 1.25rem;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.swiper-slide-active .loading_slide .img_box.ty_1 .bar_3 {
  height: 2.1875rem;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.swiper-slide-active .loading_slide .img_box.ty_2 .board {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.swiper-slide-active .loading_slide .img_box.ty_2 .bar_1 {
  height: 0.625rem;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.swiper-slide-active .loading_slide .img_box.ty_2 .bar_2 {
  height: 0.9375rem;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.swiper-slide-active .loading_slide .img_box.ty_2 .bar_3 {
  height: 1.25rem;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.swiper-slide-active .loading_slide .img_box.ty_3 .airplane::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.loading_text {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
  text-align: center;
  margin: 2.5rem 0 1.875rem;
}
.loading_text .loading_circle {
  margin-left: 0.625rem;
  vertical-align: top;
}
.loading_circle {
  display: inline-block;
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #ececec;
  border-radius: 100%;
  -webkit-animation: progressCircle infinite 1s linear;
  animation: progressCircle infinite 1s linear;
}
.loading_circle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.0625rem;
  width: 0.125rem;
  height: 0.125rem;
  border-radius: 100%;
  background-color: #f60;
}
.loading_circle::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  border-radius: 100%;
  left: 0.125rem;
  top: 0.125rem;
  background-color: #fff;
}
.loading_circle > .circle {
  clip: rect(0, 0.6875rem, 0.6875rem, 0);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #f60;
}
.loading_circle > .circle > .block {
  clip: rect(0, 0.6875rem, 0.6875rem, 0);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #ececec;
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
}
.loading_circle > .circle > .block::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.0625rem;
  width: 0.125rem;
  height: 0.125rem;
  border-radius: 100%;
  background-color: #f60;
}
.img_text_box {
  text-align: center;
}
.img_text_box > img {
  display: block;
  width: 6rem;
  margin: 4rem auto 2rem;
}
.img_text_box .text_1 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.img_text_box .text_1 .loading_circle {
  display: inline-block;
  vertical-align: top;
}
.img_text_box .text_2 {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #666;
  margin-top: 1rem;
}
.user_card_list > .item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.user_card_list > .item + .item {
  margin-top: 1rem;
}
.user_card_list > .item > .info {
  display: block;
  z-index: 1;
  padding: 1.1875rem 1.25rem;
  border: 0.0625rem solid #f0f0f0;
  background-color: #fff;
  border-radius: 1rem;
}
.user_card_list > .item > .info .card_link {
  display: block;
}
.user_card_list > .item > .info .card_link .name {
  display: inline-block;
  padding-right: 1.25rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem auto;
}
.user_card_list > .item > .info .name {
  font-size: 1rem;
  font-weight: 600;
  color: #202020;
  line-height: 1.25rem;
}
.user_card_list > .item > .info .opts {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 0.25rem 0;
  margin-top: 0.5rem;
  font-size: 0;
}
.user_card_list > .item > .info .opts > span {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-right: 0.8125rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #888;
}
.user_card_list > .item > .info .opts > span strong {
  font-weight: 600;
  color: #202020;
}
.user_card_list > .item > .info .opts > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  height: 0.75rem;
  border-left: 0.0625rem solid #d9d9d9;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.user_card_list > .item > .info .opts > span:last-child {
  margin-right: 0;
}
.user_card_list > .item > .info .opts > span:last-child::after {
  content: none;
}
.user_card_list > .item > .info .opts + .opts {
  margin-top: 0.375rem;
}
.user_card_list > .item > .info .msg_text {
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #202020;
}
.user_card_list > .item > .check {
  position: absolute;
  width: 100%;
  height: 100%;
}
.user_card_list > .item > .check ~ .info {
  padding-right: 3.25rem;
}
.user_card_list > .item > .check i {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.user_card_list > .item > .check i::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  margin-top: -0.75rem;
  background-position: center;
  background-size: 0.875rem auto;
  background-repeat: no-repeat;
  background-image: url(../img/icon_check_type2.svg);
}
.user_card_list > .item > .check input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.user_card_list > .item > .check input:checked + i {
  -webkit-box-shadow: 0 0 0 0.0625rem inset #f60;
  box-shadow: 0 0 0 0.0625rem inset #f60;
}
.user_card_list > .item > .check input:checked + i::after {
  background-image: url(../img/icon_check_type3.svg);
}
.user_card_list > .item > .check input:disabled + i {
  -webkit-box-shadow: 0 0 0 0.0625rem inset #f0f0f0;
  box-shadow: 0 0 0 0.0625rem inset #f0f0f0;
  background-color: rgba(255, 255, 255, 0.65);
}
.user_card_list > .item > .user_card_del {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 2.125rem;
  height: 2.125rem;
  overflow: hidden;
  text-indent: -624.9375rem;
  background: url(../img/icon_close_24_ty2.svg) no-repeat center center/1.5rem auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.user_card_list > .item.etc_ty1 > .check {
  position: absolute;
  width: 100%;
  height: 100%;
}
.user_card_list > .item.etc_ty1 > .check ~ .info {
  padding-right: 4rem;
}
.user_card_list > .item.etc_ty1 > .check i::after {
  content: none;
}
.user_card_list > .item.etc_ty1 > .check input:checked + i::after {
  content: none;
}
.user_card_list > .item.etc_ty2 {
  -webkit-box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
}
.user_card_list > .item.etc_ty2 > .btn {
  position: absolute;
  width: 4.75rem;
  right: 1.25rem;
  top: 50%;
  margin-top: -1.25rem;
}
.user_card_list > .item.etc_ty2 > .info {
  padding-right: 6.625rem;
}
.cont_wrap > .greeting_card_select {
  margin-top: -2rem;
}
.greeting_card_select {
  text-align: center;
  background-color: #f5f5f5;
  padding-top: 1.5rem;
  margin: 0 -1.5rem;
}
.greeting_card_select .title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #202020;
  font-weight: 600;
  margin-bottom: 1rem;
}
.greeting_card_select .selected .tag {
  display: inline-block;
  vertical-align: top;
  font-size: 0.875rem;
  color: #fff;
  font-weight: 500;
  padding: 0 0.5rem;
  height: 1.625rem;
  line-height: 1.625rem;
  border-radius: 0.8125rem;
  background-color: #000;
  margin-bottom: 1rem;
}
.greeting_card_select .selected .img {
  display: block;
  position: relative;
}
.greeting_card_select .selected .img::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
}
.greeting_card_select .selected .img img {
  display: block;
  position: relative;
  width: calc(100% - 4rem);
  border-radius: 1rem;
  -webkit-box-shadow: 0 0.5rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.5rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}
.greeting_card_select .list {
  background-color: #fff;
  overflow-y: hidden;
  overflow-x: auto;
  font-size: 0;
  white-space: nowrap;
  padding-top: 1.75rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.greeting_card_select .list::-webkit-scrollbar {
  display: none;
}
.greeting_card_select .list label {
  display: inline-block;
  width: 4.375rem;
  position: relative;
  vertical-align: top;
  margin-left: 1rem;
  padding-bottom: 2rem;
}
.greeting_card_select .list label:first-child {
  margin-left: 1.5rem;
}
.greeting_card_select .list label:last-child {
  margin-right: 1.5rem;
}
.greeting_card_select .list label i {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #d9d9d9 url(../img/icon_check_type1.svg) no-repeat center center/0.875rem auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.greeting_card_select .list label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.greeting_card_select .list label input:checked ~ i {
  border-color: #fe7637;
  background: #fe7637 url(../img/icon_check_type1.svg) no-repeat center center/0.875rem auto;
  -webkit-transform: translateY(-0.75rem);
  transform: translateY(-0.75rem);
}
.greeting_card_select .list label input:checked ~ img {
  -webkit-transform: translateY(-0.75rem);
  transform: translateY(-0.75rem);
}
.greeting_card_select .list label input:disabled ~ i {
  background-color: #bdbdbd;
  opacity: 0.3;
}
.greeting_card_select .list label input:checked:disabled ~ i {
  opacity: 1;
  border-color: #ffd2ab;
  background-color: #ffd2ab;
}
.greeting_card_select .list label img {
  display: block;
  border-radius: 0.5rem;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.question_start .stepper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.question_start .stepper > li {
  width: 0.5rem;
  height: 0.5rem;
  overflow: hidden;
  border-radius: 0.25rem;
  background-color: #bababa;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.5rem;
  font-weight: 700;
  text-indent: -624.9375rem;
}
.question_start .stepper > li.complete {
  background-color: #3f3f3f;
}
.question_start .stepper > li.active {
  padding: 0 0.5rem;
  height: 1.5rem;
  text-align: center;
  width: auto;
  background-color: #3f3f3f;
  border-radius: 0.75rem;
  text-indent: 0;
}
.question_start .title {
  font-size: 1.75rem;
  line-height: 2.625rem;
  color: #202020;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
}
.question_start .text {
  font-size: 1rem;
  line-height: 1.5rem;
  min-height: 4.5rem;
  text-align: center;
  color: #666;
}
.question_start .img {
  margin-top: 2rem;
  display: block;
}
.question_start .img img {
  display: block;
  width: 100%;
}
.step_title {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.question_step_bar {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.question_step_bar .bar_wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  overflow: hidden;
  height: 0.25rem;
  background-color: #ececec;
  border-radius: 0.125rem;
}
.question_step_bar .bar_wrap > .bar {
  display: block;
  height: 0.25rem;
  margin: 0 auto 0 0;
  background-color: #f60;
  border-radius: 0.125rem;
}
.question_step_bar .count {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 1rem;
  line-height: 1.375rem;
  white-space: nowrap;
  font-weight: 600;
  color: #9e9e9e;
  text-align: right;
  min-width: 2rem;
}
.question_wrap .question {
  position: relative;
  padding-left: 1.625rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #202020;
  margin-bottom: 2rem;
}
.question_wrap .question::before {
  content: "Q.";
  display: block;
  position: absolute;
  width: 1.625rem;
  left: 0;
  top: 0;
}
.question_wrap .question i {
  font-size: 1rem;
}
.question_wrap .question .sub {
  display: block;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #666;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-left: -1.625rem;
}
.question_wrap .answer_list li {
  position: relative;
  margin-top: 0.5rem;
}
.question_wrap .answer_list li:first-child {
  margin-top: 0;
}
.question_wrap .answer_list li label {
  display: block;
}
.question_wrap .answer_list li label > span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border: 0.0625rem solid #f0f0f0;
  gap: 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 600;
}
.question_wrap .answer_list li label > span img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3rem;
  height: 3rem;
}
.question_wrap .answer_list li label > span .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.question_wrap .answer_list li label > span .text i {
  display: block;
  word-break: keep-all;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
  font-weight: 400;
}
.question_wrap .answer_list li label > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.question_wrap .answer_list li label > input:checked + span {
  border-color: #f60;
  background-color: #fff4ed;
}
.question_wrap .answer_list .dept2 {
  margin-top: 0.5rem;
}
.question_wrap .answer_list .dept2 label > span {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-color: #f5f5f5;
  background-color: #f5f5f5;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.question_wrap .answer_list .dept2 label > input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.question_wrap .answer_list .dept2 label > input:checked + span {
  border-color: #f60;
  background-color: #fff;
}
.question_wrap .answer_list.col3 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.question_wrap .answer_list.col3 li {
  width: calc(33.33% - 0.33333rem);
  margin-top: 0;
}
.question_wrap .answer_list.col3 li label {
  height: 100%;
}
.question_wrap .answer_list.col3 li label > span {
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 0.375rem;
}
.question_wrap .answer_list.col3 li label > span .text {
  font-size: 0.9375rem;
  line-height: 1.125rem;
  text-align: center;
}
.question_wrap .answer_list.col3 li label > span .text i {
  font-size: 0.75rem;
}
.question_wrap .answer_list.col3 li label > span img {
  width: 2.5rem;
  height: 2.5rem;
}
.question_wrap .tip {
  margin-top: 2rem;
}
.question_wrap .tip .title {
  font-size: 0.875rem;
  line-height: 1rem;
  font-weight: 600;
  color: #202020;
  padding-left: 1.25rem;
  background: url(../img/question/icon_light_24.svg) no-repeat left top/1rem;
}
.question_wrap .tip .list li {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
  padding-left: 0.75rem;
  text-indent: -0.75rem;
}
.question_wrap .tip .list li::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0.125rem;
  height: 0.125rem;
  background-color: #666;
  margin: 0.4375rem 0.4375rem 0 0.1875rem;
}
.question_wrap .slide_wrap .slide_title {
  margin-top: 2.5rem;
  display: block;
  position: relative;
}
.question_wrap .slide_wrap .slide_title .slide_trg {
  display: block;
  position: relative;
  padding: 0 1.5rem 0 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.375rem;
  text-align: left;
  padding: 0.5625rem 0;
  border-bottom: 0.0625rem solid #ececec;
}
.question_wrap .slide_wrap .slide_title .slide_trg::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center/contain;
}
.question_wrap .slide_wrap .slide_title .slide_trg.active::after {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.question_wrap .slide_wrap .slide_cont .inner {
  display: none;
  padding: 1.25rem;
  background-color: #f5f5f5;
}
.question_wrap .slide_wrap .list li {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
  padding-left: 0.75rem;
  text-indent: -0.875rem;
}
.question_wrap .slide_wrap .list li:first-child {
  margin-top: 0;
}
.question_wrap .slide_wrap .list li::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0.125rem;
  height: 0.125rem;
  background-color: #666;
  margin: 0.4375rem 0.4375rem 0 0.1875rem;
}
.question_wrap .input_height_weight {
  position: relative;
  margin: 3rem 0;
}
.question_wrap .input_height_weight > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 1.5rem 0 0 0;
}
.question_wrap .input_height_weight > div input {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding: 0.125rem 3.125rem 0.0625rem 1rem;
  border-bottom: 0.0625rem solid #d9d9d9;
  height: 3.75rem;
  line-height: 3.5rem;
  overflow: hidden;
  font-size: 1.25rem;
  font-weight: 600;
  color: #202020;
}
.question_wrap .input_height_weight > div input:focus {
  padding-bottom: 0;
  border-bottom: 0.125rem solid #f60;
}
.question_wrap .input_height_weight .label {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 1rem;
  line-height: 3rem;
  padding-left: 4rem;
  width: 7rem;
  margin-right: 1rem;
  background-repeat: no-repeat;
  background-size: 3rem auto;
  background-position: left center;
}
.question_wrap .input_height_weight .label.height {
  background-image: url(../img/question/icon_height.svg);
}
.question_wrap .input_height_weight .label.weight {
  background-image: url(../img/question/icon_weight.svg);
}
.question_wrap .input_height_weight .unit {
  position: absolute;
  top: 0;
  right: 2.5rem;
  height: 3.75rem;
  line-height: 3.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #202020;
  width: 2.5rem;
  margin-right: -2.5rem;
}
.alarm_list .date_hr {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
  text-align: center;
  margin-top: 2rem;
}
.alarm_list .date_hr:first-child {
  margin-top: 0;
}
.alarm_list .item {
  margin-top: 1rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.5rem;
  color: #202020;
}
.alarm_list .item .img_box {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.alarm_list .item .img_box img {
  width: 1.25rem;
}
.alarm_list .item .text_box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding: 1rem 1.25rem 0;
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: #fff;
}
.alarm_list .item .text_box .category {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.125rem;
  margin-bottom: 0.5rem;
}
.alarm_list .item .text_box .category .date {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #9e9e9e;
  font-weight: 400;
}
.alarm_list .item .text_box .category .date i {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  text-indent: -62.4375rem;
  background-color: #f60;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 100%;
  margin-left: 0.125rem;
}
.alarm_list .item .text_box .title {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  margin-bottom: 1rem;
}
.alarm_list .item .text_box .link {
  display: block;
  text-align: center;
  padding: 0.75rem 1.25rem;
  line-height: 1rem;
  font-size: 0.875rem;
  color: #666;
  border-top: 0.0625rem solid #f0f0f0;
  margin: 0 -1.25rem;
}
.alarm_list .item .text_box .link::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat center/contain;
  margin-left: 0.125rem;
}
.health_check_result_list .item + .item {
  margin-top: -0.0625rem;
}
.health_check_result_list .item .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 3.875rem;
  padding: 0 1.5rem;
  border-top: 0.0625rem solid #ececec;
  border-bottom: 0.0625rem solid #ececec;
  color: #202020;
  background-color: #fff;
}
.health_check_result_list .item .top img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}
.health_check_result_list .item .top .tit {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.health_check_result_list .item .top em {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 0.875rem;
  line-height: 1.375rem;
  position: relative;
  text-align: right;
  font-weight: 500;
  padding-left: 1.125rem;
}
.health_check_result_list .item .top em::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.3125rem;
  top: 50%;
  margin-top: -0.3125rem;
}
.health_check_result_list .item .top em.bad::before {
  background-color: #ff4d42;
}
.health_check_result_list .item .top em.good::before {
  background-color: #4584ff;
}
.health_check_result_list .item .top em.normal::before {
  background-color: #61d65e;
}
.health_check_result_list .item .top button {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0 0 1rem;
  padding: 0;
  background: rgba(0, 0, 0, 0);
}
.health_check_result_list .item .top button::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-transform: rotateZ(135deg);
  transform: rotateZ(135deg);
  border-right: solid 0.125rem #3f3f3f;
  border-top: solid 0.125rem #3f3f3f;
  margin-top: -0.1875rem;
}
.health_check_result_list .item .top button::after {
  content: "";
  position: absolute;
  top: -1.0625rem;
  right: -1.5rem;
  width: 100vw;
  height: 3.625rem;
}
.health_check_result_list .item .top button.active {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.health_check_result_list .item .cont {
  display: none;
}
.health_check_result_list .item .cont > .inner {
  background-color: #fafafa;
  padding: 1.25rem 1.5rem 2.5rem;
}
.health_check_result_list .item .cont .title_text.h4 {
  margin-top: 2.5rem;
}
.health_check_result_list .item .cont .text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
  word-break: keep-all;
}
.health_check_result_list .item .cont .text em {
  font-weight: normal;
  color: #f60;
}
.health_check_result_list .item .cont .link_box_wrap {
  margin-top: 1rem;
}
.health_check_result_list .item .cont .link_box {
  display: block;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  padding: 1.1875rem 2.9375rem 1.1875rem 1.1875rem;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
  background: #fff url(../img/icon_arrow_right_type4.svg) no-repeat right 1.4375rem center/1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.health_check_result_list .item .cont .link_box + .link_box {
  margin-top: 0.5rem;
}
.health_check_result_list .item .cont .info_box {
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  padding: 1.1875rem;
  background-color: #fff;
}
.health_check_result_list .item .cont .info_box .tit {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #202020;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.health_check_result_list .item .cont .info_box > ul > li {
  position: relative;
  display: block;
  padding-left: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1rem;
  color: #666;
}
.health_check_result_list .item .cont .info_box > ul > li::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0.1875rem;
  width: 0.125rem;
  border-bottom: 0.125rem solid #666;
}
.health_check_result_list .item .cont .info_box > ul > li + li {
  margin-top: 0.5rem;
}
.health_check_result_list .item .cont .disease_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 2rem;
}
.health_check_result_list .item .cont .disease_list > li {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: calc(33.3333333333% - 0.33333rem);
  padding: 6rem 0 1rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #202020;
  text-align: center;
}
.health_check_result_list .item .cont .disease_list > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.health_check_result_list .item .cont .disease_list > li img {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  z-index: 1;
  width: 2.5rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.health_check_result_list .item .cont .tip_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.health_check_result_list .item .cont .tip_list > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.health_check_result_list .item .cont .tip_list > li .img_box {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 2.5rem;
  background-color: #fff;
}
.health_check_result_list .item .cont .tip_list > li .img_box img {
  width: 2.5rem;
}
.health_check_result_list .item .cont .tip_list > li .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.health_check_result_list .item.active .top button {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.health_check_result_list .item.active .top button::after {
  top: -1.0625rem;
}
.health_check_graph {
  position: relative;
  padding: 2.375rem 0 1.875rem;
}
.health_check_graph .pin {
  display: block;
  position: absolute;
  overflow: hidden;
  text-indent: -624.9375rem;
  z-index: 1;
  top: 1.3125rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_graph_pin_24.svg) no-repeat center/contain;
  margin: 0 0 0 -0.75rem;
}
.health_check_graph .bar {
  position: relative;
  height: 0.75rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.health_check_graph .bar > .range {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 100%;
}
.health_check_graph .bar > .range .value {
  display: block;
  position: absolute;
}
.health_check_graph .bar > .range::before {
  content: "";
  display: block;
  height: 100%;
}
.health_check_graph .bar > .range:nth-of-type(1)::before {
  border-radius: 0.75rem 0 0 0.75rem;
  background-color: #ffe9d4;
}
.health_check_graph .bar > .range:nth-of-type(2)::before {
  background-color: #ffd2ab;
}
.health_check_graph .bar > .range:nth-of-type(3)::before {
  background-color: #ffbb80;
}
.health_check_graph .bar > .range:nth-of-type(4)::before {
  background-color: #ff8533;
}
.health_check_graph .bar > .range:last-of-type {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.health_check_graph .bar > .range:last-of-type::before {
  border-radius: 0 0.75rem 0.75rem 0;
  background-color: #f60;
}
.health_check_graph .bar > .range > i {
  display: block;
  position: absolute;
  text-align: center;
  width: 2.5rem;
  margin-left: -1.25rem;
  left: 0;
  top: -2.375rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #202020;
}
.health_check_graph .bar > .range > strong {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #666;
  margin: 0.5rem 0 0 0;
}
.health_check_graph.ty_1 {
  padding-top: 1.0625rem;
}
.health_check_graph.ty_1 .pin {
  left: 50%;
  top: -1.0625rem;
}
.health_check_graph.ty_1 .bar .range {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.health_check_graph.ty_1 .bar .range:nth-of-type(2)::before {
  background-color: #ffbb80;
}
.health_check_graph.ty_2 {
  padding-top: 1.0625rem;
}
.health_check_graph.ty_2 .pin {
  left: 50%;
  top: -1.0625rem;
}
.health_check_graph.ty_2 .bar .range {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.health_check_graph.ty_2 .bar .range:nth-of-type(2)::before {
  background-color: #f60;
}
@-webkit-keyframes recoil {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  60% {
    -webkit-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  100% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
@keyframes recoil {
  0% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  60% {
    -webkit-transform: rotateZ(10deg);
    transform: rotateZ(10deg);
  }
  100% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
.point_graph_wrap {
  padding-top: 4.0625rem;
}
.point_graph_wrap .point_graph {
  position: relative;
  width: 15rem;
  height: 7.5rem;
  margin: 0 auto;
}
.point_graph_wrap .point_graph .bg {
  position: relative;
  width: 15rem;
  height: 7.5rem;
  overflow: hidden;
  margin: 0 auto;
}
.point_graph_wrap .point_graph .bg .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 15rem;
  height: 15rem;
  border-radius: 7.5rem;
  background-color: #ff4d42;
  clip: rect(0, 15rem, 7.5rem, 0);
}
.point_graph_wrap .point_graph .bg .circle:nth-of-type(2) {
  background-color: #61d65e;
  -webkit-transform: rotateZ(54deg);
  transform: rotateZ(54deg);
}
.point_graph_wrap .point_graph .bg .circle:nth-of-type(3) {
  background-color: #4584ff;
  -webkit-transform: rotateZ(126deg);
  transform: rotateZ(126deg);
}
.point_graph_wrap .point_graph .bg .center {
  position: absolute;
  overflow: hidden;
  left: 2.5rem;
  top: 2.5rem;
  background-color: #f5f5f5;
  width: 10rem;
  height: 10rem;
  border-radius: 5rem;
}
.point_graph_wrap .point_graph .bg .center::before {
  content: "";
  display: block;
  position: absolute;
  left: 1.875rem;
  top: 1.875rem;
  width: 6.25rem;
  height: 6.25rem;
  background-color: #fff;
  border-radius: 3.75rem;
}
.point_graph_wrap .point_graph .bg .center .marking {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.0625rem;
  width: 0.125rem;
  height: 10rem;
  background-color: #000;
  clip: rect(0, 0.125rem, 0.875rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(2) {
  -webkit-transform: rotateZ(18deg);
  transform: rotateZ(18deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(3) {
  -webkit-transform: rotateZ(36deg);
  transform: rotateZ(36deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(4) {
  -webkit-transform: rotateZ(54deg);
  transform: rotateZ(54deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(5) {
  -webkit-transform: rotateZ(72deg);
  transform: rotateZ(72deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(6) {
  -webkit-transform: rotateZ(90deg) translateX(-0.0625rem);
  transform: rotateZ(90deg) translateX(-0.0625rem);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(7) {
  -webkit-transform: rotateZ(-18deg);
  transform: rotateZ(-18deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(8) {
  -webkit-transform: rotateZ(-36deg);
  transform: rotateZ(-36deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(9) {
  -webkit-transform: rotateZ(-54deg);
  transform: rotateZ(-54deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(10) {
  -webkit-transform: rotateZ(-72deg);
  transform: rotateZ(-72deg);
  opacity: 0.2;
  clip: rect(0, 0.125rem, 0.5rem, 0);
}
.point_graph_wrap .point_graph .bg .center .marking:nth-of-type(11) {
  -webkit-transform: rotateZ(-90deg) translateX(0.0625rem);
  transform: rotateZ(-90deg) translateX(0.0625rem);
}
.point_graph_wrap .point_graph .rotate_scale {
  width: 17.5rem;
  height: 8.75rem;
  position: absolute;
  left: 50%;
  margin-left: -8.75rem;
  bottom: 0;
}
.point_graph_wrap .point_graph .rotate_scale > div {
  position: absolute;
  font-size: 0.875rem;
  line-height: 0.875rem;
  width: 1.875rem;
  text-align: center;
  color: #888;
  left: 50%;
}
.point_graph_wrap .point_graph .rotate_scale > div.p {
  height: 17.5rem;
  margin-left: -0.9375rem;
  top: 0;
}
.point_graph_wrap .point_graph .rotate_scale > div.v30 {
  -webkit-transform: rotateZ(-36deg);
  transform: rotateZ(-36deg);
}
.point_graph_wrap .point_graph .rotate_scale > div.v70 {
  -webkit-transform: rotateZ(36deg);
  transform: rotateZ(36deg);
}
.point_graph_wrap .point_graph .rotate_scale > div.v0 {
  left: 0.25rem;
  bottom: 0;
  text-align: left;
}
.point_graph_wrap .point_graph .rotate_scale > div.v100 {
  text-align: right;
  left: auto;
  right: -0.625rem;
  bottom: 0;
}
.point_graph_wrap .point_graph .result div {
  position: absolute;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  color: #fff;
  width: 1.875rem;
}
.point_graph_wrap .point_graph .result div:nth-child(1) {
  left: 50%;
  bottom: 2.5rem;
  margin-left: -6.5rem;
}
.point_graph_wrap .point_graph .result div:nth-child(2) {
  left: 50%;
  bottom: 5.6875rem;
  margin-left: -0.9375rem;
}
.point_graph_wrap .point_graph .result div:nth-child(3) {
  left: 50%;
  bottom: 2.5rem;
  margin-left: 4.625rem;
}
.point_graph_wrap .point_graph .needle_wrap {
  display: block;
  position: absolute;
  width: 11.25rem;
  height: 6.25rem;
  bottom: -0.625rem;
  left: 1.875rem;
}
.point_graph_wrap .point_graph .needle_wrap::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  padding: 0.5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6a6a6a), color-stop(44%, #585858), to(#000));
  background-image: linear-gradient(to bottom, #6a6a6a 0%, #585858 44%, #000 100%);
  top: 4.875rem;
  left: 50%;
  margin-left: -0.75rem;
}
.point_graph_wrap .point_graph .needle_wrap .needle {
  display: block;
  position: absolute;
  width: 11.25rem;
  height: 0.375rem;
  left: 0;
  bottom: 0.4375rem;
}
.point_graph_wrap .point_graph .needle_wrap .needle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.25rem;
  top: 0;
  width: 11.25rem;
  height: 0.375rem;
  clip: rect(0, 6.5625rem, 0.375rem, 0);
  background: url(../img/img_needle_105_6.svg) no-repeat left center;
}
.point_graph_wrap .point_graph .needle_wrap .needle.on {
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
.point_graph_wrap .point_graph .needle_wrap .needle.on::before {
  -webkit-animation: 1.3s ease-in-out recoil;
  animation: 1.3s ease-in-out recoil;
}
.point_graph_wrap .point_wrap {
  margin-top: 1.5rem;
  font-size: 1.75rem;
  color: #000;
  text-align: center;
  font-weight: 700;
  line-height: 2.125rem;
}
.point_graph_wrap .text_1 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #202020;
  text-align: center;
}
.point_graph_wrap .text_2 {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
}
.point_graph_wrap .note_text {
  margin-top: 0.25rem;
}
.disease_result_list .item {
  border: 0.0625rem solid #f5f5f5;
  border-radius: 1rem;
  overflow: hidden;
}
.disease_result_list .item + .item {
  margin-top: 1rem;
}
.disease_result_list .item .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background-color: #f5f5f5;
  gap: 0.5rem;
  color: #202020;
}
.disease_result_list .item .top .rank {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.625rem;
  background-color: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
}
.disease_result_list .item .top .tit {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.disease_result_list .item .top img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  height: 1.5rem;
}
.disease_result_list .item .top em {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  font-size: 0.875rem;
  line-height: 1.375rem;
  position: relative;
  text-align: right;
  width: 2.6875rem;
  font-weight: 500;
}
.disease_result_list .item .top em::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.3125rem;
  top: 50%;
  margin-top: -0.3125rem;
}
.disease_result_list .item .top em.bad::before {
  background-color: #ff4d42;
}
.disease_result_list .item .top em.good::before {
  background-color: #4584ff;
}
.disease_result_list .item .top em.normal::before {
  background-color: #61d65e;
}
.disease_result_list .item .top .sld_trigger {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  margin-left: 0.25rem;
  background-color: rgba(0, 0, 0, 0);
}
.disease_result_list .item .top .sld_trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  background: url(../img/icon_arrow_down_type1.svg) no-repeat center/contain;
}
.disease_result_list .item .top .sld_trigger::after {
  content: "";
  position: absolute;
  top: -1.125rem;
  right: -1.5rem;
  width: 100vw;
  height: 3.75rem;
}
.disease_result_list .item .bdy {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.disease_result_list .item .bdy .cont {
  display: none;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  padding: 1.1875rem 1.4375rem;
}
.disease_result_list .item .box {
  margin-top: 0.5rem;
  background-color: #fff4ed;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #3f3f3f;
  text-align: center;
}
.disease_result_list .item .graph {
  display: block;
  margin: 0 auto;
  width: 16.5625rem;
}
.disease_result_list .item hr {
  display: block;
  height: 0.0625rem;
  background-color: #ececec;
  margin: 2rem 0;
}
.disease_result_list .item.active .sld_trigger::before {
  top: 0.125rem;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.banner_link_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
}
.banner_link_box .text_area .text_1 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
  margin-bottom: 0.5rem;
}
.banner_link_box .text_area .text_2 {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #202020;
  padding-right: 1.5rem;
  background: url(../img/icon_arrow_right_type5.svg) no-repeat right center/1.5rem;
}
.banner_link_box .text_area .text_3 {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #202020;
  padding-right: 1.125rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem;
}
.banner_link_box img {
  width: 3.5rem;
}
.banner_link_box.c1 {
  background-color: #e5f6f3;
  border-color: #e5f6f3;
}
.banner_link_box.c2 {
  background-color: #fafafa;
  border-color: #f0f0f0;
}
.disease_visual_top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding-top: 2rem;
}
.disease_visual_top > div {
  width: 33.3333333333%;
}
.disease_visual_top > div + div {
  border-left: 0.0625rem solid #ececec;
}
.disease_visual_top .tit {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 0.875rem;
  color: #3f3f3f;
  min-height: 1.75rem;
}
.disease_visual_top .visual_box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
}
.disease_visual_top .visual_box .mini_point_graph {
  display: block;
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: url(../img/question/mini_graph_bg.svg) no-repeat center/3rem 1.6875rem;
}
.disease_visual_top .visual_box .mini_point_graph .needle {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0.375rem 0 0 -1.25rem;
  width: 2.5rem;
  height: 0.625rem;
}
.disease_visual_top .visual_box .mini_point_graph .needle::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto 0 0;
  background: url(../img/question/mini_graph_needle.svg) no-repeat left center/auto 100%;
}
.disease_visual_top .visual_box .mini_point_graph .needle.on {
  -webkit-transition: -webkit-transform 0.8s ease-in-out;
  transition: -webkit-transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out, -webkit-transform 0.8s ease-in-out;
}
.disease_visual_top .visual_box .bar_graph {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 2.5rem;
  height: 2.1875rem;
}
.disease_visual_top .visual_box .bar_graph > div {
  position: relative;
  background-color: #ececec;
  width: 0.625rem;
  height: 100%;
}
.disease_visual_top .visual_box .bar_graph > div::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
}
.disease_visual_top .visual_box .bar_graph > div:nth-child(1) {
  height: 1.0625rem;
}
.disease_visual_top .visual_box .bar_graph > div:nth-child(1)::before {
  background-color: #4584ff;
}
.disease_visual_top .visual_box .bar_graph > div:nth-child(2) {
  height: 1.5625rem;
}
.disease_visual_top .visual_box .bar_graph > div:nth-child(2)::before {
  background-color: #61d65e;
}
.disease_visual_top .visual_box .bar_graph > div:nth-child(3) {
  height: 100%;
}
.disease_visual_top .visual_box .bar_graph > div:nth-child(3)::before {
  background-color: #ff4d42;
}
.disease_visual_top .visual_box .bar_graph.good > div:nth-child(1)::before {
  height: 100%;
  -webkit-transition: height 1s;
  transition: height 1s;
}
.disease_visual_top .visual_box .bar_graph.normal > div:nth-child(2)::before {
  height: 100%;
  -webkit-transition: height 1s;
  transition: height 1s;
}
.disease_visual_top .visual_box .bar_graph.bad > div:nth-child(3)::before {
  height: 100%;
  -webkit-transition: height 1s;
  transition: height 1s;
}
.disease_visual_top .visual_box .visual_img {
  position: relative;
  width: 100%;
  height: 100%;
}
.disease_visual_top .visual_box .visual_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/question/img_family_disease.svg) no-repeat center/auto 100%;
  opacity: 0;
  -webkit-transform: rotateX(40deg) rotateY(60deg) rotateZ(80deg);
  transform: rotateX(40deg) rotateY(60deg) rotateZ(80deg);
}
.disease_visual_top .visual_box .visual_img.on::before {
  opacity: 1;
  -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
  transform: rotateX(0) rotateY(0) rotateZ(0);
  -webkit-transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, -webkit-transform 1.3s;
  transition: opacity 1.3s, transform 1.3s;
  transition: opacity 1.3s, transform 1.3s, -webkit-transform 1.3s;
}
.disease_visual_top .point_wrap {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.disease_visual_top .point_wrap .point {
  position: relative;
}
.disease_visual_top .point_wrap .point > em {
  visibility: hidden;
  opacity: 0;
}
.disease_visual_top .point_wrap .point > em span {
  display: none;
}
.disease_visual_top .point_wrap .point.good > em {
  opacity: 1;
  visibility: visible;
}
.disease_visual_top .point_wrap .point.good > em > span:nth-child(1) {
  display: inline;
}
.disease_visual_top .point_wrap .point.normal > em {
  opacity: 1;
  visibility: visible;
}
.disease_visual_top .point_wrap .point.normal > em > span:nth-child(2) {
  display: inline;
}
.disease_visual_top .point_wrap .point.bad > em {
  opacity: 1;
  visibility: visible;
}
.disease_visual_top .point_wrap .point.bad > em > span:nth-child(3) {
  display: inline;
}
.step_img_info_list {
  display: block;
}
.step_img_info_list .item {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  word-break: keep-all;
}
.step_img_info_list .item .img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 1.5rem;
}
.step_img_info_list .item .img img {
  display: block;
  width: 3rem;
}
.step_img_info_list .item .info {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.step_img_info_list .item .info .step {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.375rem;
  color: #f60;
  margin-bottom: 0.5rem;
}
.step_img_info_list .item .info .text {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
}
.step_img_info_list .item + .item {
  margin-top: 2.375rem;
}
.step_img_info_list .item + .item::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -0.71875rem;
  top: -1.875rem;
  width: 1.4375rem;
  height: 1.375rem;
  background: url(../img/question/icon_step_arrow.svg) no-repeat center/contain;
}
.age_specific_rate_list {
  padding-bottom: 0.9375rem;
}
.age_specific_rate_list > .unit {
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.5rem;
  color: #666;
  text-align: right;
}
.age_specific_rate_list .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.age_specific_rate_list .item + .item {
  margin-top: 0.5rem;
}
.age_specific_rate_list .item > strong {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4.375rem;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
  font-weight: 400;
}
.age_specific_rate_list .item .bar_wrap {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  height: 0.75rem;
  background-color: #f5f5f5;
}
.age_specific_rate_list .item .bar_wrap .bar {
  display: block;
  height: 100%;
  margin: 0 auto 0 0;
  background-color: #ff9752;
}
.age_specific_rate_list .item .bar_wrap.unit {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0);
}
.age_specific_rate_list .item .bar_wrap.unit > span {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  border-right: 0.0625rem solid #bababa;
  border-bottom: 0.0625rem solid #bababa;
}
.age_specific_rate_list .item .bar_wrap.unit > span:first-child {
  border-left: 0.0625rem solid #bababa;
}
.age_specific_rate_list .item .bar_wrap.unit > span span {
  font-size: 0.6875rem;
  display: block;
  position: absolute;
  text-align: center;
  left: -50%;
  top: 100%;
  height: 0.6875rem;
  line-height: 0.6875rem;
  width: 100%;
  margin-top: 0.25rem;
  color: #9e9e9e;
}
.age_specific_rate_list .item .bar_wrap.unit > span:last-child {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-top: 0;
  border-right: 0;
  width: 0;
}
.age_specific_rate_list .item .bar_wrap.unit > span:last-child > span {
  left: -1.25rem;
  width: 2.5rem;
}
.age_specific_rate_list .item > em {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3.5rem;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #9d8778;
  font-weight: 600;
}
.input_birth {
  text-align: center;
}
.input_birth input {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.625rem;
  text-align: center;
}
.input_birth input::-webkit-input-placeholder {
  color: #bababa;
}
.input_birth input::-moz-placeholder {
  color: #bababa;
}
.input_birth input:-ms-input-placeholder {
  color: #bababa;
}
.input_birth input::-ms-input-placeholder {
  color: #bababa;
}
.input_birth input::placeholder {
  color: #bababa;
}
.input_birth input.ibl {
  width: 8.125rem;
}
.input_birth input.ibs {
  width: 2.5rem;
}
.input_birth .hash {
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.625rem;
}
.recommend_touch_box {
  background-color: #fff;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
}
.recommend_touch_box + .recommend_touch_box {
  margin-top: 1rem;
}
.recommend_touch_box .txt {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 700;
  color: #f60;
  margin-bottom: 0.5rem;
}
.recommend_touch_box .tit {
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #202020;
  font-weight: 600;
}
.recommend_touch_box .tit em {
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.recommend_touch_box .tit em::before {
  content: "";
  display: block;
  height: 0.625rem;
  background-color: #ffd2ab;
  margin: 0.875rem -0.0625rem -1.5rem;
}
.recommend_touch_box .point {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.recommend_touch_box .point > img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4rem;
  margin-right: 0.5rem;
}
.recommend_touch_box .point > div {
  margin: 1.375rem 0 1.875rem;
}
.recommend_touch_box .point > div > strong {
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #f60;
  font-weight: 600;
}
.recommend_touch_box .point > div > span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
}
.recommend_touch_box .link {
  display: block;
  text-align: center;
  border-radius: 0.5rem;
  background-color: #fff4ed;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 0.9375rem;
  color: #f60;
  font-weight: 500;
}
.event_box {
  border: 0.0625rem solid #f60;
  border-radius: 1rem;
  background-color: #fff4ed;
  padding: 1.5rem 1.25rem;
  color: #202020;
  overflow: hidden;
}
.event_box .tit {
  border-bottom: 0.0625rem solid #ffe9d4;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.event_box .tit strong {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.event_box .tit img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 3.5rem;
  margin-left: 1.875rem;
}
.event_box .text_1 {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.event_box .text_2 {
  font-size: 0.875rem;
  line-height: 0.875rem;
  margin-top: 0.5rem;
}
.event_box .link {
  display: block;
  margin: 1.25rem -1.25rem -1.5rem;
  padding: 1.25rem 1.25rem 1.5rem;
  background-color: #fff;
  line-height: 1.5rem;
  font-size: 0.9375rem;
  color: #666;
  text-align: center;
}
.event_box .link::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_right_type8.svg) no-repeat center/contain;
}
.award_visual_top {
  text-align: center;
  color: #202020;
}
.award_visual_top .text_1 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}
.award_visual_top .text_2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.award_visual_top .text_3 {
  font-size: 0.9375rem;
  line-height: 1.375rem;
}
.award_visual_top .img {
  display: block;
  width: 15rem;
  margin: 1.5rem auto;
}
.award_visual_top .box {
  background-color: #fff5ed;
  border-radius: 1rem;
  padding: 1.25rem;
}
.award_visual_top .list_box {
  border-radius: 1rem;
  background-color: #fff;
  padding: 1rem;
  margin-top: 1rem;
}
.award_visual_top .list_box > li {
  font-size: 0.8125rem;
  line-height: 1rem;
}
.award_visual_top .list_box > li + li {
  margin-top: 0.5rem;
}
.award_visual_top .list_box > li::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0.125rem;
  height: 0.125rem;
  background-color: #202020;
  margin: 0.4375rem 0.4375rem 0;
}
.award_history_list .item {
  color: #202020;
  background-color: #fff;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
}
.award_history_list .item + .item {
  margin-top: 1rem;
}
.award_history_list .item .badge_cont {
  margin-bottom: 0.625rem;
}
.award_history_list .item .tit {
  display: block;
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
}
.award_history_list .item .tit.link {
  padding-right: 2rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat right center/1rem;
}
.award_history_list .item .text_1 {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #202020;
}
.award_history_list .item hr {
  display: block;
  height: 0.0625rem;
  background-color: #ececec;
  margin: 1rem 0;
}
.award_history_list .item .btn {
  width: 100%;
}
.certified_planner_visual_top {
  background-color: #f2f7ff;
  padding: 3.375rem 1.5rem 1.5rem;
  text-align: center;
  color: #202020;
}
.certified_planner_visual_top .tit {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.certified_planner_visual_top .text_1 {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
.certified_planner_visual_top img {
  display: block;
  width: 15rem;
  margin: 1.25rem auto 0.8125rem;
}
.certified_planner_visual_top .link {
  display: inline-block;
  padding: 0 1rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #fff;
  color: #666;
}
.certified_planner_visual_top .link::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1rem;
  height: 1rem;
  margin: 0.5rem 0 0 0.5rem;
  background: url(../img/icon_arrow_right_type2.svg) no-repeat center/contain;
}
.certified_planner_status {
  background-color: #f5f5f5;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  color: #202020;
  text-align: center;
}
.certified_planner_status .tit {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.certified_planner_status .tit .ud {
  display: inline-block;
  vertical-align: top;
}
.certified_planner_status .tit .ud::before {
  content: "";
  display: block;
  background-color: #ffd2ab;
  height: 0.625rem;
  margin: 0.875rem -0.0625rem -1.5rem;
}
.certified_planner_status .status {
  display: inline-block;
  vertical-align: top;
  background-color: #3f3f3f;
  color: #fff;
  height: 1.875rem;
  line-height: 1.875rem;
  padding: 0 1rem;
  border-radius: 0.9375rem;
  font-weight: 700;
  font-size: 0.75rem;
}
.certified_planner_status .status.active {
  background-color: #f60;
}
.certified_planner_status .box {
  margin: -0.9375rem 0 1.5rem;
  display: block;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem 1.25rem 1.5rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
  box-shadow: 0 0.1875rem 0.375rem 0 rgba(0, 0, 0, 0.03);
}
.certified_planner_status .box .badge {
  display: block;
  width: 6.5rem;
  margin: 0 auto 1rem;
}
.certified_planner_status .text_1 {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.certified_planner_status .text_2 {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.certified_planner_status .text_3 {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.certified_planner_status .note_text {
  margin-top: 0.25rem;
  text-align: left;
}
.certified_planner_status .certified_list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  gap: 3rem 0.625rem;
}
.certified_planner_status .certified_list .item {
  position: relative;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 5.5rem;
  width: calc(33.3333333333% - 0.41667rem);
  padding-top: 6.125rem;
  background-position: top 0.625rem center;
  background-size: 5.5rem;
  background-repeat: no-repeat;
}
.certified_planner_status .certified_list .item .count {
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -2.625rem;
  height: 1.25rem;
  line-height: 1.25rem;
  padding: 0 0.375rem;
  border-radius: 0.625rem;
  background-color: #9e9e9e;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.075rem;
  color: #fff;
}
.certified_planner_status .certified_list .item strong {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #000;
}
.certified_planner_status .certified_list .item.active .count {
  background-color: #202020;
}
.certified_planner_status .certified_list .item.ty1 {
  background-image: url(../img/planner/badge_ty1.svg);
}
.certified_planner_status .certified_list .item.ty1.active {
  background-image: url(../img/planner/badge_ty1_active.svg);
}
.certified_planner_status .certified_list .item.ty2 {
  background-image: url(../img/planner/badge_ty2.svg);
}
.certified_planner_status .certified_list .item.ty2.active {
  background-image: url(../img/planner/badge_ty2_active.svg);
}
.certified_planner_status .certified_list .item.ty3 {
  background-image: url(../img/planner/badge_ty3.svg);
}
.certified_planner_status .certified_list .item.ty3.active {
  background-image: url(../img/planner/badge_ty3_active.svg);
}
.certified_planner_status .certified_list .item.ty4 {
  background-image: url(../img/planner/badge_ty4.svg);
}
.certified_planner_status .certified_list .item.ty4.active {
  background-image: url(../img/planner/badge_ty4_active.svg);
}
.certified_planner_status .certified_list .item.ty5 {
  background-image: url(../img/planner/badge_ty5.svg);
}
.certified_planner_status .certified_list .item.ty5.active {
  background-image: url(../img/planner/badge_ty5_active.svg);
}
.certified_planner_status .certified_list .item.ty6 {
  background-image: url(../img/planner/badge_ty6.svg);
}
.certified_planner_status .certified_list .item.ty6.active {
  background-image: url(../img/planner/badge_ty6_active.svg);
}
.cps_detail_link {
  margin-top: 1rem;
  display: block;
  background-color: #f5f5f5;
  color: #3f3f3f;
  text-align: center;
  height: 3rem;
  line-height: 3rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}
.cps_detail_link::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  margin-top: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_right_type7.svg) no-repeat center/contain;
}
.certified_planner_benefit {
  text-align: center;
  color: #202020;
}
.certified_planner_benefit .tit {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.certified_planner_benefit .tit .ud {
  display: inline-block;
  vertical-align: top;
}
.certified_planner_benefit .tit .ud::before {
  content: "";
  display: block;
  background-color: #ffd2ab;
  height: 0.625rem;
  margin: 0.875rem -0.0625rem -1.5rem;
}
.certified_planner_benefit .text_1 {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.certified_planner_benefit .box {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  background-color: #f5f5f5;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
}
.certified_planner_benefit .box + .box {
  margin-top: 1rem;
}
.certified_planner_benefit .box .img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  width: 4rem;
}
.certified_planner_benefit .box .img img {
  display: block;
  width: 100%;
}
.certified_planner_benefit .box .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.certified_planner_benefit .box .text .link {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 0.875rem;
  color: #666;
  font-weight: 400;
  padding-right: 1.125rem;
  background: url(../img/icon_arrow_right_type1.svg) no-repeat right center/1rem;
}
.certified_planner_benefit .note_text {
  margin-top: 1.5rem;
  text-align: left;
}
.certified_planner_description {
  color: #202020;
}
.certified_planner_description .tit {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.certified_planner_description .tit .ud {
  display: inline-block;
  vertical-align: top;
}
.certified_planner_description .tit .ud::before {
  content: "";
  display: block;
  background-color: #ffd2ab;
  height: 0.625rem;
  margin: 0.875rem -0.0625rem -1.5rem;
}
.certified_planner_description .text_1 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #666;
}
.certified_planner_description dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  gap: 0.8125rem 0.5rem;
}
.certified_planner_description dl dt {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4.375rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 0.75rem;
  background-color: #3f3f3f;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}
.certified_planner_description dl dd {
  margin: 0;
  width: calc(100% - 4.875rem);
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.certified_planner_description .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.0625rem solid #f0f0f0;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.certified_planner_description .box + .box {
  margin-top: 2.25rem;
}
.certified_planner_description .box strong {
  display: block;
  position: absolute;
  left: 1rem;
  top: -0.75rem;
  width: 4rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  background-color: #3f3f3f;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}
.certified_planner_description .box .img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  width: 4rem;
  margin-right: 1rem;
}
.certified_planner_description .box .img img {
  display: block;
  width: 100%;
}
.certified_planner_badge_list .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.certified_planner_badge_list .item + .item {
  margin-top: 1rem;
}
.certified_planner_badge_list .item .badge {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 4rem;
}
.certified_planner_badge_list .item .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.certified_planner_badge_list .item .text > strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.625rem;
  color: #202020;
}
.certified_planner_badge_list .item .text > span {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #888;
}
.hc_visual_01 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.hc_visual_01 .arrow {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 0.4375rem;
  height: 0.4375rem;
  border-right: 0.125rem solid #d9d9d9;
  border-top: 0.125rem solid #d9d9d9;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  margin: -0.625rem 0 0 -0.125rem;
}
.hc_visual_01 .step {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 4.375rem;
  height: 7.1875rem;
  border-radius: 0.5rem;
  background-color: #f5f5f5;
  color: #202020;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
}
.hc_visual_01 .step img {
  display: block;
  width: 1.5rem;
  margin-bottom: 0.75rem;
}
.hc_visual_01 .step strong {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -1.125rem;
  top: -0.625rem;
  border-radius: 0.625rem;
  background-color: #9d8778;
  width: 2.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
}
.hc_visual_01 .step strong.fp {
  background-color: #f60;
}
.hc_visual_01 .step.active {
  border: 0.0625rem solid #f60;
  background-color: #fff4ed;
}
.hc_visual_02 .item .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hc_visual_02 .item .top img {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 8.5rem;
}
.hc_visual_02 .item .top .text_1 {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  text-align: center;
  width: 10rem;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #202020;
  font-weight: 600;
}
.hc_visual_02 .item .text_2 {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 4.5rem;
  border-radius: 2.25rem;
  background-color: #f5f5f5;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #202020;
}
.hc_visual_02 .item + .item {
  border-top: 0.0625rem solid #f0f0f0;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.hc_visual_03 {
  color: #202020;
}
.hc_visual_03 .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  gap: 0.5rem 0.875rem;
}
.hc_visual_03 .top .item {
  padding: 0.5rem 0;
  width: calc((100% - 1.75rem) / 3);
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: center;
}
.hc_visual_03 .top .item img {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
}
.hc_visual_03 .note_text {
  margin: 1.5rem 0 2.5rem;
}
.hc_visual_03 .box {
  padding: 3.5rem 1.5rem 1.5rem;
  background: #fff5ed url(../img/logo_orangetouch.svg) no-repeat top 1.5rem center/1.0625rem;
  border-radius: 1rem;
  text-align: center;
}
.hc_visual_03 .box .text_1 {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 1rem 0;
}
.hc_visual_03 .box .btn {
  display: block;
}
.download_intro_page {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 69.5rem;
  min-height: 100%;
  color: #202020;
  background-color: #fff;
}
.dic_cont > .inner {
  position: relative;
  width: 69.5rem;
  margin: 0 auto;
}
.dic_download_btn {
  display: inline-block;
  width: 20.4375rem;
  padding: 1.125rem;
  text-align: center;
  border-radius: 0.75rem;
  background-color: #f60;
  -webkit-box-shadow: 0 0.5rem 0.5rem 0 rgba(255, 102, 0, 0.2);
  box-shadow: 0 0.5rem 0.5rem 0 rgba(255, 102, 0, 0.2);
}
.dic_download_btn > span {
  position: relative;
  display: inline-block;
  padding-right: 2rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #fff;
  background: url(../img/dic/icon_dic_download.png) no-repeat right center/1.5rem auto;
}
.dic_sec_01 {
  background: #fff url(../img/dic/bg_dic_top.png) no-repeat center top/69.5rem auto;
}
.dic_sec_01 > .inner {
  height: 56.9375rem;
}
.dic_sec_01 > .inner .dic_dmp_img {
  position: absolute;
  left: 3.1875rem;
  bottom: 2.5rem;
  font-size: 0;
}
.dic_sec_01 > .inner .dic_dmp_img img {
  display: block;
  width: 33.75rem;
}
.dic_sec_01 > .inner .dic_qr {
  position: absolute;
  right: 7.75rem;
  bottom: 12.375rem;
  z-index: 1;
  font-size: 0;
  white-space: nowrap;
}
.dic_sec_01 > .inner .dic_qr > .text {
  display: inline-block;
  vertical-align: bottom;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #3f3f3f;
  text-align: right;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  width: 8.875rem;
  height: 8.875rem;
  margin-left: 1.125rem;
  background-color: #fff;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-left: 0.25rem solid #bababa;
  border-top: 0.25rem solid #bababa;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-right: 0.25rem solid #bababa;
  border-top: 0.25rem solid #bababa;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-left: 0.25rem solid #bababa;
  border-bottom: 0.25rem solid #bababa;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-right: 0.25rem solid #bababa;
  border-bottom: 0.25rem solid #bababa;
}
.dic_sec_01 > .inner .dic_qr > .dic_qr_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6.375rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dic_sec_01 > .inner .dic_download_btn {
  position: absolute;
  right: 5.875rem;
  bottom: 6.375rem;
  z-index: 1;
}
.dic_sec_01_top {
  position: relative;
  padding-top: 5.1875rem;
  text-align: center;
}
.dic_sec_01_top .dic_open {
  font-size: 0;
}
.dic_sec_01_top .dic_open img {
  display: inline-block;
  width: 8.125rem;
}
.dic_sec_01_top .dic_title_01 > span {
  display: block;
  font-size: 1.75rem;
  line-height: 2.625rem;
}
.dic_sec_01_top .dic_title_01 > h2 {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.625rem;
  letter-spacing: -0.125rem;
  white-space: nowrap;
}
.dic_sec_01_top .dic_title_01 > h2 > .ud {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}
.dic_sec_01_top .dic_title_01 > h2 > .ud::after {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  left: 0;
  width: 100%;
  border-bottom: 0.75rem solid #ffcfb4;
}
.dic_sec_01_top .dic_title_01 > h2 > .ud > span {
  position: relative;
  z-index: 1;
}
.dic_sec_02 {
  padding: 5rem 0;
  background-color: #f5f5f5;
}
.dic_sec_02_top {
  text-align: center;
}
.dic_sec_02_top > h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 3rem;
}
.dic_sec_02_top > h2 > span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0.125rem;
}
.dic_sec_02_top > h2 .dic_logo {
  display: inline-block;
  vertical-align: middle;
}
.dic_sec_02_top .desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.dic_sec_02_cont01 {
  padding-bottom: 5rem;
}
.dic_sec_02_cont01 .desc {
  margin-top: 2rem;
  text-align: center;
}
.dic_sec_02_item01 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 4rem;
}
.dic_sec_02_item01 > li {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  position: relative;
  text-align: center;
}
.dic_sec_02_item01 > li .thumb {
  display: inline-block;
  width: 7.5rem;
  font-size: 0;
}
.dic_sec_02_item01 > li .thumb img {
  width: 100%;
}
.dic_sec_02_item01 > li .in_cont {
  margin-top: 1.5rem;
}
.dic_sec_02_item01 > li .in_cont > strong {
  display: block;
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  word-break: keep-all;
}
.dic_sec_02_item02 {
  padding: 2rem;
  font-size: 0;
  border-radius: 1rem;
  background-color: #fff;
}
.dic_sec_02_item02 + .dic_sec_02_item02 {
  margin-top: 1rem;
}
.dic_sec_02_item02 .item_head {
  display: inline-block;
  vertical-align: top;
  width: 13.125rem;
}
.dic_sec_02_item02 .item_head > .tit {
  position: relative;
  display: block;
  padding: 0.1875rem 0 0 3rem;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
}
.dic_sec_02_item02 .item_head > .tit::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background-color: #737373;
}
.dic_sec_02_item02 .item_cont {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 13.125rem);
  padding-left: 1.5rem;
  text-align: center;
  border-left: 0.0625rem solid #ececec;
}
.dic_sec_02_item02 .item_cont .desc {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #666;
  letter-spacing: 0;
}
.dic_sec_02_item02 .item_cont .desc em {
  font-weight: 600;
  color: #202020;
}
.dic_sec_02_item02 .item_cont > .desc {
  padding-top: 0.5rem;
}
.dic_rnd_item {
  padding: 2.125rem 0;
  font-size: 0;
  text-align: center;
}
.dic_rnd_item .item01 {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 9.6875rem;
  height: 9.6875rem;
  padding-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #666;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.1);
}
.dic_rnd_item .item01::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.6875rem;
  width: 6.875rem;
  height: 6rem;
  background: url(../img/dic/icon_dic_rnditem01.png) no-repeat center center/6.875rem auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.dic_rnd_item .item02 {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 9.6875rem;
  height: 9.6875rem;
  margin-left: -1.375rem;
  padding-top: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #666;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 102, 0, 0.1);
  background: rgba(255, 102, 0, 0.1) url(../img/dic/icon_dic_plus.png) no-repeat left center/1.375rem auto;
}
.dic_rnd_item .item02::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2.6875rem;
  width: 6.875rem;
  height: 6rem;
  background: url(../img/dic/icon_dic_rnditem02.png) no-repeat center center/6.875rem auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.dic_rnd_item .item03 {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 12.4375rem;
  height: 12.4375rem;
  margin-left: 5.25rem;
  padding-top: 3.1875rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #666;
  text-align: center;
  border-radius: 50%;
  border: 0.0625rem solid #f60;
  background-color: rgba(255, 102, 0, 0.1);
}
.dic_rnd_item .item03::before {
  content: "";
  position: absolute;
  top: 4.9375rem;
  left: -3.8125rem;
  width: 2.3125rem;
  height: 2.75rem;
  background: url(../img/dic/icon_dic_arrow.png) no-repeat center center/contain;
}
.dic_rnd_item .item03 > strong {
  display: block;
  padding-bottom: 0.5rem;
  font-weight: 600;
  color: #f60;
}
.info_wave {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 37.5625rem;
  margin-top: 2rem;
  font-size: 0;
}
.info_wave::before {
  content: "";
  position: absolute;
  top: 1.125rem;
  left: 3.125rem;
  width: calc(100% - 6.25rem);
  height: 0.25rem;
  background: url(../img/dic/bg_dot_line.png) left center/auto 0.25rem;
}
.info_wave .iw_corner {
  display: none;
}
.info_wave > .item {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: top;
  width: 6.3125rem;
  text-align: center;
}
.info_wave > .item + .item {
  margin-left: 1.5rem;
}
.info_wave > .item > .step {
  position: relative;
  display: block;
  padding-top: 3.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #bababa;
}
.info_wave > .item > .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.5rem auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.info_wave > .item > .text {
  display: block;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
}
.info_wave > .item.ty1 > .step::before {
  background-image: url(../img/dic/icon_iw_01.png);
}
.info_wave > .item.ty2 > .step::before {
  background-image: url(../img/dic/icon_iw_02.png);
}
.info_wave > .item.ty3 > .step::before {
  background-image: url(../img/dic/icon_iw_03.png);
}
.info_wave > .item.ty4 > .step::before {
  background-image: url(../img/dic/icon_iw_04.png);
}
.info_wave > .item.ty5 > .step::before {
  background-image: url(../img/dic/icon_iw_05.png);
}
.info_wave_img {
  display: none;
}
.dic_sec_02_item02_sub_text {
  margin-top: 2rem;
  text-align: center;
}
.dic_sec_02_item02_swiper {
  position: relative;
  display: inline-block;
  width: 37rem;
  padding: 0 4rem;
  min-height: 17.75rem;
  overflow: hidden;
}
.dic_sec_02_item02_swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 4rem;
  height: 100%;
  background-color: #fff;
}
.dic_sec_02_item02_swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 4rem;
  height: 100%;
  background-color: #fff;
}
.dic_sec_02_item02_swiper .swiper-pagination {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
}
.dic_sec_02_item02_swiper .swiper-slide {
  padding-top: 0.5rem;
}
.dic_sec_02_item02_swiper .swiper-button {
  position: absolute;
  top: 7.875rem;
  z-index: 4;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid #ececec;
  background-repeat: no-repeat;
  background-size: 0.375rem auto;
  background-position: center center;
  background-color: #f8f8f8;
}
.dic_sec_02_item02_swiper .swiper-button::after {
  content: none;
}
.dic_sec_02_item02_swiper .swiper-button.swiper-button-disabled {
  opacity: 1;
  background-color: #fff;
}
.dic_sec_02_item02_swiper .swiper-button.swiper-button-prev {
  left: 0;
}
.dic_sec_02_item02_swiper .swiper-button.swiper-button-next {
  right: 0;
}
.dic_sec_02_item02_swiper .swiper-button-prev {
  background-image: url(../img/dic/icon_swiper_prev.png);
}
.dic_sec_02_item02_swiper .swiper-button-next {
  background-image: url(../img/dic/icon_swiper_next.png);
}
.help_i_cont_wrap {
  margin-top: 1.75rem;
  font-size: 0;
}
.help_i_cont_wrap.sb_type {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 0.5rem;
}
.help_i_cont_wrap.sb_type .thumb {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 14.625rem;
}
.help_i_cont_wrap.sb_type .thumb img {
  display: block;
  width: 100%;
}
.help_i_cont_wrap .help_i_cont {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 9rem;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #666;
  text-align: left;
}
.help_i_cont_wrap .help_i_cont > .top_thumb {
  margin-bottom: 1rem;
  font-size: 0;
  line-height: 0;
}
.help_i_cont_wrap .help_i_cont > .top_thumb .thumb {
  position: relative;
  display: inline-block;
  font-size: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #fff4ed;
}
.help_i_cont_wrap .help_i_cont > .top_thumb .thumb.etc img {
  margin-left: 0.3125rem;
}
.help_i_cont_wrap .help_i_cont > .top_thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.help_i_cont_wrap .help_i_cont > .top {
  margin-bottom: 1rem;
  font-size: 0;
}
.help_i_cont_wrap .help_i_cont > .top > span {
  display: inline-block;
  padding: 0.625rem 1rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #f60;
  border-radius: 6.25rem;
  background-color: #fff4ed;
}
.help_i_cont_wrap .help_i_cont > .top > span img {
  display: block;
  width: 2rem;
}
.help_i_cont_wrap .help_i_cont .pci {
  font-weight: 600;
  color: #202020;
}
.help_i_cont_wrap .help_i_cont.text_type {
  width: auto;
}
.help_i_cont_wrap .help_i_cont.normal {
  width: 11.5rem;
}
.help_i_cont_wrap .help_i_cont + .help_i_cont {
  margin-left: 1rem;
}
.u_line {
  position: relative;
}
.u_line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.0625rem;
  width: 100%;
  border-bottom: 0.5rem solid #ffdec9;
}
.u_line > span {
  position: relative;
  z-index: 1;
}
.dic_sec_03 {
  padding: 5rem 0 10.0625rem 0;
}
.dic_sec_03 > .inner > h2 {
  font-size: 43.75rem;
  font-size: 1.75rem;
  line-height: 2.625rem;
  text-align: center;
}
.dic_sec_03 > .inner > h2 > span {
  display: inline-block;
  padding-left: 2.375rem;
  background: url(../img/dic/icon_tip.png) no-repeat left center/2.0625rem auto;
}
.dic_sec_03_item01 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 2.5rem;
}
.dic_sec_03_item01 > .item {
  position: relative;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  padding: 0 0 0 2rem;
}
.dic_sec_03_item01 > .item + .item {
  border-left: 0.0625rem solid #ececec;
  padding: 0 2rem 0 0;
  text-align: right;
}
.dic_sec_03_item01 > .item .in_cont {
  display: inline-block;
  vertical-align: top;
}
.dic_sec_03_item01 > .item .in_cont > h3 {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.625rem;
  text-align: center;
}
.dic_sec_03_item01 > .item .in_cont .dg_step {
  margin-top: 1.5rem;
}
.dg_step {
  font-size: 0;
}
.dg_step > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 6.125rem;
  text-align: center;
}
.dg_step > li + li {
  margin-left: 2.4375rem;
}
.dg_step > li + li .thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.4375rem;
  border-left: 0.5rem solid #202020;
  border-top: 0.3125rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.3125rem solid rgba(0, 0, 0, 0);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.dg_step > li > span {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #bababa;
}
.dg_step > li > .thumb {
  position: relative;
  margin-top: 0.5rem;
  text-align: center;
}
.dg_step > li > .thumb img {
  width: 5rem;
}
.dg_step > li > strong {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
}
.dg_step > li > strong > span {
  display: block;
  font-weight: normal;
  color: #666;
}
.dic_btn_bottom {
  margin-top: 4.5rem;
  font-size: 0;
  text-align: center;
}
br.pc_br {
  display: block;
}
br.mo_br {
  display: none;
}
@media screen and (max-width: 1112px) {
  .download_intro_page {
    min-width: auto;
  }
  .download_intro_page .dic_cont > .inner {
    width: auto;
  }
  .download_intro_page .dic_sec_01 {
    background: #fff url(../img/dic/bg_dic_top_m.png) no-repeat center top/100% auto;
  }
  .download_intro_page .dic_sec_01 > .inner {
    height: auto;
    padding-bottom: 2.5rem;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_dmp_img {
    position: static;
    margin-top: 3.375rem;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_dmp_img img {
    width: 100%;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr {
    position: absolute;
    right: 1.875rem;
    bottom: 9rem;
    padding-top: 5rem;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .text {
    display: block;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #3f3f3f;
    text-align: center;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img {
    position: relative;
    position: absolute;
    top: 0;
    left: 50%;
    width: 4.875rem;
    height: 4.875rem;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img::before {
    width: 0.625rem;
    height: 0.625rem;
    border-left: 0.125rem solid #bababa;
    border-top: 0.125rem solid #bababa;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img::after {
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.125rem solid #bababa;
    border-top: 0.125rem solid #bababa;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    border-left: 0.125rem solid #bababa;
    border-bottom: 0.125rem solid #bababa;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover::after {
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.125rem solid #bababa;
    border-bottom: 0.125rem solid #bababa;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img img {
    width: 3.75rem;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_download_btn_area {
    margin-top: 3.9375rem;
    padding: 0 1.5rem;
  }
  .download_intro_page .dic_sec_01 > .inner .dic_download_btn_area .dic_download_btn {
    position: static;
    display: block;
    width: 100%;
  }
  .download_intro_page .dic_sec_01_top {
    padding-top: 5rem;
  }
  .download_intro_page .dic_sec_01_top .dic_open > span {
    font-size: 0.9375rem;
    line-height: 1.875rem;
  }
  .download_intro_page .dic_sec_01_top .dic_title_01 > span {
    display: block;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .download_intro_page .dic_sec_01_top .dic_title_01 .dan {
    margin-top: 0.5rem;
  }
  .download_intro_page .dic_sec_01_top .dic_title_01 > h2 {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.625rem;
  }
  .download_intro_page .dic_sec_01_top .dic_title_01 > h2 > .ud::after {
    border-bottom: 0.5625rem solid #ffcfb4;
  }
  .download_intro_page .dic_sec_01_top .dic_title_01 > .desc {
    display: none;
  }
  .download_intro_page .dic_sec_01_top .dic_title_01 br {
    display: block;
  }
  .download_intro_page .dic_sec_02 {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }
  .download_intro_page .dic_sec_02_top {
    text-align: center;
  }
  .download_intro_page .dic_sec_02_top > h2 {
    font-size: 1.75rem;
    line-height: 2.625rem;
  }
  .download_intro_page .dic_sec_02_top > h2 > span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 0.125rem;
  }
  .download_intro_page .dic_sec_02_top > h2 .dic_logo {
    width: 8.125rem;
  }
  .download_intro_page .dic_sec_02_top .desc {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    word-break: keep-all;
    letter-spacing: -0.6px;
  }
  .download_intro_page .dic_sec_02_cont01 {
    padding-bottom: 3.5rem;
  }
  .download_intro_page .dic_sec_02_item01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.125rem;
    margin-top: 2.5rem;
  }
  .download_intro_page .dic_sec_02_item01 > li .thumb {
    width: 6rem;
  }
  .download_intro_page .dic_sec_02_item01 > li .in_cont {
    margin-top: 0.5rem;
  }
  .download_intro_page .dic_sec_02_item01 > li .in_cont > strong {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .download_intro_page .dic_sec_02_item02 {
    margin-top: 0;
    padding: 0 1.25rem 2rem 1.25rem;
    font-size: 0;
    border-radius: 1rem;
    background-color: #fff;
  }
  .download_intro_page .dic_sec_02_item02.etc {
    padding: 0 0 2rem 0;
  }
  .download_intro_page .dic_sec_02_item02.etc .item_cont::before {
    width: calc(100% - 2.5rem);
  }
  .download_intro_page .dic_sec_02_item02 + .dic_sec_02_item02 {
    margin-top: 3rem;
  }
  .download_intro_page .dic_sec_02_item02 .item_head {
    position: relative;
    display: block;
    width: auto;
    text-align: center;
  }
  .download_intro_page .dic_sec_02_item02 .item_head > .tit {
    position: static;
    display: block;
    padding: 2rem 0 1rem 0;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }
  .download_intro_page .dic_sec_02_item02 .item_head > .tit br {
    display: none;
  }
  .download_intro_page .dic_sec_02_item02 .item_head > .tit::before {
    content: "Q";
    position: absolute;
    top: -1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .download_intro_page .dic_sec_02_item02 .item_cont {
    position: relative;
    display: block;
    width: auto;
    padding-top: 0.0625rem;
    padding-left: 0;
    text-align: center;
    border-top: none;
    border-left: none;
  }
  .download_intro_page .dic_sec_02_item02 .item_cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    border-top: 0.0625rem solid #ececec;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .download_intro_page .dic_sec_02_item02 .item_cont .desc {
    font-size: 0.875rem;
    line-height: 1.375rem;
    word-break: keep-all;
  }
  .download_intro_page .dic_sec_02_item02 .item_cont > .desc {
    padding-top: 1rem;
  }
  .download_intro_page .dic_rnd_item {
    padding: 1rem 0 0 0;
  }
  .download_intro_page .dic_rnd_item .item01 {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(50% + 0.6875rem);
    width: 9.625rem;
    height: auto;
    padding-top: 0;
  }
  .download_intro_page .dic_rnd_item .item01 > span {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .download_intro_page .dic_rnd_item .item01::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .download_intro_page .dic_rnd_item .item01::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3rem;
    width: 6.875rem;
    height: 6rem;
    background: url(../img/dic/icon_dic_rnditem01.png) no-repeat center center/6.875rem auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .download_intro_page .dic_rnd_item .item02 {
    position: relative;
    width: calc(50% + 0.6875rem);
    width: 9.625rem;
    height: auto;
    margin-left: -1.375rem;
    padding-top: 0;
  }
  .download_intro_page .dic_rnd_item .item02 > span {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .download_intro_page .dic_rnd_item .item02::before {
    content: "";
    display: block;
    padding-top: 100%;
    background: none;
  }
  .download_intro_page .dic_rnd_item .item02::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3rem;
    width: 6.875rem;
    height: 6rem;
    background: url(../img/dic/icon_dic_rnditem02.png) no-repeat center center/6.875rem auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .download_intro_page .dic_rnd_item .item03 {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    margin-top: 6.1875rem;
    margin-left: 0;
    padding-top: 0;
    padding: 1.1875rem 2.1875rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #666;
    text-align: center;
    word-break: keep-all;
    border-radius: 6.25rem;
  }
  .download_intro_page .dic_rnd_item .item03 br {
    display: none;
  }
  .download_intro_page .dic_rnd_item .item03::before {
    content: "";
    position: absolute;
    top: -3.125rem;
    left: 50%;
    width: 2.8125rem;
    height: 2.25rem;
    background: url(../img/dic/icon_dic_arrow_down.png) no-repeat center center/contain;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .download_intro_page .dic_rnd_item .item03 > strong {
    display: block;
    padding-bottom: 0.5rem;
    font-weight: 600;
    color: #f60;
  }
  .download_intro_page .info_wave {
    display: none;
  }
  .download_intro_page .info_wave_img {
    display: block;
    margin-top: 1rem;
  }
  .download_intro_page .info_wave_img img {
    display: block;
    width: 100%;
  }
  .download_intro_page .dic_sec_02_item02_swiper {
    position: relative;
    display: block;
    width: 100%;
    min-height: auto;
    padding: 0 0 0.875rem 0;
    overflow: hidden;
  }
  .download_intro_page .dic_sec_02_item02_swiper::before {
    content: none;
  }
  .download_intro_page .dic_sec_02_item02_swiper::after {
    content: none;
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-pagination {
    bottom: 0;
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-slide {
    padding: 1rem 1.25rem 0 1.25rem;
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button {
    position: absolute;
    top: 7.875rem;
    top: 50%;
    margin-top: -1.125rem;
    z-index: 4;
    width: 2.5rem;
    height: 3rem;
    border-radius: 0;
    border: none;
    background-size: 2.5rem auto;
    background-color: rgba(0, 0, 0, 0);
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button::after {
    content: none;
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button.swiper-button-disabled {
    background-color: rgba(0, 0, 0, 0);
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button.swiper-button-prev {
    left: 0;
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button.swiper-button-next {
    right: 0;
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button-prev {
    background-image: url(../img/dic/icon_swiper_prev_mo.png);
  }
  .download_intro_page .dic_sec_02_item02_swiper .swiper-button-next {
    background-image: url(../img/dic/icon_swiper_next_mo.png);
  }
  .download_intro_page .help_i_cont_wrap {
    margin-top: 1rem;
    padding: 0 0.75rem;
    font-size: 0;
  }
  .download_intro_page .help_i_cont_wrap.sb_type {
    display: block;
    padding-top: 0;
  }
  .download_intro_page .help_i_cont_wrap.sb_type .thumb {
    width: 100%;
    margin-top: 0.5rem;
  }
  .download_intro_page .help_i_cont_wrap.sb_type .thumb img {
    display: block;
    width: 100%;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    padding: 1rem 0;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #666;
    text-align: left;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont > .top_thumb {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin: 0 1rem 0 0;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont > .top_thumb .thumb {
    position: relative;
    display: inline-block;
    font-size: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #fff4ed;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont > .top_thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont > .top {
    width: auto;
    text-align: center;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont > .top > span {
    padding: 0.25rem 0.75rem;
    color: #f60;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont > .text {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    word-break: keep-all;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont.text_type {
    width: auto;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont.text_type br {
    display: block;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont.normal {
    display: block;
    width: auto;
    padding: 0;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont.normal > .top {
    margin-bottom: 0.5rem;
    line-height: 0;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont.normal > .text {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    min-height: 4.125rem;
    line-height: 1.375rem;
    text-align: center;
  }
  .download_intro_page .help_i_cont_wrap .help_i_cont + .help_i_cont {
    margin-left: 1rem;
    margin-left: 0;
    padding-top: 0.9375rem;
    border-top: 0.0625rem solid #f0f0f0;
  }
  .download_intro_page .dic_sec_03 {
    padding: 3rem 0 1.5rem 0;
  }
  .download_intro_page .dic_sec_03 > .inner > h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .download_intro_page .dic_sec_03 > .inner > h2 > span {
    padding-left: 2.3125rem;
    background: url(../img/dic/icon_tip.png) no-repeat left center/1.9375rem auto;
  }
  .download_intro_page .dic_sec_03_item01 {
    display: block;
    margin-top: 2.5rem;
    padding: 0 1.5rem;
  }
  .download_intro_page .dic_sec_03_item01 > .item {
    padding: 0;
  }
  .download_intro_page .dic_sec_03_item01 > .item + .item {
    margin-top: 2.5rem;
    padding: 2.5rem 0 0 0;
    border-top: 0.0625rem solid #ececec;
    border-left: none;
    text-align: left;
  }
  .download_intro_page .dic_sec_03_item01 > .item .in_cont {
    display: block;
  }
  .download_intro_page .dg_step {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0;
  }
  .download_intro_page .dg_step > li + li {
    margin-left: 0;
  }
  .download_intro_page .dg_step > li + li .thumb::before {
    left: -0.75rem;
  }
  .download_intro_page .dg_step > li > span {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #bababa;
  }
  .download_intro_page .dg_step > li > .thumb img {
    width: 5rem;
  }
  .download_intro_page .dg_step > li > strong {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .download_intro_page .dic_btn_bottom {
    margin-top: 4rem;
    padding: 0 1.5rem;
  }
  .download_intro_page .dic_btn_bottom .dic_download_btn {
    display: block;
    width: 100%;
  }
  .download_intro_page br.pc_br {
    display: none;
  }
  .download_intro_page br.mo_br {
    display: block;
  }
}
@media screen and (max-width: 3000px) {
  .service_info_page {
    min-width: auto;
  }
  .service_info_page .dic_cont > .inner {
    width: auto;
  }
  .service_info_page .dic_sec_01 {
    background: #fff url(../img/dic/bg_dic_top_m.png) no-repeat center top/100% auto;
  }
  .service_info_page .dic_sec_01 > .inner {
    height: auto;
    padding-bottom: 2.5rem;
  }
  .service_info_page .dic_sec_01 > .inner .dic_dmp_img {
    position: static;
    margin-top: 3.375rem;
  }
  .service_info_page .dic_sec_01 > .inner .dic_dmp_img img {
    width: 100%;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr {
    position: absolute;
    right: 1.875rem;
    bottom: 9rem;
    padding-top: 5rem;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .text {
    display: block;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1rem;
    color: #3f3f3f;
    text-align: center;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img {
    position: relative;
    position: absolute;
    top: 0;
    left: 50%;
    width: 4.875rem;
    height: 4.875rem;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img::before {
    width: 0.625rem;
    height: 0.625rem;
    border-left: 0.125rem solid #bababa;
    border-top: 0.125rem solid #bababa;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img::after {
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.125rem solid #bababa;
    border-top: 0.125rem solid #bababa;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover::before {
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    border-left: 0.125rem solid #bababa;
    border-bottom: 0.125rem solid #bababa;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img > .cover::after {
    width: 0.625rem;
    height: 0.625rem;
    border-right: 0.125rem solid #bababa;
    border-bottom: 0.125rem solid #bababa;
  }
  .service_info_page .dic_sec_01 > .inner .dic_qr > .dic_qr_img img {
    width: 3.75rem;
  }
  .service_info_page .dic_sec_01 > .inner .dic_download_btn_area {
    margin-top: 3.9375rem;
    padding: 0 1.5rem;
  }
  .service_info_page .dic_sec_01 > .inner .dic_download_btn_area .dic_download_btn {
    position: static;
    display: block;
    width: 100%;
  }
  .service_info_page .dic_sec_01_top {
    padding-top: 5rem;
  }
  .service_info_page .dic_sec_01_top .dic_open > span {
    font-size: 0.9375rem;
    line-height: 1.875rem;
  }
  .service_info_page .dic_sec_01_top .dic_title_01 > span {
    display: block;
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .service_info_page .dic_sec_01_top .dic_title_01 .dan {
    margin-top: 0.5rem;
  }
  .service_info_page .dic_sec_01_top .dic_title_01 > h2 {
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.625rem;
  }
  .service_info_page .dic_sec_01_top .dic_title_01 > h2 > .ud::after {
    border-bottom: 0.5625rem solid #ffcfb4;
  }
  .service_info_page .dic_sec_01_top .dic_title_01 > .desc {
    display: none;
  }
  .service_info_page .dic_sec_01_top .dic_title_01 br {
    display: block;
  }
  .service_info_page .dic_sec_02 {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }
  .service_info_page .dic_sec_02_top {
    text-align: center;
  }
  .service_info_page .dic_sec_02_top > h2 {
    font-size: 1.75rem;
    line-height: 2.625rem;
  }
  .service_info_page .dic_sec_02_top > h2 > span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 0.125rem;
  }
  .service_info_page .dic_sec_02_top > h2 .dic_logo {
    width: 8.125rem;
  }
  .service_info_page .dic_sec_02_top .desc {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    word-break: keep-all;
    letter-spacing: -0.6px;
  }
  .service_info_page .dic_sec_02_cont01 {
    padding-bottom: 3.5rem;
  }
  .service_info_page .dic_sec_02_item01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.125rem;
    margin-top: 2.5rem;
  }
  .service_info_page .dic_sec_02_item01 > li .thumb {
    width: 6rem;
  }
  .service_info_page .dic_sec_02_item01 > li .in_cont {
    margin-top: 0.5rem;
  }
  .service_info_page .dic_sec_02_item01 > li .in_cont > strong {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .service_info_page .dic_sec_02_item02 {
    margin-top: 0;
    padding: 0 1.25rem 2rem 1.25rem;
    font-size: 0;
    border-radius: 1rem;
    background-color: #fff;
  }
  .service_info_page .dic_sec_02_item02.etc {
    padding: 0 0 2rem 0;
  }
  .service_info_page .dic_sec_02_item02.etc .item_cont::before {
    width: calc(100% - 2.5rem);
  }
  .service_info_page .dic_sec_02_item02 + .dic_sec_02_item02 {
    margin-top: 3rem;
  }
  .service_info_page .dic_sec_02_item02 .item_head {
    position: relative;
    display: block;
    width: auto;
    text-align: center;
  }
  .service_info_page .dic_sec_02_item02 .item_head > .tit {
    position: static;
    display: block;
    padding: 2rem 0 1rem 0;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3125rem;
  }
  .service_info_page .dic_sec_02_item02 .item_head > .tit br {
    display: none;
  }
  .service_info_page .dic_sec_02_item02 .item_head > .tit::before {
    content: "Q";
    position: absolute;
    top: -1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .service_info_page .dic_sec_02_item02 .item_cont {
    position: relative;
    display: block;
    width: auto;
    padding-top: 0.0625rem;
    padding-left: 0;
    text-align: center;
    border-top: none;
    border-left: none;
  }
  .service_info_page .dic_sec_02_item02 .item_cont::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    border-top: 0.0625rem solid #ececec;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .service_info_page .dic_sec_02_item02 .item_cont .desc {
    font-size: 0.875rem;
    line-height: 1.375rem;
    word-break: keep-all;
  }
  .service_info_page .dic_sec_02_item02 .item_cont > .desc {
    padding-top: 1rem;
  }
  .service_info_page .dic_rnd_item {
    padding: 1rem 0 0 0;
  }
  .service_info_page .dic_rnd_item .item01 {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(50% + 0.6875rem);
    width: 9.625rem;
    height: auto;
    padding-top: 0;
  }
  .service_info_page .dic_rnd_item .item01 > span {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .service_info_page .dic_rnd_item .item01::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .service_info_page .dic_rnd_item .item01::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3rem;
    width: 6.875rem;
    height: 6rem;
    background: url(../img/dic/icon_dic_rnditem01.png) no-repeat center center/6.875rem auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .service_info_page .dic_rnd_item .item02 {
    position: relative;
    width: calc(50% + 0.6875rem);
    width: 9.625rem;
    height: auto;
    margin-left: -1.375rem;
    padding-top: 0;
  }
  .service_info_page .dic_rnd_item .item02 > span {
    position: absolute;
    top: 50%;
    left: 50%;
    white-space: nowrap;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .service_info_page .dic_rnd_item .item02::before {
    content: "";
    display: block;
    padding-top: 100%;
    background: none;
  }
  .service_info_page .dic_rnd_item .item02::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3rem;
    width: 6.875rem;
    height: 6rem;
    background: url(../img/dic/icon_dic_rnditem02.png) no-repeat center center/6.875rem auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .service_info_page .dic_rnd_item .item03 {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    margin-top: 6.1875rem;
    margin-left: 0;
    padding-top: 0;
    padding: 1.1875rem 2.1875rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #666;
    text-align: center;
    word-break: keep-all;
    border-radius: 6.25rem;
  }
  .service_info_page .dic_rnd_item .item03 br {
    display: none;
  }
  .service_info_page .dic_rnd_item .item03::before {
    content: "";
    position: absolute;
    top: -3.125rem;
    left: 50%;
    width: 2.8125rem;
    height: 2.25rem;
    background: url(../img/dic/icon_dic_arrow_down.png) no-repeat center center/contain;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .service_info_page .dic_rnd_item .item03 > strong {
    display: block;
    padding-bottom: 0.5rem;
    font-weight: 600;
    color: #f60;
  }
  .service_info_page .info_wave {
    display: none;
  }
  .service_info_page .info_wave_img {
    display: block;
    margin-top: 1rem;
  }
  .service_info_page .info_wave_img img {
    display: block;
    width: 100%;
  }
  .service_info_page .dic_sec_02_item02_swiper {
    position: relative;
    display: block;
    width: 100%;
    min-height: auto;
    padding: 0 0 0.875rem 0;
    overflow: hidden;
  }
  .service_info_page .dic_sec_02_item02_swiper::before {
    content: none;
  }
  .service_info_page .dic_sec_02_item02_swiper::after {
    content: none;
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-pagination {
    bottom: 0;
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-slide {
    padding: 1rem 1.25rem 0 1.25rem;
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button {
    position: absolute;
    top: 7.875rem;
    top: 50%;
    margin-top: -1.125rem;
    z-index: 4;
    width: 2.5rem;
    height: 3rem;
    border-radius: 0;
    border: none;
    background-size: 2.5rem auto;
    background-color: rgba(0, 0, 0, 0);
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button::after {
    content: none;
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button.swiper-button-disabled {
    background-color: rgba(0, 0, 0, 0);
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button.swiper-button-prev {
    left: 0;
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button.swiper-button-next {
    right: 0;
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button-prev {
    background-image: url(../img/dic/icon_swiper_prev_mo.png);
  }
  .service_info_page .dic_sec_02_item02_swiper .swiper-button-next {
    background-image: url(../img/dic/icon_swiper_next_mo.png);
  }
  .service_info_page .help_i_cont_wrap {
    margin-top: 1rem;
    padding: 0 0.75rem;
    font-size: 0;
  }
  .service_info_page .help_i_cont_wrap.sb_type {
    display: block;
    padding-top: 0;
  }
  .service_info_page .help_i_cont_wrap.sb_type .thumb {
    width: 100%;
    margin-top: 0.5rem;
  }
  .service_info_page .help_i_cont_wrap.sb_type .thumb img {
    display: block;
    width: 100%;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    padding: 1rem 0;
    font-size: 0.875rem;
    line-height: 1.125rem;
    color: #666;
    text-align: left;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont > .top_thumb {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin: 0 1rem 0 0;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont > .top_thumb .thumb {
    position: relative;
    display: inline-block;
    font-size: 0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #fff4ed;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont > .top_thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .service_info_page .help_i_cont_wrap .help_i_cont > .top {
    width: auto;
    text-align: center;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont > .top > span {
    padding: 0.25rem 0.75rem;
    color: #f60;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont > .text {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    word-break: keep-all;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont.text_type {
    width: auto;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont.text_type br {
    display: block;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont.normal {
    display: block;
    width: auto;
    padding: 0;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont.normal > .top {
    margin-bottom: 0.5rem;
    line-height: 0;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont.normal > .text {
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: block;
    min-height: 4.125rem;
    line-height: 1.375rem;
    text-align: center;
  }
  .service_info_page .help_i_cont_wrap .help_i_cont + .help_i_cont {
    margin-left: 1rem;
    margin-left: 0;
    padding-top: 0.9375rem;
    border-top: 0.0625rem solid #f0f0f0;
  }
  .service_info_page .dic_sec_03 {
    padding: 3rem 0 1.5rem 0;
  }
  .service_info_page .dic_sec_03 > .inner > h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .service_info_page .dic_sec_03 > .inner > h2 > span {
    padding-left: 2.3125rem;
    background: url(../img/dic/icon_tip.png) no-repeat left center/1.9375rem auto;
  }
  .service_info_page .dic_sec_03_item01 {
    display: block;
    margin-top: 2.5rem;
    padding: 0 1.5rem;
  }
  .service_info_page .dic_sec_03_item01 > .item {
    padding: 0;
  }
  .service_info_page .dic_sec_03_item01 > .item + .item {
    margin-top: 2.5rem;
    padding: 2.5rem 0 0 0;
    border-top: 0.0625rem solid #ececec;
    border-left: none;
    text-align: left;
  }
  .service_info_page .dic_sec_03_item01 > .item .in_cont {
    display: block;
  }
  .service_info_page .dg_step {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0;
  }
  .service_info_page .dg_step > li + li {
    margin-left: 0;
  }
  .service_info_page .dg_step > li + li .thumb::before {
    left: -0.75rem;
  }
  .service_info_page .dg_step > li > span {
    display: block;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #bababa;
  }
  .service_info_page .dg_step > li > .thumb img {
    width: 5rem;
  }
  .service_info_page .dg_step > li > strong {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .service_info_page .dic_btn_bottom {
    margin-top: 4rem;
    padding: 0 1.5rem;
  }
  .service_info_page .dic_btn_bottom .dic_download_btn {
    display: block;
    width: 100%;
  }
  .service_info_page br.pc_br {
    display: none;
  }
  .service_info_page br.mo_br {
    display: block;
  }
  .dic_sec_01.service_info > .inner {
    padding-bottom: 1.6875rem;
  }
}
