@charset "UTF-8";
/* radio */
.comm_radio {
  display: inline-block;
  vertical-align: top;
}

.comm_radio input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.comm_radio input[type=radio] + span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 20px;
  padding-bottom: 2px;
}

.comm_radio input[type=radio] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #c2c2c2;
  border-radius: 50%;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comm_radio input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  background-color: #0099fc;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comm_radio.type input[type=radio] + span {
  line-height: 26px;
  padding-left: 40px;
}

.comm_radio.type input[type=radio] + span::before {
  border-color: #fff;
  background-color: #d6d6d6;
  width: 28px;
  height: 28px;
  margin-right: 14px;
}

.comm_radio.type input[type=radio]:checked + span::before {
  border-color: #fff;
}

.comm_radio.type input[type=radio]:checked + span::after {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
}

/* checkbox */
.comm_check {
  display: inline-block;
  vertical-align: top;
}

.comm_check input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.comm_check input[type=checkbox] + span {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 38px;
  cursor: pointer;
  line-height: 24px;
  font-size: 1.125rem;
  color: #fff;
}

.comm_check input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #d1d1d1;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.comm_check input[type=checkbox] + span::after {
  content: "";
  display: none;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #0094f2;
}

.comm_check input[type=checkbox]:checked + span::after {
  display: block;
}

/* menu linemap */
.linemap_guide-box {
  width: 100%;
  position: relative;
  z-index: 3;
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.comm_linemap {
  width: 1340px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.comm_linemap .home {
  display: inline-block;
  width: 16px;
  height: 60px;
  margin-left: 0;
  margin-right: 20px;
  background: url(../img/ico_home.png) no-repeat left center;
  font-size: 0;
}

.comm_linemap .depth {
  position: relative;
}

.comm_linemap .depth:nth-of-type(1) button {
  min-width: 120px;
}

.comm_linemap .depth:nth-of-type(2) button {
  min-width: 150px;
}

.comm_linemap .depth:nth-of-type(3) button {
  min-width: 200px;
}

.comm_linemap .depth button {
  position: relative;
  line-height: 60px;
  font-size: 16px;
  padding-left: 20px;
  padding-right: 40px;
  text-align: left;
  background: url(../img/ico_arw-linemap.png) right 20px center no-repeat;
}

.comm_linemap .depth button.nobtn {
  background-image: none;
}

.comm_linemap .depth button::before,
.comm_linemap .depth.last button::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 34px;
  background: #eaeaea;
}

.comm_linemap .depth.last button::after {
  right: 0;
  left: auto;
}

.comm_linemap .depth.open button {
  color: #0094f2;
  background-image: url(../img/ico_arw-linemap_on.png);
}

.comm_linemap .depth.open::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #0094f2;
}

.comm_linemap .depth ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #eaeaea;
  display: none;
  background-color: #fff;
}

.comm_linemap .depth ul a {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.comm_linemap .depth ul a.on,
.comm_linemap .depth ul a:hover {
  background: #f7f7f8;
}

.comm_linemap .fix_home,
.comm_linemap .fix_btn-wrap {
  display: none;
}

.linemap_guide-box .depth {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.fix_line {
  padding-top: 60px;
}
.fix_line .linemap_guide-box {
  position: fixed;
  left: 0;
  top: -70px;
  border-top: none;
  -webkit-transition: top 0.4s;
  transition: top 0.4s;
}
.fix_line .linemap_guide-box .comm_linemap .home {
  height: 70px;
  margin-right: 40px;
}
.fix_line .linemap_guide-box .comm_linemap .fix_home {
  display: block;
  margin-right: 98px;
}
.fix_line .linemap_guide-box .comm_linemap .depth {
  margin-right: 40px;
}
.fix_line .linemap_guide-box .comm_linemap .depth button {
  width: 215px;
  line-height: 36px;
  border: 1px solid #eaeaea;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fix_line .linemap_guide-box .comm_linemap .depth::before {
  position: absolute;
  top: 50%;
  left: -23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: ">";
  width: auto;
  color: #bdbdbd;
}
.fix_line .linemap_guide-box .comm_linemap .depth button::before,
.fix_line .linemap_guide-box .comm_linemap .depth.last button::after,
.fix_line .linemap_guide-box .sns_btn-box {
  display: none;
}
.fix_line .linemap_guide-box .fix_btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  padding: 0 5px;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  background: #fff;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden label {
  width: 0;
  height: 0;
  font-size: 0;
  text-indent: 99999em;
  overflow: hidden;
  line-height: 0;
  position: absolute;
  left: -99999em;
  top: -99999em;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input {
  width: 100%;
  height: 70px;
  padding: 0 12px;
  background: #fff;
  border-bottom: 3px solid #203044;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.125rem;
  color: #203044;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input::-webkit-input-placeholder {
  color: #203044;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input::-moz-placeholder {
  color: #203044;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input:-ms-input-placeholder {
  color: #203044;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input::-ms-input-placeholder {
  color: #203044;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input::placeholder {
  color: #203044;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden .detail {
  width: 153px;
  height: 48px;
  margin-left: 9px;
  border-radius: 7px;
  background: #a3a3a3;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .search {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #000 url(../img/ico_viewpage_search.png) no-repeat center;
  font-size: 0;
  line-height: 0;
  z-index: 2;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .search:hover {
  border-color: #0094f2;
  background-color: #0094f2;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.link_box {
  position: relative;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.link_box div {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  padding: 0 5px;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.link_box div a {
  margin-bottom: 5px;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div.link_box .close {
  width: 46px;
  height: 36px;
  background: url(../img/ico_x_b.png) no-repeat center;
  font-size: 0;
  line-height: 0;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #c0c0c0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-color: #bcbcbc;
  background: #fff url(../img/ico_viewpage_f_off.png) no-repeat center;
  font-size: 0;
  line-height: 0;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a:hover {
  border-color: #000;
  background-color: #000;
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a:hover.f {
  background-image: url(../img/ico_viewpage_f.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a:hover.k {
  background-image: url(../img/ico_viewpage_k.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a:hover.p {
  background-image: url(../img/ico_viewpage_p.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a:hover.u {
  background-image: url(../img/ico_viewpage_u.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a:hover.l {
  background-image: url(../img/ico_viewpage_l.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a.k {
  background-image: url(../img/ico_viewpage_k_off.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a.p {
  background-image: url(../img/ico_viewpage_p_off.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a.u {
  background-image: url(../img/ico_viewpage_u_off.png);
}
.fix_line .linemap_guide-box .fix_btn-wrap > div a.l {
  background-image: url(../img/ico_viewpage_l_off.png);
}
.fix_line.open .linemap_guide-box {
  top: 0;
}

/* list pageNum */
.comm_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 37px;
}

.comm_pagination button {
  width: 12px;
  height: 12px;
  border: solid #121212;
  border-width: 0 0 2px 2px;
  -webkit-transform: rotate(225deg) translateY(-10%);
          transform: rotate(225deg) translateY(-10%);
  font-size: 0;
  line-height: 0;
}

.comm_pagination button.prev {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.comm_pagination button.off {
  border-color: #d3d3d3;
}

.comm_pagination span {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px;
}

.comm_pagination span a {
  display: inline-block;
  vertical-align: top;
  width: 47px;
  color: #121212;
  line-height: 47px;
  text-align: center;
  font-weight: 700;
  border-radius: 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.comm_pagination span a.on,
.comm_pagination span a:hover {
  color: #fff;
  background-color: #0094f2;
}

/* selectBox */
.comm_select {
  position: relative;
  height: 50px;
  display: inline-block;
  vertical-align: top;
}

.comm_select > label {
  display: block;
  text-indent: -99999em;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: -99999em;
  top: -99999em;
}

.comm_select select::-ms-expand {
  display: none;
}

.comm_select select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 0 35px 0 20px;
  height: 100%;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  width: 100%;
}

.comm_select::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 8px;
  height: 8px;
  border: solid #000;
  border-width: 0 0 2px 2px;
  -webkit-transform: rotate(315deg) translateY(-75%);
          transform: rotate(315deg) translateY(-75%);
  margin-top: -2px;
}

.comm_select.ong {
  background-color: #f5821f;
  border-radius: 4px;
}

.comm_select.ong select {
  color: #fff;
  background-color: transparent;
}

.comm_select.ong select option {
  color: #333;
}

.comm_select.ong::after {
  border-color: #fff;
}

/* sns */
.sns_btn-box {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns_btn-box span {
  display: block;
  margin-left: 6px;
}

.sns_btn-box span:first-child {
  margin-left: 0;
}

.sns_btn-box span a {
  display: block;
  width: 36px;
  height: 36px;
  background-color: #1d1d1d;
  border-radius: 4px;
  text-indent: -99999em;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.sns_btn-box span a.f {
  background-image: url(../img/ico_viewpage_f.png);
}

.sns_btn-box span a.k {
  background-image: url(../img/ico_viewpage_k.png);
}

.sns_btn-box span a.p {
  background-image: url(../img/ico_viewpage_p.png);
}

.sns_btn-box span a.u {
  background-image: url(../img/ico_viewpage_u.png);
}

.sns_btn-box span a.b {
  background-image: url(../img/ico_viewpage_b.png);
}

.sns_btn-box span a.s {
  background-image: url(../img/ico_viewpage_s.png);
}

.research .sns_btn-box span a:hover {
  background-color: #0094f2;
}

/* page common CSS */
.page_top-wrap {
  position: relative;
  padding: 38px 0 35px;
  background-color: #fff;
}

.page_top-wrap::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(290px);
          transform: translateX(290px);
  content: "";
  width: 378px;
  height: 137px;
  background: url(../img/bg_rsch.png) bottom center no-repeat;
  background-size: 100% auto;
}

.page_top-wrap h2 {
  position: relative;
  padding-bottom: 14px;
  font-size: 2.25rem;
  color: #22a6f1;
  line-height: 1em;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-align: center;
}

.page_top-wrap p {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  font-size: 0.9375rem;
  text-align: center;
  color: #666;
  line-height: 1.2em;
}

.sub_menu.mo,
.sub-swipe {
  display: none;
}

/* 버튼 2개 경우 */
.comm_twins-btns * {
  display: inline-block;
  vertical-align: top;
  width: 160px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #121212;
  margin: 0 7px;
  border-radius: 7px;
  font-size: 1.125rem;
}

.comm_twins-btns *:first-child {
  background-color: #121212;
  color: #fff;
  border-width: 0;
}

/* 동의서 리스트 */
.comm_agreement-lst li {
  margin-top: 32px;
}
.comm_agreement-lst li:first-child {
  margin-top: 0;
}
.comm_agreement-lst li em {
  display: block;
  margin-bottom: 10px;
}

.view_num .comm_select {
  width: 80px;
  height: 40px;
}
.view_num .comm_select select {
  padding-left: 12px;
}
.view_num button {
  width: 64px;
  height: 40px;
  margin-left: 2px;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  background: #0094f2;
}

@media all and (max-width: 1280px) {
  .comm_radio input[type=radio] + span {
    padding-left: 2.34375vw;
    line-height: 1.5625vw;
  }
  .comm_radio input[type=radio] + span::before {
    width: 1.71875vw;
    height: 1.71875vw;
  }
  .comm_radio input[type=radio]:checked + span::after {
    top: 0.46875vw;
    left: 0.46875vw;
    width: 0.78125vw;
    height: 0.78125vw;
  }
  .comm_check input[type=checkbox] + span::before {
    width: 1.5625vw;
    height: 1.5625vw;
    border-width: 1px;
    border-radius: 2px;
  }
  .comm_check input[type=checkbox] + span::after {
    top: 0.390625vw;
    left: 0.390625vw;
    width: 0.78125vw;
    height: 0.78125vw;
  }
  .comm_select {
    height: 3.90625vw;
  }
  .comm_select select {
    font-size: 0.8888888889rem;
    padding: 0 2.734375vw 0 1.5625vw;
    border-radius: 0.46875vw;
  }
  .comm_select::after {
    width: 0.625vw;
    height: 0.625vw;
    right: 0.859375vw;
    margin-top: -0.15625vw;
  }
  .comm_pagination {
    margin-top: 2.890625vw;
  }
  .comm_pagination button {
    width: 0.9375vw;
    height: 0.9375vw;
  }
  .comm_pagination span {
    margin: 0 1.5625vw;
  }
  .comm_pagination span a {
    width: 3.671875vw;
    line-height: 3.671875vw;
    font-size: 0.8888888889rem;
  }
  .comm_linemap {
    width: 95%;
  }
  .comm_linemap .home {
    width: 1.25vw;
    height: 4.6875vw;
    margin-right: 1.5625vw;
    background-size: 100% auto;
  }
  .comm_linemap .depth:nth-of-type(1) button {
    min-width: 9.375vw;
  }
  .comm_linemap .depth:nth-of-type(2) button {
    min-width: 11.71875vw;
  }
  .comm_linemap .depth:nth-of-type(3) button {
    min-width: 15.625vw;
  }
  .comm_linemap .depth:nth-of-type(3) button:after {
    height: 2.65625vw;
  }
  .comm_linemap .depth button {
    line-height: 4.6875vw;
    font-size: 0.8888888889rem;
    padding-left: 1.5625vw;
    padding-right: 3.125vw;
    background-position: right 1.5625vw center;
    background-size: 0.78125vw auto;
  }
  .comm_linemap .depth button::before {
    height: 2.65625vw;
  }
  .comm_linemap .depth ul a {
    padding: 0 1.5625vw;
    font-size: 0.8888888889rem;
    line-height: 3.90625vw;
  }
  .fix_line {
    padding-top: 4.6875vw;
  }
  .fix_line .linemap_guide-box {
    top: -5.46875vw;
  }
  .fix_line .linemap_guide-box .comm_linemap .home {
    min-width: 1.25vw;
    height: 5.46875vw;
    margin-right: 3.125vw;
  }
  .fix_line .linemap_guide-box .comm_linemap .fix_home {
    display: block;
    min-width: 15vw;
    width: 15vw;
    margin-right: 7.65625vw;
  }
  .fix_line .linemap_guide-box .comm_linemap .depth {
    margin-right: 3.125vw;
  }
  .fix_line .linemap_guide-box .comm_linemap .depth button {
    width: 13.28125vw;
    line-height: 2.8125vw;
  }
  .fix_line .linemap_guide-box .comm_linemap .depth::before {
    left: -1.796875vw;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div {
    height: 5.46875vw;
    padding: 0 0.390625vw;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden input {
    height: 5.46875vw;
    padding: 0 0.9375vw;
    font-size: 1rem;
    border-width: 2px;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .hidden .detail {
    width: 10.15625vw;
    height: 3.75vw;
    margin-left: 0.703125vw;
    border-radius: 0.546875vw;
    font-size: 1rem;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div.search_box .search {
    width: 3.59375vw;
    height: 3.59375vw;
    background-size: 1.328125vw auto;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div.link_box div {
    top: 5.078125vw;
    left: 0;
    padding: 0 0.390625vw;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div.link_box div a {
    margin-bottom: 0.390625vw;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div.link_box .close {
    width: 3.59375vw;
    height: 2.8125vw;
    background-size: 1.25vw;
  }
  .fix_line .linemap_guide-box .fix_btn-wrap > div a {
    width: 3.59375vw;
    height: 3.59375vw;
    background-size: 2.8125vw auto;
  }
  .sns_btn-box span {
    margin-left: 0.46875vw;
  }
  .sns_btn-box span a {
    width: 2.8125vw;
    height: 2.8125vw;
    background-size: 100% auto;
  }
  .page_top-wrap {
    padding: 2.96875vw 0 2.734375vw;
  }
  .page_top-wrap::before {
    -webkit-transform: translateX(16.40625vw);
            transform: translateX(16.40625vw);
    width: 29.53125vw;
    height: 10.703125vw;
  }
  .page_top-wrap h2 {
    padding-bottom: 1.09375vw;
    font-size: 2rem;
  }
  .page_top-wrap p {
    max-width: 95%;
    font-size: 0.8333333333rem;
  }
  .comm_twins-btns * {
    width: 12.5vw;
    height: 4.6875vw;
    line-height: 4.6875vw;
    font-size: 1rem;
    border-radius: 0.546875vw;
  }
  .view_num .comm_select {
    width: 6.25vw;
    height: 3.125vw;
    font-size: 0.8888888889rem;
  }
  .view_num .comm_select select {
    font-size: 0.8888888889rem;
    padding-left: 0.9375vw;
  }
  .view_num button {
    width: 5vw;
    height: 3.125vw;
    margin-left: 0.15625vw;
    border-radius: 0.46875vw;
    font-size: 0.8888888889rem;
  }
}
@media all and (max-width: 720px) {
  .comm_radio input[type=radio] + span {
    padding-left: 4.1666666667vw;
    line-height: 2.7777777778vw;
    padding-bottom: 0.1388888889vw;
  }
  .comm_radio input[type=radio] + span::before {
    width: 3.0555555556vw;
    height: 3.0555555556vw;
  }
  .comm_radio input[type=radio]:checked + span::after {
    top: 0.8333333333vw;
    left: 0.8333333333vw;
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
  .comm_radio.type input[type=radio] + span {
    padding-left: 8.3333333333vw;
    line-height: 6.25vw;
  }
  .comm_radio.type input[type=radio] + span::before {
    width: 6.25vw;
    height: 6.25vw;
  }
  .comm_radio.type input[type=radio]:checked + span::after {
    width: 4.5833333333vw;
    height: 4.5833333333vw;
  }
  .comm_radio.type + span {
    line-height: 3.6111111111vw;
    padding-left: 5.5555555556vw;
  }
  .comm_radio.type + span::before {
    border-color: #fff;
    background-color: #d6d6d6;
    width: 3.8888888889vw;
    height: 3.8888888889vw;
    margin-right: 1.9444444444vw;
  }
  .comm_radio.type:checked + span::before {
    border-color: #fff;
  }
  .comm_radio.type:checked + span::after {
    width: 2.2222222222vw;
    height: 2.2222222222vw;
    border-width: 0.2777777778vw;
  }
  .comm_check input[type=checkbox] + span {
    padding-left: 5.2777777778vw;
    line-height: 3.3333333333vw;
    font-size: 1rem;
  }
  .comm_check input[type=checkbox] + span::before {
    width: 3.75vw;
    height: 3.75vw;
    border-width: 0.2777777778vw;
    border-radius: 0.5555555556vw;
  }
  .comm_check input[type=checkbox] + span::after {
    top: 0.9722222222vw;
    left: 0.9722222222vw;
    width: 1.8055555556vw;
    height: 1.8055555556vw;
    border-radius: 0.5555555556vw;
  }
  .comm_linemap {
    width: 100%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .comm_linemap .home, .comm_linemap > a {
    display: none;
  }
  .comm_linemap .depth {
    display: none;
  }
  .comm_linemap .depth.mo {
    display: block;
    width: 50%;
    border-right: 1px solid #eaeaea;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .comm_linemap .depth.last {
    display: block;
    width: 50%;
  }
  .comm_linemap .depth.one {
    width: 100%;
  }
  .comm_linemap .depth button {
    width: 100%;
    margin-left: 0;
    padding: 0 6.3888888889vw 0 4.1666666667vw;
    font-size: 1rem;
    line-height: 11.1111111111vw;
    font-weight: 500;
    background-image: url(../img/m/ico_arw-linemap.png);
    background-size: 2.5vw auto;
    background-position: right 4.1666666667vw center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .comm_linemap .depth button::before, .comm_linemap .depth button::after {
    display: none;
  }
  .comm_linemap .depth ul {
    border-left: none;
    border-right: none;
  }
  .comm_linemap .depth ul li a {
    text-align: center;
    padding: 0;
    font-size: 0.9166666667rem;
    line-height: 9.7222222222vw;
    font-weight: 500;
  }
  .comm_linemap .depth.open button {
    background-image: url(../img/m/ico_arw-linemap_on.png);
  }
  .fix_line {
    padding-top: 23.6111111111vw;
  }
  .fix_line .nav_wrap {
    position: fixed;
    left: 0;
    top: -23.6111111111vw;
    background: #fff;
    -webkit-transition: top 0.4s;
    transition: top 0.4s;
  }
  .fix_line .linemap_guide-box {
    top: -15.2777777778vw;
    border-top: 1px solid #eaeaea;
  }
  .fix_line .linemap_guide-box .comm_linemap .home {
    min-width: 2.2222222222vw;
    height: 9.7222222222vw;
    margin-right: 5.5555555556vw;
  }
  .fix_line .linemap_guide-box .comm_linemap .depth {
    margin-right: 0;
  }
  .fix_line .linemap_guide-box .comm_linemap .depth button {
    width: 100%;
    line-height: 11.1111111111vw;
    border: none;
  }
  .fix_line .linemap_guide-box .comm_linemap .depth::before,
  .fix_line .linemap_guide-box .comm_linemap .fix_home,
  .fix_line .linemap_guide-box .fix_btn-wrap {
    display: none;
  }
  .fix_line.open .nav_wrap {
    top: 0;
  }
  .fix_line.open .linemap_guide-box {
    top: 15.2777777778vw;
  }
  .comm_pagination {
    margin-top: 5.5555555556vw;
  }
  .comm_pagination button {
    width: 3.0555555556vw;
    height: 3.0555555556vw;
    -webkit-transform: rotate(225deg) translateY(0%);
            transform: rotate(225deg) translateY(0%);
  }
  .comm_pagination span {
    margin: 0 2.7777777778vw;
  }
  .comm_pagination span a {
    width: 5.8333333333vw;
    line-height: 5.8333333333vw;
    font-size: 0.8333333333rem;
  }
  .comm_select {
    height: 6.6666666667vw;
  }
  .comm_select select {
    border-radius: 1.3888888889vw;
    padding: 0 6.9444444444vw 0 2.7777777778vw;
    font-size: 1rem;
    line-height: 1.2em;
  }
  .comm_select::after {
    right: 2.7777777778vw;
    width: 1.1111111111vw;
    height: 1.1111111111vw;
    border-width: 0 0 0.2777777778vw 0.2777777778vw;
  }
  .comm_select .ong {
    border-radius: 1.3888888889vw;
  }
  .comm_agreement-lst li {
    margin-top: 4.1666666667vw;
    line-height: 1.3em;
  }
  .comm_twins-btns * {
    width: 26.3888888889vw;
    height: 11.1111111111vw;
    line-height: 11.1111111111vw;
    margin: 0 0.5555555556vw;
    border-radius: 0.9722222222vw;
    font-size: 1rem;
  }
  .sns_btn-box {
    display: none;
  }
  .page_top-wrap {
    padding: 4.1666666667vw 0;
  }
  .page_top-wrap::before {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 33.8888888889vw;
    height: 18.6111111111vw;
    background-image: url(../img/m/bg_rsch.png);
  }
  .page_top-wrap h2 {
    padding-bottom: 1.3888888889vw;
    font-size: 1.5rem;
  }
  .page_top-wrap p {
    max-width: 80%;
    font-size: 0.8333333333rem;
    line-height: 1.3em;
  }
  .page_top-wrap p span {
    display: block;
  }
  .sub_menu.mo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 11.1111111111vw;
    padding-left: 0.6944444444vw;
    background: #fff;
    border-top: 1px solid #eaeaea;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sub_menu.mo::-webkit-scrollbar {
    display: none;
  }
  .sub_menu.mo li {
    margin: 0;
    height: 100%;
  }
  .sub_menu.mo li a {
    display: block;
    padding: 0 2.0833333333vw;
    height: 100%;
    line-height: 11.1111111111vw;
    font-size: 1rem;
    white-space: nowrap;
  }
  .sub_menu.mo li.on a {
    color: #0094f2;
    font-weight: 700;
  }
  .sub-swipe {
    display: block;
    padding: 0 11.1111111111vw;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    position: relative;
  }
  .sub-swipe.start::after, .sub-swipe.end::after {
    display: block;
    content: "";
    width: 11.1111111111vw;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .sub-swipe.start::after {
    left: 0;
  }
  .sub-swipe.end::after {
    right: 0;
  }
  .sub-swipe > button {
    width: 11.1111111111vw;
    height: 100%;
    font-size: 0;
    line-height: 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2.7777777778vw auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
  }
  .sub-swipe > button.left {
    background-image: url(./../img/m/ico_arw-prev.png);
    left: 0;
  }
  .sub-swipe > button.right {
    background-image: url(./../img/m/ico_arw-next.png);
    right: 0;
  }
  .sub-swipe .sub_menu.mo {
    border-top: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .view_num {
    display: none;
  }
  .view_num .comm_select {
    width: 13.8888888889vw;
    height: 9.7222222222vw;
    font-size: 0.8333333333rem;
  }
  .view_num .comm_select select {
    font-size: 0.8333333333rem;
    padding-left: 1.6666666667vw;
  }
  .view_num button {
    width: 11.1111111111vw;
    height: 9.7222222222vw;
    margin-left: 0.2777777778vw;
    border-radius: 0.8333333333vw;
    font-size: 0.8333333333rem;
  }
}