@charset "UTF-8";
/*
      Date   : 2022.10.13
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.5rem;
}

strong {
  font-weight: normal;
}

em {
  font-style: normal;
}

a {
  color: #292929;
  text-decoration: none;
  cursor: pointer;
}

button {
  border: none;
  outline: none;
  color: #292929;
  cursor: pointer;
  background-color: transparent;
  font-size: 1.4rem;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

input {
  outline: none;
  border: none;
  background: #fff;
  color: #333;
  padding: 0 10px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #a8a8a8;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #a8a8a8;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #a8a8a8;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #a8a8a8;
}

input::placeholder,
textarea::placeholder {
  color: #a8a8a8;
}

input::-ms-clear {
  display: none;
}

input:-webkit-autofill {
  background: #fff;
  -webkit-text-fill-color: #333;
}

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear {
  display: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html, body {
  width: 100%;
  height: 100%;
  min-width: 280px;
  font-family: sans-serif;
}

html {
  font-size: 10px;
}

body {
  position: relative;
  color: #292929;
  font-size: 1.6rem;
  line-height: 1;
  word-break: break-word;
  -webkit-overflow-scrolling: touch;
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  background-color: #6d6d6d;
  border-radius: 5px;
}
body::-webkit-scrollbar-track {
  background-color: #bebebe;
  border-radius: 5px;
}

@-webkit-keyframes rotationLoading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes rotationLoading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.content {
  position: relative;
}
.content::after {
  content: "";
  display: block;
  clear: both;
}

input:not([type=checkbox]),
textarea {
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1.5rem;
}

input[type=date] {
  position: relative;
  padding: 1rem 0 !important;
  margin: 0 !important;
  font-family: "NotoSansR";
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}
input[type=date]::-webkit-calendar-picker-indicator, input[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  cursor: pointer;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  height: 2rem;
  font-size: 1.6rem;
  cursor: pointer;
}
input[type=checkbox] + label::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -1px 0.5rem 0 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=checkbox] + label::after {
  position: absolute;
  top: 1.2rem;
  left: 0.4rem;
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.3rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.7rem 0.3rem 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-left: 1px solid #a8a8a8;
  border-bottom: 1px solid #a8a8a8;
  border-width: 2px;
}
input[type=checkbox]:checked + label::before {
  border-color: #ffc600;
  background-color: #ffc600;
}
input[type=checkbox]:checked + label::after {
  border-color: #fff;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.813rem 2rem 0.813rem 0.813rem;
  background-image: url("../image/icon_select.svg");
  background-size: 0.625rem 0.4rem;
  background-position: right 10px center;
  background-repeat: no-repeat;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1.5rem;
  font-family: sans-serif;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.scrollBox {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: scroll;
}

.inputTitle {
  display: inline-block;
  margin: 0 1rem 1rem 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.inputBox {
  position: relative;
  margin-bottom: 1rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
}
.inputBox input {
  width: 100%;
  padding: 1.7rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  font-size: 1.5rem;
}
.inputBox.warning {
  margin-bottom: 3rem;
  border-color: #fe4e3a;
}
.inputBox.warning::after {
  position: absolute;
  top: calc(100% + 0.5rem);
  display: block;
  content: attr(data-info);
  width: 100%;
  height: 20px;
  font-size: 1.2rem;
  color: #fe4e3a;
}
.inputBox .cont {
  display: none;
}
.inputBox.infoText {
  margin-bottom: 3rem;
  border-color: #fe4e3a;
}
.inputBox.infoText .cont {
  position: absolute;
  top: calc(100% + 0.5rem);
  display: block;
  width: 100%;
  height: 20px;
  font-size: 1.2rem;
  color: #fe4e3a;
}
.inputBox.infoText.black {
  border-color: #d8d8d8;
}
.inputBox.infoText.black .cont {
  color: #000;
}
.inputBox.disabledW {
  background-color: #fff !important;
  border: none;
}
.inputBox.disabledW input {
  padding-left: 0 !important;
}
.inputBox.type02 {
  max-width: 42rem;
  margin: 3rem auto 5rem;
  text-align: left;
}

.content {
  min-height: calc(100vh - 30rem);
}

.center {
  width: calc(100% - 3rem);
  max-width: 123rem;
  margin: 0 auto;
}

.center_100 {
  width: 100%;
  max-width: 123rem;
  margin: 0 auto;
}

.center_500 {
  width: calc(100% - 3rem);
  max-width: 50rem;
  margin: 0 auto;
}

.pc_br {
  display: block;
}

.pc_only {
  display: inline-block;
}

.mob-br, .mob-only {
  display: none;
}

.txt-red {
  color: #fe4e3a;
}

.txt-main {
  color: #ffc600;
}

.txt-blue {
  color: #3da0f8;
}

.red {
  color: #f00 !important;
}

.btn {
  display: inline-block;
  padding: 1.7rem 1rem;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  text-align: center;
  border: 1px solid transparent;
  line-height: 1;
  color: #000;
}
.btn.btn-yellow {
  background-color: #fee500;
  border-color: #fee500;
}
.btn.btn-red {
  background-color: #fe4e3a;
  border-color: #fe4e3a;
  color: #fff;
  font-weight: bold;
}
.btn.btn-black {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.btn.btn-main {
  background-color: #ffc600;
  border-color: #ffc600;
}
.btn.btn-border {
  background-color: #fff;
  border-color: #d8d8d8;
}
.btn.btn-grayborder {
  background-color: #f5f5fa;
  border-color: #d8d8d8;
}
.btn.disabled {
  border: solid 1px #e5e5e5 !important;
  background: #f8f8f8 !important;
  color: #b5b5b5 !important;
}
.btn.txtBtn {
  display: inline-block;
  padding: 1rem 0;
  font-weight: bold;
  font-size: 1.6rem;
}
.btn.btn_100 {
  width: 100%;
}
.btn.btn-r {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3px 0.5rem 0 0;
  background-image: url(../image/reset_ico.svg);
}
.btn.btn-d {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3px 0.5rem 0 0;
  background-image: url(../image/download_b_l_ico.svg);
  background-size: 100% auto;
}
.btn.btn-b {
  background-color: #212121;
  color: #fff;
}
.btn.btn-b.btn-d::before {
  background-image: url(../image/download_w_ico.svg);
}
.btn.btn-line {
  border: 1px solid #ffc600;
  color: #ffc600;
}
.btn.btn-line-b {
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
}
.btn.btn-line-g {
  border: 1px solid #d8d8d8;
  color: #a8a8a8;
  background-color: #fff;
}
.btn.btn-sub {
  background-color: #fff1c1;
  color: #000;
}
.btn.btn-gra {
  background: -o-linear-linear-gradient(to bottom, #ffe600, #ffce00 47%, #ffc600);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe600), color-stop(47%, #ffce00), to(#ffc600));
  background: linear-gradient(to bottom, #ffe600, #ffce00 47%, #ffc600);
  color: #000;
}
.btn.btn-w {
  border: 1px solid #212121;
}
.btn.btn-s {
  border-radius: 0;
}
.btn.disabled02 {
  border: solid 1px #999 !important;
  background: #999 !important;
  color: #fff !important;
}
.btn i {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: -0.5rem 0.8rem 0 0;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.btn i.repleasy {
  position: relative;
  width: 8rem;
  height: 1rem;
  background-image: url(../image/logo.svg);
}
.btn i.repleasy::before {
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 1.7rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/logo_mini.svg);
}
.btn i.kakao {
  background-image: url(../image/login_kakao.svg);
}
.btn i.google {
  background-image: url(../image/login_google.svg);
}

@media only screen and (max-width: 768px) {
  .pc-br,
  .pc-only {
    display: none !important;
  }
  .mob-br {
    display: block !important;
    margin: 0 !important;
  }
  .mob-only {
    display: inline-block !important;
    margin: 0 !important;
  }
  .btn-fixed-area {
    position: fixed;
    bottom: 0rem;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    z-index: 901;
  }
  .btn-fixed-area.on {
    z-index: 900;
  }
  .btn-fixed-area > button,
  .btn-fixed-area > a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    height: 100%;
    padding: 1.5rem 0rem !important;
    margin: 0 !important;
    border-radius: 0 !important;
    font-size: 1.6rem !important;
  }
}
@media only screen and (max-width: 480px) {
  html,
  body {
    font-size: 2.33vw;
  }
}
@font-face {
  font-family: "NotoSansR";
  src: url("../font/notokr-regular.eot");
  /* IE9 Compat Modes */
  src: url("../font/notokr-regular.eot?#iefix") format("embedded-opentype"), url("../font/notokr-regular.woff") format("woff");
}
html, body, button, input, select, textarea, pre {
  font-family: "NotoSansR", sans-serif;
}

header {
  position: relative;
  background-color: #ffc600;
}
header h1 {
  display: inline-block;
  width: 21.5rem;
  vertical-align: middle;
}
header h1 a {
  display: block;
  height: 100%;
}
header h1 a img {
  display: block;
  width: 100%;
  height: auto;
}
header .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 10rem;
}
header .gnbMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9.4rem;
}
header .gnbMenu a, header .gnbMenu span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
header .gnbMenu .depthWrap {
  display: none;
}
header .userArea {
  cursor: pointer;
}
header .userArea .userNoLogin {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #fff1c1;
  background-image: url("../image/icon_user.svg");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
header .userArea .userLogin {
  position: relative;
  display: none;
}
header .userArea .userLogin .userName {
  display: block;
  padding: 0.8rem;
  border-radius: 2rem;
  background-color: #fff1c1;
  font-size: 1.2rem;
  text-align: center;
}
header .userArea .userLogin .userName i {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-image: url("../image/icon_userLogin.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  vertical-align: middle;
}
header .userArea .userLogin .userName i img {
  display: block;
  width: 105%;
  height: 105%;
}
header .userArea .userLogin .userName::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 0.6rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 0.8rem 0 2rem;
  background-image: url("../image/icon_down.svg");
}
header .userArea .userLogin .userMenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #ccc;
  background-color: #fff;
  z-index: 5000;
  display: none;
}
header .userArea .userLogin .userMenu a {
  font-size: 1.3rem;
  line-height: 2;
}
header .userArea .userLogin .userMenu.on {
  display: block;
}
header .userArea.loginComplete .userNoLogin {
  display: none;
}
header .userArea.loginComplete .userLogin {
  display: block;
}
header .mobMenuOpen {
  display: none;
}

footer {
  clear: both;
  padding: 4.8rem 0;
  border-top: 1px solid #d8d8d8;
  background-color: #fff;
  color: #555;
}
footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10rem;
}
footer ul {
  padding: 0 0 2.5rem 0;
}
footer ul li {
  display: inline-block;
  color: #000;
  line-height: 1.5;
}
footer ul li a {
  font-size: 1.6rem;
}
footer ul li:last-child {
  padding: 0;
}
footer ul li:last-child::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  margin: -1px 1rem 0;
  vertical-align: middle;
}
footer p {
  font-size: 1.4rem;
  line-height: 2;
}
footer p:last-of-type {
  padding-top: 0.5rem;
}

.sp-title {
  display: none;
}
.sp-title.sub-menu {
  display: block;
  float: left;
  width: 20rem;
  margin-right: 5rem;
}
.sp-title.sub-menu .mob-btn-back,
.sp-title.sub-menu .sm-now {
  display: none;
}
.sp-title.sub-menu .alertLineBtn, .sp-title.sub-menu .hoverInfo {
  display: none;
}
.sp-title.sub-menu .center {
  width: 100%;
}
.sp-title.sub-menu h2 {
  padding: 5rem 0 3rem;
  font-size: 3rem;
  font-weight: 700;
}
.sp-title.sub-menu.type02 h2 {
  padding: 3rem 0 3rem;
  font-size: 2rem;
}
.sp-title.sub-menu .sm-list {
  padding-top: 1.5rem;
  border-top: 1px solid #d8d8d8;
}
.sp-title.sub-menu .sm-list li a {
  display: block;
  padding: 1.5rem 0;
  color: #a8a8a8;
  font-size: 1.6rem;
}
.sp-title.sub-menu .sm-list li.on a {
  color: #ffc600;
}
.sp-title.sub-menu + .sm-div {
  float: left;
  width: calc(100% - 25rem);
}
.sp-title .sb-mob-close {
  position: absolute;
  top: 50%;
  left: 2.1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 2.1rem;
  display: none;
  width: 1.2rem;
  height: 1.5rem;
  background-image: url(../image/main/icon_mob_back.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  cursor: pointer;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.sp-title .search-box {
  position: fixed;
  top: 3.8rem;
  bottom: auto;
  right: 0.313rem;
  width: 2rem;
  height: 3.125rem;
  padding: 0;
  background-color: #fff;
  z-index: 5000;
}
.sp-title .search-box input {
  display: none;
}
.sp-title .search-box .search {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../image/icon_search_b.svg);
}
.sp-title.on {
  width: 100%;
}
.sp-title.on .search-box {
  width: 100%;
}
.sp-title.on .search-box .sb-mob-close {
  display: block;
}
.sp-title.on .search-box input {
  display: block;
  max-width: 75%;
  height: 100%;
  margin-left: 12%;
}
.sp-title.on .search-box input::-webkit-input-placeholder {
  font-size: 1.5rem;
}
.sp-title.on .search-box input::-moz-placeholder {
  font-size: 1.5rem;
}
.sp-title.on .search-box input:-ms-input-placeholder {
  font-size: 1.5rem;
}
.sp-title.on .search-box input::-ms-input-placeholder {
  font-size: 1.5rem;
}
.sp-title.on .search-box input::placeholder {
  font-size: 1.5rem;
}
.sp-title.on .search-box .search {
  margin-right: 1.2rem;
}

@media only screen and (max-width: 1280px) {
  .sp-title.sub-menu {
    width: 16rem;
    margin-right: 1rem;
  }
  .sp-title.sub-menu + .sm-div {
    width: calc(100% - 17rem);
  }
  header h1 {
    width: 17.5rem;
  }
  header .center {
    height: 7rem;
  }
  header .gnbMenu {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100vw;
    height: calc(100vh - 7rem);
    background-color: #fff;
    z-index: 5000;
    display: none;
  }
  header .gnbMenu.on {
    display: block;
  }
  header .gnbMenu li > a, header .gnbMenu li > span {
    padding: 2.2rem 3rem;
  }
  header .gnbMenu li.depth02 > a {
    display: none;
  }
  header .gnbMenu li.depth02 .depthWrap {
    display: block;
  }
  header .gnbMenu li.depth02 .depthWrap ul {
    display: none;
  }
  header .gnbMenu li.depth02 .depthWrap .depthOpen {
    position: relative;
    cursor: pointer;
  }
  header .gnbMenu li.depth02 .depthWrap .depthOpen::after {
    position: absolute;
    top: 0rem;
    right: 1rem;
    display: block;
    content: "";
    width: 1.6rem;
    height: 1.7rem;
    background-image: url(../image/icon_mob_back.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
  }
  header .gnbMenu li.depth02 .depthWrap .depthOpen.on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  header .gnbMenu li.depth02 .depthWrap .depthOpen.on + ul {
    display: block;
    padding: 1.5rem 1rem;
    margin: 1.5rem 0 0;
    background-color: #f5f5fa;
  }
  header .gnbMenu li.depth02 .depthWrap .depthOpen.on + ul a {
    padding: 1.2rem;
    font-size: 1.8rem;
    font-weight: normal;
  }
  header .userArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
  }
  header .userArea .userNoLogin {
    background-color: transparent;
    background-size: 60%;
  }
  header .userArea .userLogin .userName {
    padding: 0;
    background-color: transparent;
  }
  header .userArea .userLogin .userName span {
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
  }
  header .userArea .userLogin .userName i {
    width: 3rem;
    height: 3rem;
  }
  header .userArea .userLogin .userName::after {
    display: none;
  }
  header .userArea .userLogin .userMenu {
    right: 0;
    width: 300%;
  }
  header .mobMenuOpen {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../image/mob_menu.svg");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
  }
  header .mobMenuOpen.on {
    background-image: url("../image/icon_close.svg");
    background-size: 90%;
  }
  footer {
    text-align: center;
    padding: 4em 0rem;
    letter-spacing: -0.25px;
  }
  footer > div {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  footer > div > img {
    display: none;
  }
  footer ul li a {
    color: #000;
    font-weight: bold;
  }
  footer ul li:last-child::before {
    height: 1.2rem;
    margin: -5px 1rem 0 1rem;
  }
  footer p {
    font-size: 1.5rem;
  }
  footer p:last-of-type {
    padding-top: 2rem;
  }
  .sp-title {
    position: relative;
    display: block;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #d8d8d8;
    z-index: 1000;
  }
  .sp-title .center {
    width: 100%;
  }
  .sp-title h2 {
    display: block;
    width: 100%;
    height: auto;
    padding: 1.8rem 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
  }
  .sp-title .mob-btn-back {
    position: absolute;
    top: 1.8rem;
    left: 1rem;
    display: block;
    width: 1.5rem;
    height: 2rem;
    background-image: url(../image/main/icon_mob_back.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    cursor: pointer;
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
  }
  .sp-title.sub-menu {
    float: none;
    width: 100%;
    margin-right: 0;
    border-bottom: none;
  }
  .sp-title.sub-menu .mob-btn-back {
    display: block;
  }
  .sp-title.sub-menu .alertLineBtn {
    display: block;
    position: absolute;
    top: 1.7rem;
    right: 1rem;
  }
  .sp-title.sub-menu .sm-now {
    position: relative;
    display: none;
    width: 100%;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }
  .sp-title.sub-menu .sm-now.on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .sp-title.sub-menu .sm-now.on + ul.sm-list {
    display: block;
  }
  .sp-title.sub-menu .sm-now .sm-open {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 1.5rem;
    background-image: url(../image/icon_faq_more_open.svg);
    background-size: 100% auto;
  }
  .sp-title.sub-menu .sm-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0rem;
    border-top: none;
    border-bottom: 1px solid #d8d8d8;
    z-index: 3000;
  }
  .sp-title.sub-menu .sm-list li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .sp-title.sub-menu .sm-list li a {
    text-align: center;
    color: #999;
    font-weight: bold;
    border-bottom: 2px solid transparent;
  }
  .sp-title.sub-menu .sm-list li.on a {
    color: #000;
    border-bottom-color: #000;
  }
  .sp-title.sub-menu h2 {
    padding: 1.8rem 0 1.8rem;
    font-size: 1.8rem;
  }
  .sp-title.sub-menu.type02 h2 {
    padding: 1.8rem 0 1.8rem;
    font-size: 1.8rem;
  }
  .sp-title.sub-menu + .sm-div {
    float: none;
    width: 100%;
    margin-top: 0rem;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .sp-title.sub-menu + .sm-div {
    padding: 0;
  }
}
.sectionTitle {
  font-size: 2.2rem;
  font-weight: bold;
  vertical-align: middle;
}

.divTitle {
  padding: 2rem 0 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  vertical-align: middle;
}

.pageTitle {
  position: relative;
  padding: 2rem 0;
  text-align: center;
}
.pageTitle .backstepBtn {
  position: absolute;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pageTitle .alertLineBtn {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
}
.pageTitle + .tabList {
  margin: 1rem 0 1.8rem;
}

.txtRight {
  display: block;
  margin: 0 0 1rem;
  font-size: 1.4rem;
  color: #666;
  text-align: right;
}

.closeBtn {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
}
.closeBtn::before, .closeBtn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: inline-block;
  width: 0.2rem;
  height: 100%;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  border-radius: 0.5rem;
}
.closeBtn::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.closeBtn::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.backstepBtn {
  position: relative;
  display: inline-block;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  display: inline-block;
  width: 1.5rem;
  height: 2.5rem;
  background-image: url(../image/top_back.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
  background-size: auto 100%;
  vertical-align: middle;
}
.backstepBtn + .sectionTitle {
  margin-left: 1rem;
}

.alertBtn {
  display: inline-block;
  width: 2.25rem;
  height: 3rem;
  background-image: url(../image/alarm_on.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.alertBtn.on {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.alertBtn.type02 {
  margin-right: 3.1rem;
}
.alertBtn.on::after {
  position: absolute;
  top: 15%;
  right: 2%;
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fe4e3a;
  border: 1.5px solid #fff;
  border-radius: 50%;
}

.heartBtn {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../image/ico_like_on.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
  -webkit-filter: grayscale(1) brightness(1.6);
  filter: grayscale(1) brightness(1.6);
}
.heartBtn.on {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.alertLineBtn {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../image/top_alarm.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
}
.alertLineBtn.on {
  background-image: url(../image/alarm_on.svg);
}
.alertLineBtn.on::after {
  position: absolute;
  top: 1%;
  right: 1%;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fe4e3a;
  border: 1px solid #fff;
  border-radius: 50%;
}

.emojiBtn {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../image/emoticon.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
}

.settingBtn {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url(../image/setting.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
}

.moreBtn {
  display: inline-block;
  width: 1rem;
  height: 2rem;
  background-image: url(../image/more.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  vertical-align: middle;
  background-size: auto 100%;
  background-position: top right;
}
.moreBtn.type02 {
  width: 3rem;
  background-position: center;
  background-image: url(../image/more02.svg);
}
.moreBtn.type02 + .optionPop {
  right: auto;
  left: 0;
  min-width: 8rem !important;
}

.moreTxtBtn {
  display: block;
}
.moreTxtBtn::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.3rem 0 0 0.5rem;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.useBtn {
  padding: 0.3rem 1rem;
  margin-right: 0.8rem;
  background-color: #ffc600;
  border-radius: 15px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}

.selectBtn {
  display: block;
}
.selectBtn::after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.5rem 0 0 0.5rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.7rem solid #000;
}
.selectBtn + .optionPop {
  right: auto;
  left: 0;
}

.pagingMoreBtn {
  display: block;
  margin: 2rem auto;
  padding: 0.5rem 3rem;
  border: 1px solid #d8d8d8;
  border-radius: 2rem;
  font-size: 1.4rem;
}
.pagingMoreBtn::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.8rem 0 0 1rem;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.optionBtnWrap {
  position: relative;
}
.optionBtnWrap .optionBtn ~ .optionPop {
  position: absolute;
  top: 3rem;
  right: 0;
  display: none;
  min-width: 15rem;
  padding: 1rem 0;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px #ccc;
  background-color: #fff;
  text-align: left;
  z-index: 4;
}
.optionBtnWrap .optionBtn ~ .optionPop ul li a, .optionBtnWrap .optionBtn ~ .optionPop ul li button {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 1.3rem;
  text-align: left;
}
.optionBtnWrap .optionBtn ~ .optionPop ul li a:hover, .optionBtnWrap .optionBtn ~ .optionPop ul li button:hover {
  background-color: #f5f5fa;
}
.optionBtnWrap .optionBtn + .optionDim {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  z-index: 3;
}
.optionBtnWrap .optionBtn.on + .optionDim, .optionBtnWrap .optionBtn.on ~ .optionPop {
  display: block;
}
.optionBtnWrap .optionBtn.type02 ~ .optionPop {
  right: auto;
  left: 0;
}

.recommentBtn {
  font-weight: bold;
  font-size: 1.4rem;
}
.recommentBtn::before {
  content: "";
  display: inline-block;
  width: auto;
  height: auto;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  content: "답글";
  margin: -0.5rem 0.5rem 0 0;
  font-weight: normal;
}
.recommentBtn.on {
  border-bottom: 1px solid #000;
}

.likeBtn, .dislikeBtn {
  color: #999;
}
.likeBtn::before, .dislikeBtn::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.3rem 0.5rem 0 0;
  background-image: url(../image/thumbs_up_off.svg);
}
.likeBtn.on, .dislikeBtn.on {
  font-weight: bold;
  color: #000;
}
.likeBtn.on::before, .dislikeBtn.on::before {
  background-image: url(../image/thumbs_up_on.svg);
}

.dislikeBtn {
  margin-left: 2rem;
}
.dislikeBtn::before {
  -webkit-transform: rotate(180deg) scaleX(-1);
  transform: rotate(180deg) scaleX(-1);
}

.checkTag {
  display: inline-block;
  min-width: 6.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 1.5rem;
  background-color: #f5f5fa;
  color: #a8a8a8;
  font-size: 1.2rem;
  word-break: keep-all;
  font-size: 1.2rem;
}
.checkTag.on {
  background-color: #ffc600;
  color: #fff;
}
.checkTag::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.3rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.7rem 0.3rem 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-left: 1px solid #a8a8a8;
  border-bottom: 1px solid #a8a8a8;
}
.checkTag.on::before {
  border-color: #fff;
}

.txtTag {
  display: inline-block;
  padding: 0.05rem 0.6rem 0.1rem;
  border: 1px solid #ccc;
  background-color: #f5f5fa;
  font-size: 1.3rem;
}

.subscribeBtn {
  padding: 0.3rem 1rem;
  background-color: #f5f5fa;
  color: #a8a8a8;
  font-size: 1.2rem;
  word-break: keep-all;
  border-radius: 1.5rem;
  font-size: 1.2rem;
}
.subscribeBtn.on {
  background-color: #ffc600;
  color: #fff;
}
.subscribeBtn::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.3rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.7rem 0.3rem 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-left: 1px solid #a8a8a8;
  border-bottom: 1px solid #a8a8a8;
  margin: -0.5rem 0.5rem 0 0;
}
.subscribeBtn::after {
  display: inline-block;
  content: "하기";
}
.subscribeBtn.on::before {
  border-color: #fff;
}
.subscribeBtn.on::after {
  content: "중";
}

.pinBtn {
  background-color: #f5f5fa;
  color: #a8a8a8;
  font-size: 1.2rem;
  word-break: keep-all;
  padding: 0.3rem 0.9rem;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  font-size: 1.3rem;
}
.pinBtn.on {
  background-color: #ffc600;
  color: #fff;
}
.pinBtn::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.3rem 0.3rem 0 0;
  background-image: url(../image/pin_on.svg);
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
}
.pinBtn.on {
  border-color: #ffc600;
}
.pinBtn.on::before {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

.countBtn {
  display: inline-block;
  font-size: 1.4rem;
  color: #999;
}
.countBtn::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.1rem 0.5rem 0 0;
  background-image: url(../image/icon_comment.svg);
}

.hoverInfo {
  font-size: 1.5rem;
}
.hoverInfo i {
  position: relative;
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 0 0 0.5rem;
  border-radius: 50%;
  background-color: #bebebe;
  color: #fff;
  font-style: normal;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: bold;
  cursor: pointer;
}
.hoverInfo i > span {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: -5rem;
  display: none;
  width: 30rem;
  padding: 1.5rem 1rem;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 1rem;
  color: #000;
  font-size: 1.4rem;
  font-weight: normal;
  -webkit-box-shadow: 0px 2px 3px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 3px 3px rgba(0, 0, 0, 0.08);
  z-index: 4;
}
.hoverInfo i > span::after {
  position: absolute;
  top: -0.6rem;
  left: 5.5rem;
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hoverInfo i.on > span, .hoverInfo i.on + .infoDim {
  display: block;
}
.hoverInfo.type02 i span {
  text-align: left;
}

.infoDim {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  z-index: 3;
}

.nodataInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
  text-align: center;
  font-size: 1.5rem;
  color: #777;
  line-height: 1.5;
}
.nodataInfo::before {
  content: "";
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto 1rem;
  background-image: url(../image/ico_nodata.svg);
  border-radius: 50%;
}
.nodataInfo.type02::before {
  width: 5rem;
  height: 5rem;
  background-image: url(../image/my_comment02.svg);
  border-radius: 0;
}

.toggleWrap .toggleBox {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  background-color: #d8d8d8;
  vertical-align: middle;
  cursor: pointer;
}
.toggleWrap .toggleBox::before {
  position: absolute;
  top: 0rem;
  left: 0rem;
  margin-left: 0;
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-image: none;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: 0px 2px 3px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 3px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.toggleWrap .toggleBox.on {
  background-color: #ffc600;
}
.toggleWrap .toggleBox.on::before {
  margin-left: 50%;
  border-color: #ffc600;
}

.alignList li {
  display: inline-block;
  margin-left: 0.3rem;
}
.alignList li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.1rem 0.5rem 0 0;
  background-color: #999;
}
.alignList li:first-child::before {
  display: none;
}
.alignList li:first-child::before {
  display: inline-block;
  background-color: transparent;
}
.alignList li a, .alignList li button {
  display: inline-block;
  color: #999;
  font-size: 1.3rem;
}
.alignList li.on a, .alignList li.on button {
  color: #000;
  font-weight: bold;
}

.tabList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #d8d8d8;
}
.tabList li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.tabList li a, .tabList li button {
  display: inline-block;
  padding: 1.5rem 0;
  color: #999;
  font-size: 1.7rem;
  border-bottom: 2px solid transparent;
  font-weight: bold;
}
.tabList li.on a, .tabList li.on button {
  color: #000;
  border-color: #000;
}

.tabBox {
  display: none;
}
.tabBox.on {
  display: block;
}

.lrWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #d8d8d8;
}
.lrWrap.type02 {
  padding-bottom: 1rem;
  border-bottom-color: transparent;
}

.areaTopLine {
  margin-top: 2rem;
  border-top: 9px solid #f8f8f8;
}
.areaTopLine .divTitle {
  padding-top: 3rem;
}

.userImg span {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.userImg span img {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.userImg span.noImg {
  background-image: url(../image/my_profile_on.svg);
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.userImg span.noImg img {
  display: none;
}
.userImg span.noImg.login {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.profileWrap {
  grid-area: profile;
  display: grid;
  grid-template-areas: "img name btn" "img date btn";
  grid-template-columns: 5rem 5fr 2fr;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 0rem;
}
.profileWrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.profileWrap .userImg {
  grid-area: img;
}
.profileWrap .userName {
  grid-area: name;
  font-size: 1.4rem;
  font-weight: bold;
}
.profileWrap .userDateInfo {
  grid-area: date;
  font-size: 1.2rem;
  color: #999;
}
.profileWrap .userBtnWrap {
  position: relative;
  grid-area: btn;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

.ulList > li {
  margin-top: 2rem;
}

.newsWrap {
  display: grid;
  grid-template-areas: "newstitle newsbtn" "newsinfo newsbtn";
  grid-template-columns: 5fr 1fr;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  row-gap: 0.8rem;
  padding: 2rem;
  background-color: #f5f5fa;
  border-radius: 1rem;
}
.newsWrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newsWrap .newsTitle {
  grid-area: newstitle;
  font-size: 1.6rem;
  word-break: keep-all;
  overflow: hidden;
}
.newsWrap .newsTitle p {
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.newsWrap .newsInfo {
  grid-area: newsinfo;
  font-size: 1.4rem;
  color: #999;
}
.newsWrap .newsBtnWrap {
  position: relative;
  grid-area: newsbtn;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.newsWrap .newsLink {
  text-decoration: underline;
  font-size: 1.3rem;
  font-weight: bold;
}

.commentLink {
  text-decoration: underline;
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 1rem;
}

.commentWrap {
  padding: 2rem 0 0;
}
.commentWrap .profileWrap {
  grid-template-areas: "img name date btn";
  grid-template-columns: 3rem minmax(5rem, auto) 5fr 3fr;
}
.commentWrap .profileWrap .userImg span {
  width: 3rem;
  height: 3rem;
}
.commentWrap .moreBtn {
  width: 2rem;
  background-position: top center;
}
.commentWrap .txtWrap {
  padding: 0 0 2rem 4rem;
  font-size: 1.4rem;
  line-height: 1.5;
}
.commentWrap .newsWrap {
  grid-template-areas: "newstitle newstitle" "newsinfo newsbtn";
  grid-template-columns: 3fr 1fr;
  row-gap: 1.2rem;
  margin: 0 0 2rem 4rem;
}
.commentWrap .newsWrap .newsBtnWrap {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.commentWrap > .lrWrap {
  padding-left: 4rem;
}
.commentWrap.recomment {
  padding: 2rem 2rem 0;
  background-color: #f5f5fa;
  border-bottom: 1px solid #d8d8d8;
}
.commentWrap.recomment .lrWrap {
  margin-bottom: 0;
  border-bottom: none;
}
.commentWrap.recomment .lrWrap .recommentBtn {
  display: none;
}
.commentWrap.focus {
  padding-top: 1rem;
  border: 2px solid #ffc600;
}
.commentWrap.focus > strong {
  display: block;
  padding-bottom: 1rem;
  color: #ffc600;
  font-weight: bold;
  font-size: 1.2rem;
}
.commentWrap.focus .info {
  padding: 3rem 1rem 4rem;
  text-align: center;
  font-size: 1.3rem;
}

.myInfoList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.8rem 0;
}
.myInfoList li > span {
  font-size: 1.6rem;
}
.myInfoList li > span:nth-of-type(1)::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 2.8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.1rem 1rem 0 0rem;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.myInfoList li > span:nth-of-type(2) {
  font-weight: bold;
}
.myInfoList li.point > span:nth-of-type(1):before {
  background-image: url(../image/my_point.svg);
}
.myInfoList li.ranking > span:nth-of-type(1):before {
  background-image: url(../image/comment_ranking2.svg);
  background-position: left calc(50% - 0.1rem) center;
}
.myInfoList li.comment > span:nth-of-type(1):before {
  background-image: url(../image/my_comment.svg);
  background-size: 250%;
  background-position: left calc(50% + 0.2rem) center;
}
.myInfoList li.like > span:nth-of-type(1):before {
  background-image: url(../image/my_like_thumbs.svg);
}

.myManageList, .alertFilterList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem 0;
}
.myManageList li, .alertFilterList li {
  position: relative;
  padding: 1rem 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.myManageList li::before, .alertFilterList li::before {
  position: absolute;
  top: 5%;
  left: 0;
  content: "";
  display: inline-block;
  width: 1px;
  height: 90%;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5fa;
  margin: -1px 1rem 0 0;
  vertical-align: middle;
}
.myManageList li:nth-child(1)::before, .alertFilterList li:nth-child(1)::before {
  display: none;
}
.myManageList li a, .alertFilterList li a {
  display: block;
}
.myManageList li a > span, .alertFilterList li a > span {
  display: block;
}
.myManageList li a > span:nth-of-type(1), .alertFilterList li a > span:nth-of-type(1) {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #777;
}
.myManageList li a > span:nth-of-type(2), .alertFilterList li a > span:nth-of-type(2) {
  font-size: 1.6rem;
}

.alertFilterList {
  margin: 2rem 0 0;
  background-color: #f5f5fa;
  border-radius: 1rem;
}
.alertFilterList li::before {
  background-color: #d8d8d8;
}
.alertFilterList li a {
  color: #999;
}
.alertFilterList li a > span:nth-of-type(1) {
  color: #aaa;
}
.alertFilterList li.on a {
  color: #000;
}
.alertFilterList li.on a > span {
  font-weight: bold;
}
.alertFilterList li.on a > span:nth-of-type(1) {
  color: #777;
}

.subscribeList {
  padding: 1rem 0;
}
.subscribeList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}
.subscribeList li .profileWrap {
  grid-template-columns: 4rem 5fr 2fr;
  width: 100%;
}
.subscribeList li .profileWrap .userImg span {
  width: 4rem;
  height: 4rem;
}
.subscribeList li .profileWrap .userName {
  margin-bottom: 0.8rem;
}
.subscribeList li .btn {
  padding: 1rem 0;
  min-width: 8rem;
  margin-left: 1rem;
  font-size: 1.6rem;
}

.alertBox {
  padding: 1.6rem;
  margin: 2.5rem 0 1rem 0;
  background-color: #fffbee;
  border: 1px solid #f6ecc7;
  border-radius: 1rem;
  text-align: center;
}
.alertBox p {
  font-size: 1.2rem;
}
.alertBox p::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.3rem 0.5rem 0 0;
  background-image: url(../image/alarm_img.svg);
}
.alertBox .btn.btn-main {
  padding: 1rem 3rem;
  margin-top: 1rem;
  color: #fff;
  font-size: 1.6rem;
}

.hashtagList li {
  display: inline-block;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background-color: #f5f5fa;
  border-radius: 2rem;
  font-size: 1.4rem;
}

.userInfoBriefWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 1.8rem;
  background-color: #fffbee;
  border-bottom: 1px solid #d8d8d8;
}
.userInfoBriefWrap .profileWrap {
  grid-template-areas: "img name";
  grid-template-columns: 5rem 15rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.userInfoBriefWrap .profileWrap .userImg span {
  width: 4.65rem;
  height: 4.65rem;
}
.userInfoBriefWrap .profileWrap .userName {
  display: block;
  width: 100%;
  height: 2rem;
  font-size: 1.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
}
.userInfoBriefWrap .uibList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.userInfoBriefWrap .uibList li {
  position: relative;
  padding: 0 1rem 0 3.5rem;
  line-height: 1.2;
}
.userInfoBriefWrap .uibList li::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  content: "";
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.userInfoBriefWrap .uibList li span {
  display: block;
  font-size: 1.2rem;
  color: #888;
}
.userInfoBriefWrap .uibList li b {
  display: block;
  font-size: 1.6rem;
}
.userInfoBriefWrap .uibList li:nth-child(1)::before {
  background-image: url(../image/comment_point.svg);
}
.userInfoBriefWrap .uibList li:nth-child(2)::before {
  background-image: url(../image/comment_ranking2.svg);
  background-size: 190%;
  background-position: left 30% top 38%;
}

.userInfoSettingWrap > div {
  margin: 2rem 0;
}
.userInfoSettingWrap > div .inputBox {
  background-color: #f5f5fa;
}
.userInfoSettingWrap .userImg span {
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
}
.userInfoSettingWrap .flexBox {
  gap: 1rem;
  margin: 1rem 0 0;
}
.userInfoSettingWrap .flexBox .inputBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0;
}
.userInfoSettingWrap .flexBox .btn {
  height: 100%;
  font-size: 1.4rem;
  font-weight: bold;
}

.userPwsettingWrap .btn {
  width: 100%;
  font-weight: bold;
}
.userPwsettingWrap + .moreTxtBtn {
  margin-top: 2rem;
  color: #999;
}
.userPwsettingWrap + .moreTxtBtn::after {
  border-color: #999;
}

.reportInfoList {
  padding: 2rem 0 1rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #d8d8d8;
}
.reportInfoList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.25;
}
.reportInfoList li span {
  display: inline-block;
  width: 6rem;
  color: #999;
  font-weight: bold;
}

.reportChoiceList li {
  padding: 0.8rem 0;
  font-size: 1.6rem;
}
.reportChoiceList li span {
  color: #999;
  font-weight: bold;
}
.reportChoiceList + .btn {
  width: 100%;
  margin: 1rem 0;
}

.snsLoginWrap .lrWrap {
  padding: 1rem 0 3rem 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.snsLoginWrap .inputTitle {
  margin: 4rem 0 2rem;
}
.snsLoginWrap .btnBox .btn {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.snsLoginWrap .info {
  padding: 5rem 0;
}
.snsLoginWrap .info li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.5;
  word-break: keep-all;
}
.snsLoginWrap .info li::before {
  position: absolute;
  top: 0rem;
  left: 0.5rem;
  content: "*";
  display: block;
}

.typingCount {
  margin-right: 1rem;
  color: #999;
  font-size: 1.2rem;
}
.typingCount b {
  color: #000;
}

.typingWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid #d8d8d8;
}
.typingWrap .userImg span {
  width: 3rem;
  height: 3rem;
}
.typingWrap .nologin {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: block;
  padding: 1.8rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
  color: #b5b5b5;
  font-size: 1.4rem;
}
.typingWrap .inputBox {
  display: none;
}
.typingWrap .emojiBtn {
  display: none;
}
.typingWrap .typingBtn .alertBtn, .typingWrap .typingBtn .txtBtn {
  padding: 0;
  display: none;
  color: #b5b5b5;
}
.typingWrap .typingBtn .alertBtn {
  margin: 0 1rem 0 0.5rem;
}
.typingWrap.login .nologin {
  display: none;
}
.typingWrap.login .inputBox {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1rem;
  margin: 0;
}
.typingWrap.login .inputBox input {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.typingWrap.login .typingBtn .btn {
  padding: 0;
}
.typingWrap.login .typingBtn .alertBtn {
  display: block;
}
.typingWrap.focus .emojiBtn, .typingWrap.keyup .emojiBtn {
  display: block;
}
.typingWrap.focus .typingBtn .alertBtn, .typingWrap.keyup .typingBtn .alertBtn {
  display: none;
}
.typingWrap.focus .typingBtn .txtBtn, .typingWrap.keyup .typingBtn .txtBtn {
  display: block;
}
.typingWrap.keyup .emojiBtn {
  display: block;
}
.typingWrap.keyup .inputBox {
  background-color: #fff;
  border-color: #000;
}
.typingWrap.keyup .typingBtn .txtBtn {
  color: #000;
}

.typingWrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid #d8d8d8;
}
.typingWrap2 .nologin {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: block;
  padding: 1.8rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
  color: #b5b5b5;
  font-size: 1.4rem;
}
.typingWrap2 .typingArea, .typingWrap2 .alertBtn {
  display: none;
}
.typingWrap2.login .nologin {
  display: none;
}
.typingWrap2.login .typingArea, .typingWrap2.login .alertBtn {
  display: block;
}
.typingWrap2.login .typingArea {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
}
.typingWrap2.login .typingArea .inputBox {
  padding: 0;
  margin: 0;
  border: none;
}
.typingWrap2.login .typingArea .inputBox textarea {
  resize: none;
  width: 100% !important;
  height: 5rem;
  padding: 1.3rem 1rem;
  font-size: 1.6rem;
  border: none;
  outline: none;
  font-family: sans-serif;
}
.typingWrap2.login .typingArea .lrWrap {
  display: none;
  padding: 1rem;
  border-top: 1px solid #d8d8d8;
  border-bottom: none;
}
.typingWrap2.login .typingArea .lrWrap .btn {
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
}
.typingWrap2.focus .typingArea .inputBox textarea, .typingWrap2.keyup .typingArea .inputBox textarea {
  height: 12rem !important;
  padding: 1.3rem 1rem;
}
.typingWrap2.focus .typingArea .lrWrap, .typingWrap2.keyup .typingArea .lrWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.typingWrap_PC .nologin {
  display: block;
  padding: 1.6rem;
  margin: 0rem 0 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d8d8d8;
  font-size: 1.4rem;
  color: #b5b5b5;
  background-color: #fff;
}
.typingWrap_PC .loginInputBox {
  display: none;
  padding: 1rem;
  margin: 0rem 0 2rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
  background-color: #fff;
}
.typingWrap_PC .loginInputBox .profileWrap {
  grid-template-areas: "img name";
  grid-template-columns: 3rem 1fr;
}
.typingWrap_PC .loginInputBox .userImg {
  width: 3rem;
  height: 3rem;
}
.typingWrap_PC .loginInputBox .userName {
  height: 100%;
  font-size: 1.2rem;
}
.typingWrap_PC .loginInputBox .inputBox {
  margin: 1rem 0;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0;
}
.typingWrap_PC .loginInputBox .inputBox textarea {
  display: block;
  width: 100%;
  min-height: 10rem;
  padding: 0;
  border: none;
  border-radius: 0;
  resize: none;
  font-family: sans-serif;
}
.typingWrap_PC .loginInputBox .inputBox textarea::-webkit-input-placeholder {
  font-size: 1.5rem;
}
.typingWrap_PC .loginInputBox .inputBox textarea::-moz-placeholder {
  font-size: 1.5rem;
}
.typingWrap_PC .loginInputBox .inputBox textarea:-ms-input-placeholder {
  font-size: 1.5rem;
}
.typingWrap_PC .loginInputBox .inputBox textarea::-ms-input-placeholder {
  font-size: 1.5rem;
}
.typingWrap_PC .loginInputBox .inputBox textarea::placeholder {
  font-size: 1.5rem;
}
.typingWrap_PC .loginInputBox .inputBox textarea:focus {
  outline: none;
}
.typingWrap_PC .loginInputBox .lrWrap {
  padding-bottom: 0;
  border-bottom: none;
}
.typingWrap_PC .loginInputBox .lrWrap .btn.btn-main {
  padding: 1rem;
  font-size: 1.5rem;
  color: #fff;
}
.typingWrap_PC.login .nologin {
  display: none;
}
.typingWrap_PC.login .loginInputBox {
  display: block;
}

.floatingWrap {
  position: relative;
  width: 110px;
  height: 90px;
}
.floatingWrap .conditionBtn {
  display: none;
}
.floatingWrap .iconWrap {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-repeat: no-repeat;
  background-position: right 15px bottom;
  background-image: url(../../../image/floating_logo.svg);
  cursor: pointer;
}
.floatingWrap .iconWrap > span {
  position: absolute;
  bottom: 44px;
  right: 0;
  display: block;
  width: 37px;
  height: 37px;
  line-height: 37px;
  background-image: url(../../../image/btn_quick_comment.svg);
  font-weight: bold;
  letter-spacing: -0.25px;
  text-indent: -1px;
  font-size: 12px;
  -webkit-box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 3px 3px 3px rgba(0, 0, 0, 0.02);
}
.floatingWrap.refresh .conditionBtn, .floatingWrap.alert .conditionBtn {
  position: absolute;
  bottom: 38px;
  right: 58px;
  display: block;
  width: 46px;
  height: 46px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../../image/btn_quick_alarm.svg);
  z-index: 1;
  cursor: pointer;
}
.floatingWrap.refresh .conditionBtn {
  background-image: url(../../../image/btn_quick_refresh.svg);
}

.popLayer {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 80vw;
  background-color: #fff;
  border-radius: 1rem;
  z-index: 5001;
  display: none;
}
.popLayer.on {
  display: block;
}
.popLayer.type01 {
  text-align: center;
  font-size: 1.6rem;
}
.popLayer.type01 p {
  padding: 3rem 1rem;
  line-height: 1.5;
}
.popLayer.type01 .closePopBtn {
  width: 100%;
  font-weight: bold;
}
.popLayer.type04 .popContent {
  max-height: 90vh;
  border-radius: 5px;
  font-size: 1.6rem;
}
.popLayer.type04 .popContent h1 {
  width: 100%;
  padding: 1.25rem 0 1rem;
  font-size: 1.6rem;
  text-align: left;
  text-indent: 1.25rem;
  clear: both;
  border-bottom: 1px solid #d8d8d8;
}
.popLayer.type04 .popContent h1.icon::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3px 0.625rem 0 0;
  background-image: url(../image/icon_info.svg);
  background-size: 100% auto;
  vertical-align: middle;
}
.popLayer.type04 .popContent .box {
  max-height: calc(90vh - 3.438rem);
  overflow-y: auto;
  text-align: left;
  padding: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: justify;
  border: none;
}
.popLayer.type04 .popContent .closePopBtn {
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  width: 26px;
  height: 26px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  text-indent: -5000000000px;
  overflow: hidden;
}
.popLayer.type04 .popContent .closePopBtn::before, .popLayer.type04 .popContent .closePopBtn::after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 48%;
  height: 1.8rem;
  width: 2px;
  background-color: #292929;
}
.popLayer.type04 .popContent .closePopBtn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popLayer.type04 .popContent .closePopBtn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.popLayer.type05 {
  width: auto;
}
.popLayer.type05 .popContent {
  width: 80vw;
  max-width: 50rem;
  max-height: 90vh;
  border-radius: 5px;
  font-size: 1.6rem;
}
.popLayer.type05 .popContent h1 {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 1.5rem;
  background-color: #ffc600;
  font-size: 1.6rem;
  text-align: left;
  text-indent: 1.25rem;
  clear: both;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 1rem 1rem 0 0;
}
.popLayer.type05 .popContent h1.icon::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3px 0.625rem 0 0;
  background-image: url(../image/icon_info.svg);
  background-size: 100% auto;
  vertical-align: middle;
}
.popLayer.type05 .popContent h1 .closePopBtn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  min-width: auto;
  border: none;
  width: 26px;
  height: 26px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  text-indent: -5000000000px;
  overflow: hidden;
}
.popLayer.type05 .popContent h1 .closePopBtn::before, .popLayer.type05 .popContent h1 .closePopBtn::after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 48%;
  height: 1.8rem;
  width: 2px;
  background-color: #fff;
}
.popLayer.type05 .popContent h1 .closePopBtn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popLayer.type05 .popContent h1 .closePopBtn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.popLayer.type05 .popContent .box {
  max-height: calc(90vh - 3.438rem);
  overflow-y: auto;
  text-align: left;
  padding: 2rem 1rem;
  line-height: 1.5;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  border: none;
}
.popLayer.type05 .popContent .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0.5rem auto 1.5rem;
}
.popLayer.type05 .popContent .btn {
  min-width: 7.5rem;
  padding: 1.3rem 3rem;
  margin-left: 1rem;
  border-radius: 0;
  font-size: 1.4rem;
}
.popLayer.type05 .popContent .btn:nth-child(1) {
  margin-left: 0;
}
.popLayer.type06 {
  max-width: 40rem;
  overflow: hidden;
}
.popLayer.type06 h1 {
  padding: 1.8rem;
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.8rem;
  font-weight: bold;
}
.popLayer.type06 h1 .closePopBtn {
  position: absolute;
  top: 1.2rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  margin: 0;
  background-color: transparent;
  text-indent: -5000000000px;
  overflow: hidden;
}
.popLayer.type06 h1 .closePopBtn::before, .popLayer.type06 h1 .closePopBtn::after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 48%;
  height: 2.2rem;
  width: 2px;
  background-color: #292929;
}
.popLayer.type06 h1 .closePopBtn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popLayer.type06 h1 .closePopBtn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.popLayer.type06 .box {
  padding: 3rem;
}
.popLayer.type06 .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.popLayer.type06 .btn-area > button, .popLayer.type06 .btn-area a, .popLayer.type06 .btn-area .btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 0;
  font-size: 1.6rem;
}
.popLayer.pop-type-b {
  display: block;
  width: auto;
  opacity: 0;
  z-index: -10000;
  top: auto;
  bottom: 15rem;
  left: 5rem;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.popLayer.pop-type-b.on {
  opacity: 1;
  z-index: 10000;
}
.popLayer.pop-type-b .popContent {
  top: auto;
  bottom: 1.875rem;
  left: 1.875rem;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  min-width: 30rem;
  max-width: calc(100% - 1.875rem);
  padding: 2rem;
  background-color: #000;
  border-radius: 5px;
  color: #fff;
  text-align: left;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.5rem;
  opacity: 0.8;
}
.popLayer.pop-type-b .popContent .box {
  border: none;
}
.popLayer.pop-type-b .popBack {
  display: none;
}
.popLayer.iframePop {
  top: 0;
  left: auto;
  right: 0;
  max-width: 360px;
  height: 100vh;
  overflow: hidden;
}

.popBack {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 5000;
}
.popBack.on {
  display: block;
}

.popLayer iframe {
  width: 100%;
  height: 100%;
  min-height: 80vh;
  position: absolute;
  z-index: 1;
}

.iframePopTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  background-color: #ffc600;
}
.iframePopTitle span {
  font-size: 1.8rem;
  font-weight: bold;
}

.iframeCommentWrap .center, .iframeCommentWrap .center_100 {
  max-width: 100%;
}
.iframeCommentWrap .profilePageWrap {
  padding: 2rem 2rem;
  margin-bottom: 2rem;
  background-color: #f5f5fa;
}
.iframeCommentWrap .profilePageWrap .profileWrap {
  grid-template-columns: 7rem 2fr 1fr;
}
.iframeCommentWrap .profilePageWrap .profileWrap .userImg span {
  width: 6.5rem;
  height: 6.5rem;
}
.iframeCommentWrap .profilePageWrap .profileWrap .userName {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  word-break: break-all;
}
.iframeCommentWrap .profilePageWrap .subscribeBtn {
  padding: 0;
  font-size: 1.6rem;
}
.iframeCommentWrap .profilePageWrap .subscribeBtn::before {
  width: 1.1rem;
  height: 0.4rem;
}
.iframeCommentWrap .profilePageWrap .subscribeBtn.on {
  padding: 0.5rem 1.5rem 0.6rem;
}
.iframeCommentWrap .myInfoList, .iframeCommentWrap .myManageList {
  padding: 2rem;
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 1.5rem;
}
.iframeCommentWrap.pc {
  padding: 1rem;
}
.iframeCommentWrap.pcPop {
  height: 100%;
  overflow: hidden;
}
.iframeCommentWrap.pcPop .iframeInner {
  height: calc(100% - 5.5rem);
  padding-bottom: 5rem;
  overflow: hidden;
  overflow-y: auto;
}
.iframeCommentWrap.pcPop .stWrap {
  padding: 2rem 0rem 2rem;
}
.iframeCommentWrap.pcPop .pageTitle {
  padding: 2.5rem 0 2rem;
}
.iframeCommentWrap.pcPop .pageTitle .backstepBtn {
  left: 2.5rem;
}
.iframeCommentWrap.pcPop .pageTitle .alertLineBtn {
  right: 2.5rem;
}
.iframeCommentWrap.mo .commentWrap .txtWrap, .iframeCommentWrap.moPop .commentWrap .txtWrap {
  font-size: 1.6rem;
}
.iframeCommentWrap.moPop {
  position: fixed;
}
.iframeCommentWrap.moPop::before {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.6;
  z-index: 1;
}
.iframeCommentWrap.moPop > section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
  padding: 0 2rem 7rem;
  background-color: #fff;
  border-radius: 1rem 1rem 0 0;
  z-index: 100;
  overflow: hidden;
  overflow-y: auto;
}
.iframeCommentWrap.moPop > section::-webkit-scrollbar {
  width: 5px;
}
.iframeCommentWrap.moPop > section::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
.iframeCommentWrap.moPop > section::-webkit-scrollbar-track {
  background-color: #bebebe;
  border-radius: 5px;
}
.iframeCommentWrap.moPop > section::before {
  position: absolute;
  top: 1rem;
  left: calc(50% - 3.5rem);
  content: "";
  display: block;
  width: 7rem;
  height: 0.3rem;
  background-color: #000;
  border-radius: 1rem;
  opacity: 0.11;
  z-index: 1;
}
.iframeCommentWrap.moPop > section > div:nth-child(1) {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
.iframeCommentWrap.moPop > section.noPadding {
  padding: 0 0 7rem;
}
.iframeCommentWrap.moPop > section.noPadding > div:not(.lrWrap) {
  padding-left: 1rem;
  padding-right: 1rem;
}
.iframeCommentWrap.moPop > section.noPadding > div.lrWrap {
  margin: 1rem 1rem;
}

.pointBannerArea {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 50px;
  padding: 0 !important;
  margin: 0 !important;
}

.mainProfile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 40rem;
  padding: 1rem;
  background-color: #f5f5fa;
  border-radius: 1rem;
}
.mainProfile > div {
  width: 100%;
}

.iconTitle {
  text-align: center;
}
.iconTitle::before {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto 2rem;
}
.iconTitle.mail::before {
  background-image: url(../image/title_mail.svg);
}
.iconTitle.check::before {
  background-image: url(../image/title_check.svg);
}
.iconTitle ~ p {
  font-size: 1.6rem;
  color: #777;
  text-align: center;
  line-height: 1.5;
}
.iconTitle ~ p span {
  text-decoration: underline;
}
.iconTitle ~ .btn {
  margin-top: 3rem;
  font-weight: bold;
}

.loginWrap .btn {
  width: 100%;
}
.loginWrap .btn.btn-main {
  font-weight: bold;
}
.loginWrap .linkBtnWrap {
  margin: 1.5rem 0 5rem;
  text-align: center;
}
.loginWrap .linkBtnWrap li {
  display: inline-block;
}
.loginWrap .linkBtnWrap li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.1rem 1rem 0;
  background-color: #999;
}
.loginWrap .linkBtnWrap li:first-child::before {
  display: none;
}
.loginWrap .linkBtnWrap li a {
  color: #666;
  font-size: 1.3rem;
}
.loginWrap .info {
  margin: 4rem 0 1.5rem;
  font-size: 1.6rem;
}

.agreeInfoBox {
  padding: 2rem 0;
  margin: 3rem 0 5rem;
  background-color: #f5f5fa;
}
.agreeInfoBox .flexBox {
  padding: 1rem 0;
}
.agreeInfoBox .flexBox .inputTitle {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: normal;
}
.agreeInfoBox .flexBox .inputBox {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.agreeInfoBox .flexBox .inputBox input {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
}
.agreeInfoBox .flexBox .inputBox.warning {
  margin-bottom: 1rem;
}
.agreeInfoBox .flexBox .inputBox.disabled {
  border-color: transparent;
}
.agreeInfoBox .flexBox .inputBox.disabled input {
  background-color: transparent;
  font-weight: bold;
}

.box {
  border: 1px solid #e5e5e5;
}
.box.box-g {
  background-color: #f8f8f8;
}

.grayBox {
  padding: 6rem 0;
  margin: 5rem auto 10rem;
  background-color: #f5f5fa;
  text-align: center;
}
.grayBox p {
  font-size: 1.8rem;
  margin: 0 0 2.5rem;
}
.grayBox ul {
  padding: 0 0 4rem;
  border-bottom: 1px solid #d8d8d8;
}
.grayBox ul li {
  display: inline-block;
  margin: 0 0.5rem;
}
.grayBox .flexBox {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 0;
}
.grayBox .flexBox p {
  margin: 0;
  font-size: 1.5rem;
}
.grayBox .flexBox p + .btn {
  padding: 1.7rem 4rem;
}
.grayBox .flexBox .btn {
  padding: 1.7rem 9.6rem;
  font-size: 1.4rem;
}

.mail-btn {
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.mail-btn.mail-btn-naver {
  background-image: url(../image/naver_mail.svg);
}
.mail-btn.mail-btn-google {
  background-image: url(../image/google_mail.svg);
}
.mail-btn.mail-btn-outlook {
  background-image: url(../image/outlook_mail.svg);
}
.mail-btn.mail-btn-daum {
  background-image: url(../image/daum_mail.png);
}
.mail-btn.mail-btn-nate {
  background-image: url(../image/nate_mail.svg);
}

.policyWrap {
  margin-bottom: 10rem;
}
.policyWrap .check-wrap {
  padding-bottom: 2rem;
}
.policyWrap .check-wrap label {
  height: auto;
  font-size: 1.8rem;
  font-weight: bold;
}
.policyWrap .check-wrap label span.red {
  font-size: 1.6rem;
  font-weight: normal;
  color: #fe4e3a;
}
.policyWrap .check-wrap label::after {
  top: 1.4rem;
}
.policyWrap .check-wrap.type01 {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}
.policyWrap .check-wrap.type01 label {
  position: relative;
  display: block;
  padding-left: 2.5rem;
  color: #333;
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: normal;
}
.policyWrap .check-wrap.type01 label::after {
  top: 1.3rem;
}
.policyWrap .check-wrap.type01 label strong {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.policyWrap .check-wrap.type01 label::before {
  position: absolute;
  left: 0;
  margin: 0;
}
.policyWrap .scrollBox {
  width: 100%;
  height: 20rem;
  padding: 3rem;
  margin-bottom: 5rem;
  color: #333;
  line-height: 1.5;
  font-size: 1.4rem;
  background-color: #f5f5fa;
  overflow-x: auto;
}
.policyWrap .btn {
  display: block;
  max-width: 20rem;
  margin: 0 auto;
}

.membership .sectionTitle {
  margin: 10rem 0 1.5rem;
}
.membership .sectionTitle.type02 {
  margin-top: 4rem;
}
.membership.password .sectionTitle {
  margin: 10rem 0 5rem 0;
}
.membership.password p {
  text-align: center;
  line-height: 1.5;
  margin: 20px auto;
  font-size: 1.5rem;
}
.membership.password .btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.membership.password .btnWrap .btn {
  font-size: 1.5rem;
}

.pw-view {
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../image/icon_join_show_off.svg);
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.pw-view.on {
  background-image: url(../image/icon_join_show_on.svg);
}

.tab-wrap {
  width: 100%;
}
.tab-wrap .tab-list {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.tab-wrap .tab-list li {
  display: table-cell;
  text-align: center;
  cursor: pointer;
}
.tab-wrap .tab-list li button,
.tab-wrap .tab-list li a {
  display: block;
  width: 100%;
  cursor: pointer;
}
.tab-wrap .tab-box {
  display: none;
}
.tab-wrap .tab-box.on {
  display: block;
}
.tab-wrap.type01 .tab-list li button,
.tab-wrap.type01 .tab-list li a {
  display: inline-block;
  width: 100%;
  padding: 1.275rem 0 1.375rem;
  background-color: #f5f5fa;
  border-top: 3px solid #f5f5fa;
  border-bottom: 1px solid #d8d8d8;
  border-left: none;
  font-size: 1.8rem;
}
.tab-wrap.type01 .tab-list li.on button, .tab-wrap.type01 .tab-list li.on a {
  color: #ffc600;
  border-top: 3px solid #ffc600;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-bottom: transparent;
  background-color: #fff;
  font-weight: 700;
}
.tab-wrap.type02 .tab-now {
  display: none;
}
.tab-wrap.type02 .tab-list li button,
.tab-wrap.type02 .tab-list li a {
  padding: 2rem 0 1.8rem;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  border-bottom: 2px solid #ffc600;
  color: #a8a8a8;
  font-size: 1.4rem;
}
.tab-wrap.type02 .tab-list li.on button,
.tab-wrap.type02 .tab-list li.on a {
  background-color: #ffc600;
  color: #000;
  border-top: #ffc600;
  border-left: 1px solid #ffc600;
}
.tab-wrap.type02 .tab-list li:last-child button,
.tab-wrap.type02 .tab-list li:last-child a {
  border-right: 1px solid #d8d8d8;
}
.tab-wrap.type02 .tab-list li:last-child.on button,
.tab-wrap.type02 .tab-list li:last-child.on a {
  border-right: 1px solid #ffc600;
}

.top-btn-wrap, .top-btn {
  display: none;
}

.top-btn-wrap-new {
  width: 95%;
  max-width: 126rem;
  padding: 1rem 0;
  margin: 0 auto;
  text-align: right;
}

.top-btn-new {
  display: inline-block;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-image: url(../image/btn_up_off.svg);
  background-size: 100%;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.top-btn-new:hover {
  background-image: url(../image/btn_up_on.svg);
}

.search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.search-box .sb-mob-close {
  display: none;
}
.search-box input {
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
}
.search-box input::-webkit-input-placeholder {
  font-size: 1.8rem;
}
.search-box input::-moz-placeholder {
  font-size: 1.8rem;
}
.search-box input:-ms-input-placeholder {
  font-size: 1.8rem;
}
.search-box input::-ms-input-placeholder {
  font-size: 1.8rem;
}
.search-box input::placeholder {
  font-size: 1.8rem;
}
.search-box .search {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
  background-image: url(../image/icon_search.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}

.table-area-scroll {
  padding-top: 0.5rem;
  overflow-x: auto;
}
.table-area-scroll::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.table-area-scroll::-webkit-scrollbar-thumb {
  background-color: #dae1e6;
  border-radius: 5px;
}
.table-area-scroll::-webkit-scrollbar-track {
  background-color: #d8d8d8;
  border-radius: 5px;
}
.table-area-scroll table {
  width: 100%;
  min-width: 319px;
  table-layout: fixed;
}
.table-area-scroll table th,
.table-area-scroll table td {
  border: 1px solid #d8d8d8;
  vertical-align: middle;
  line-height: 1.5;
}
.table-area-scroll table th {
  padding: 0.5rem 0.5rem;
  background-color: #f5f5fa;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 400;
}
.table-area-scroll table td {
  padding: 0.7rem 0.8rem;
  font-size: 1.5rem;
}

.condition-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #edf0f2;
  padding: 2rem;
  margin-bottom: 3rem;
  font-size: 1.4rem;
}
.condition-wrap span b {
  color: #ffc600;
  font-weight: 400;
}
.condition-wrap ul li {
  display: inline-block;
}
.condition-wrap ul li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -1px 2rem 0 1.1rem;
  background-color: #a8a8a8;
  vertical-align: middle;
}
.condition-wrap ul li:nth-child(1)::before {
  display: none;
}
.condition-wrap ul li button {
  color: #a8a8a8;
  font-size: 1.4rem;
}
.condition-wrap ul li button.on {
  color: #ffc600;
}
.condition-wrap.type02 .cond-now {
  display: none;
}

.condition-search-wrap {
  padding: 2rem 3rem;
  background-color: #f5f5fa;
  border-radius: 10px;
}
.condition-search-wrap .title {
  float: left;
  margin-top: 1.5rem;
  margin-right: 2rem;
  color: #a8a8a8;
  font-size: 1.4rem;
  font-weight: 700;
}
.condition-search-wrap .input {
  float: left;
}
.condition-search-wrap .input select {
  width: 15rem;
  padding: 1rem 2rem 1rem 2rem;
  margin-right: 1rem;
  border: 1px solid #d8d8d8;
  background-image: url("../image/icon_faq_more_open.svg");
  background-size: 1.2rem 1.2rem;
  background-position: right 2rem center;
  font-size: 1.4rem;
}
.condition-search-wrap .input input[type=checkbox] + label {
  margin-right: 1.3rem;
  font-size: 1.4rem;
}
.condition-search-wrap .input input[type=checkbox] + label::before {
  border: 1px solid #d8d8d8;
}
.condition-search-wrap .input input[type=text] {
  width: 20rem;
  padding: 1rem 2rem 1rem 2rem;
  font-size: 1.4rem;
  border: 1px solid #d8d8d8;
}
.condition-search-wrap .input input[type=text]::-webkit-input-placeholder {
  text-align: center;
}
.condition-search-wrap .input input[type=text]::-moz-placeholder {
  text-align: center;
}
.condition-search-wrap .input input[type=text]:-ms-input-placeholder {
  text-align: center;
}
.condition-search-wrap .input input[type=text]::-ms-input-placeholder {
  text-align: center;
}
.condition-search-wrap .input input[type=text]::placeholder {
  text-align: center;
}
.condition-search-wrap .cs-btn-area {
  float: left;
}
.condition-search-wrap .cs-btn-area button {
  margin-right: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-size: 1.4rem;
  color: #000;
}
.condition-search-wrap .cs-btn-area button.on {
  background-color: #ffc600;
  border: 1px solid #ffc600;
  color: #555;
}
.condition-search-wrap .cs-cal-area {
  float: left;
  padding: 0.8rem 1.5rem;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
}
.condition-search-wrap .cs-cal-area .calendarBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.condition-search-wrap .cs-cal-area .calendar {
  position: relative;
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  margin-left: 2rem;
  vertical-align: middle;
  cursor: pointer;
}
.condition-search-wrap .cs-cal-area .calendar::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: -2rem;
  background-image: url(../image/main/icon_calendar.svg) !important;
  background-size: 100% auto;
}
.condition-search-wrap .cs-cal-area .calendar input {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  font-size: 1.5rem;
  border: none;
  font-weight: 400;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
}
.condition-search-wrap .cs-cal-area .wave {
  display: inline-block;
  vertical-align: middle;
}
.condition-search-wrap .cs-cal-area .wave + .calendar {
  margin: 0 0.5rem 0 0;
}
.condition-search-wrap .cs-cal-area .wave + .calendar::before {
  display: none;
}
.condition-search-wrap .search {
  width: 15rem;
  border-radius: 10px;
  padding: 1rem 0;
  background-color: #292929;
  color: #fff;
  font-size: 1.6rem;
}
.condition-search-wrap.type02 {
  padding: 2rem 3rem 1rem;
}
.condition-search-wrap.type02::after {
  content: "";
  display: block;
  clear: both;
}
.condition-search-wrap.type02 .row {
  float: left;
}
.condition-search-wrap.type02 .row .cs-btn-area {
  margin-bottom: 1rem;
  margin-right: 1.1rem;
}
.condition-search-wrap.type02 .row .cs-cal-area {
  margin: 0 1.7rem 1rem 0;
}
.condition-search-wrap.type02 .search {
  float: left;
}
.condition-search-wrap.type03 {
  display: grid;
  grid-template-areas: "first btn" "second btn";
  grid-gap: 1rem;
  margin-bottom: 2rem;
}
.condition-search-wrap.type03 .row:nth-of-type(1) {
  grid-area: first;
}
.condition-search-wrap.type03 .row:nth-of-type(2) {
  grid-area: second;
}
.condition-search-wrap.type03 .row .title {
  width: 6rem;
  text-align: right;
}
.condition-search-wrap.type03 .row .title:nth-of-type(2) {
  display: none;
}
.condition-search-wrap.type03 .search {
  grid-area: btn;
}
.condition-search-wrap.type03 .mob-title {
  display: none;
}

.sb-mob-open, .ranking-mob-open {
  display: none;
}

.paging-wrap {
  padding: 0 0 1rem;
  text-align: center;
}
.paging-wrap button {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  vertical-align: middle;
  background-color: transparent;
  font-size: 1.3rem;
  color: #000;
}
.paging-wrap button.on {
  color: #000;
  background-color: #ffc600;
}
.paging-wrap button.paging-move {
  width: auto;
}
.paging-wrap button.paging-move.paging-previous::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/main/icon_paging_left.png);
  margin: -1px 4px 0 0;
}
.paging-wrap button.paging-move.paging-previous::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eaeaea;
  margin: 0 0.5rem 0 1.2rem;
}
.paging-wrap button.paging-move.paging-next::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eaeaea;
  margin: 0 1.2rem 0 0.5rem;
}
.paging-wrap button.paging-move.paging-next::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/main/icon_paging_right.png);
  margin: -1px 0 0 4px;
}

.policy .check-wrap {
  padding-bottom: 2rem;
}
.policy .check-wrap label {
  font-size: 1.8rem;
  font-weight: 700;
}
.policy .check-wrap label span.red {
  font-size: 1rem;
  font-weight: 400;
  color: #fe4e3a;
}
.policy .check-wrap.type01 {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}
.policy .check-wrap.type01 label {
  position: relative;
  display: block;
  padding-left: 2.5rem;
  color: #333;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: 400;
}
.policy .check-wrap.type01 label strong {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 2rem;
  font-weight: 700;
}
.policy .check-wrap.type01 label::before {
  position: absolute;
  top: 3px;
  left: 0;
  margin: 0;
}
.policy .box.box-g {
  width: 100%;
  height: 20rem;
  padding: 3rem;
  margin-bottom: 5rem;
  color: #333;
  line-height: 1.5;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: scroll;
}

.user-form {
  padding: 2rem 0;
}
.user-form table {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}
.user-form table tr th {
  max-width: 13.8rem;
  font-weight: 400;
  font-size: 2rem;
  color: #292929;
}
.user-form table tr th i {
  color: #bf4c4c;
}
.user-form table tr td {
  padding: 1rem 0;
  font-size: 2rem;
}
.user-form table tr td .input-box {
  display: block;
}
.user-form table tr td .input-box input {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 1rem 1.4rem;
  margin: -1rem 0 0rem;
  border-radius: 0;
}
.user-form table tr td .input-box input:-moz-read-only {
  padding: 1rem 0rem;
}
.user-form table tr td .input-box input:read-only {
  padding: 1rem 0rem;
}
.user-form table tr td .input-box input:read-only::-webkit-input-placeholder {
  color: #292929;
  font-size: 2rem;
}
.user-form table tr td .input-box input:read-only::-moz-placeholder {
  color: #292929;
  font-size: 2rem;
}
.user-form table tr td .input-box input:read-only:-ms-input-placeholder {
  color: #292929;
  font-size: 2rem;
}
.user-form table tr td .input-box input:read-only::-ms-input-placeholder {
  color: #292929;
  font-size: 2rem;
}
.user-form table tr td .input-box input:-moz-read-only::placeholder {
  color: #292929;
  font-size: 2rem;
}
.user-form table tr td .input-box input:read-only::placeholder {
  color: #292929;
  font-size: 2rem;
}
.user-form table tr td .input-box.required {
  text-align: left;
}
.user-form table tr td .input-box.required input {
  border: 1px solid #fe4e3a;
}
.user-form table tr td .input-box.required::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  content: "영문 대 소문자, 숫자, 특수문자 포함 8자 이상 입력";
  font-size: 0.725rem;
  color: #fe4e3a;
  z-index: 10;
}
.user-form table tr:nth-child(1) td {
  padding: 1rem 0 2.8rem;
}
.user-form table tr:nth-child(1) td input {
  background-color: transparent;
  border: none;
}

.info-form {
  width: calc(100% - 5rem);
  margin: 0 auto;
  padding: 3rem 0;
}
.info-form table {
  width: 100%;
}
.info-form table th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
  color: #a8a8a8;
  text-align: left;
  font-weight: 400;
}
.info-form table td {
  padding: 1rem 0 3rem;
  font-size: 2rem;
}
.info-form table td .btn {
  width: 15rem;
  padding: 1rem 0rem;
  margin-right: 1.8rem;
  border-radius: 10px;
}
.info-form table td .btn:last-child {
  margin-right: 0;
}
.info-form table td input:not([type=checkbox]),
.info-form table td textarea {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 1.5rem;
  padding: 1rem 2.75rem 1rem 1.4rem;
  margin: 0rem 0 0rem;
  border-radius: 10px;
}
.info-form table td input:not([type=checkbox]) + .btn,
.info-form table td textarea + .btn {
  margin-left: 2rem;
}
.info-form table td textarea {
  min-height: 17rem;
  vertical-align: top;
  resize: vertical;
}
.info-form table td .input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-form table td .input-box.required {
  text-align: left;
}
.info-form table td .input-box.required::after {
  content: "";
  display: inline-block;
  width: 73%;
  height: auto;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: calc(100% + 1.4rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "영문 대 소문자, 숫자, 특수문자 포함 8자 이상 입력";
  font-size: 1.2rem;
  color: #fe4e3a;
  z-index: 10;
}
.info-form table td .password-box {
  margin-bottom: 1rem;
}
.info-form table td .password-box .input-box {
  display: inline-block;
  width: 57%;
  max-width: 32rem;
}
.info-form table td .password-box.type02 .input-box.required::after {
  content: "※ 영문, 숫자, 특수문자를 포함하여 8자 이상 입력.";
  color: #a8a8a8;
}
.info-form table td .password-box.type03 .input-box.required::after {
  content: "비밀번호가 일치하지 않습니다.";
}
.info-form table .modify-box .password-box,
.info-form table .modify-box .btn-line-b {
  display: none;
}
.info-form table .modify-box.on .password-box {
  display: block;
}
.info-form table .modify-box.on .btn-line-b {
  display: inline-block;
}
.info-form table .modify-box.box {
  padding: 2rem;
}
.info-form table .modify-box.box input {
  background-color: #f2f4f6;
  border: none;
}
.info-form table .modify-box.disable {
  opacity: 0.7;
}
.info-form table .modify-box.disable .btn {
  cursor: default;
}
.info-form table .modify-box.disable .btn.btn-b {
  background-color: #a8a8a8;
  border: 1px solid #a8a8a8;
}
.info-form table .modify-box.disable .btn.btn-line-b {
  border: 1px solid #a8a8a8;
  color: #a8a8a8;
}

.checkbox-toggle.type01 .toggle-btn {
  position: relative;
  display: inline-block;
  width: 7rem;
  height: 2.6rem;
  margin: 0 0 0 0.5rem;
  border-radius: 1rem;
  background-color: #bbb;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-toggle.type01 .toggle-btn::before {
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  margin-left: 2px;
  border-radius: 50%;
  background-image: none;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox-toggle.type01 .toggle-btn::after {
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "OFF";
  display: block;
  color: #fff;
  font-size: 1.2rem;
}
.checkbox-toggle.type01 .toggle-btn.on {
  background-color: #ffc600;
}
.checkbox-toggle.type01 .toggle-btn.on::before {
  margin-left: calc(100% - 2rem - 0.5rem);
}
.checkbox-toggle.type01 .toggle-btn.on::after {
  left: 20%;
  content: "ON";
}

/* datetimepicker */
.daterangepicker td:hover {
  color: #212121;
  background-color: #efefef;
}
.daterangepicker td.in-range {
  color: #212121;
  background-color: #fbf5d1;
}
.daterangepicker td.active, .daterangepicker td.end-date, .daterangepicker td.active:hover, .daterangepicker td.end-date:hover {
  color: #fff;
  background-color: #ffc600;
}

.loading-block {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 100%;
  z-index: 10100;
}
.loading-block span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffc600;
  font-size: 1.8rem;
  font-weight: 400;
}
.loading-block span b {
  display: block;
  margin: 0 0 1rem;
  font-weight: 700;
}
.loading-block span::before {
  content: "";
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto 1.8rem;
  background-image: url(../image/progress-circle.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: rotationLoading 1.2s infinite steps(9);
  animation: rotationLoading 1.2s infinite steps(9);
  z-index: 10101;
}
.loading-block.fixed {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.common-info .content {
  position: relative;
  min-height: calc(100vh - 5rem);
}
.common-info .content > .center {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.5;
}
.common-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.common-info h2::before {
  content: "";
  display: inline-block;
  width: 8.125rem;
  height: 8.125rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0px auto 2.188rem;
  background-size: 100% auto;
}
.common-info h2.type01 {
  color: #fc1010;
}
.common-info h2.type01::before {
  background-image: url(../image/icon_notice_red.svg);
}
.common-info h2.type02 {
  color: #fcb510;
}
.common-info h2.type02::before {
  background-image: url(../image/icon_notice_yellow.svg);
}
.common-info h2.type03 {
  color: #0e7ae5;
}
.common-info h2.type03::before {
  background-image: url(../image/icon_notice_blue.svg);
}
.common-info h2.type04 {
  color: #232B99;
}
.common-info h2.type04::before {
  background-image: url(../image/icon_notice_type04.svg);
}
.common-info h2.type05 {
  color: #aaa;
}
.common-info h2.type05::before {
  background-image: url(../image/icon_notice_type05.svg);
}
.common-info h2.type06::before {
  background-image: url(../image/title_check.svg);
}
.common-info h2.type06 + .main-txt {
  padding: 5px 0 20px;
  color: #777;
}
.common-info h2.type06 ~ .btn-fixed-area .btn {
  width: 50rem;
}
.common-info .main-txt {
  margin: 1.4rem 0;
  font-size: 3rem;
}
.common-info p {
  font-size: 1.8rem;
}
.common-info .btn {
  width: 20rem;
  padding: 1.8rem 0;
  margin: 2.8rem 0 0 1.4rem;
  border-radius: 10px;
  font-size: 1.8rem;
}
.common-info .btn:first-child {
  margin: 0;
}

.infoBox {
  padding: 2.5rem 3rem;
  background-color: #f5f5fa;
  border-radius: 1rem;
}

@media only screen and (min-width: 1280px) {
  .tabListWrap::after {
    width: 100% !important;
    left: 0rem !important;
  }
  .tabListWrap .tabList {
    width: 100% !important;
  }
  .mainProfile {
    padding: 3rem 2rem 1.5rem;
  }
  .mainProfile .profileWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1rem;
  }
  .mainProfile .profileWrap > div {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .mainProfile .profileWrap .userImg {
    width: 100%;
  }
  .mainProfile .profileWrap .userImg span {
    width: 9rem;
    height: 9rem;
  }
  .mainProfile .profileWrap .userName {
    font-size: 2rem;
  }
  .mainProfile .profileWrap .userDateInfo {
    width: 100%;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}
@media only screen and (max-width: 1280px) {
  .mainProfile {
    width: calc(100% - 3rem);
    max-width: 123rem;
    margin: 0 auto;
  }
  .condition-search-wrap.type02 .row {
    float: none;
  }
  .condition-search-wrap.type02 .row .title {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  .condition-search-wrap.type02 .search {
    float: none;
  }
  .condition-search-wrap.type03 {
    grid-template-areas: "first" "second" "btn";
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .condition-search-wrap.type03 .row .title {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
  }
  .condition-search-wrap.type03 .row .input {
    float: none;
  }
  .condition-search-wrap.type03 .row .cs-btn-area {
    float: none;
    margin-bottom: 1rem;
  }
  .condition-search-wrap.type03 .row .cs-cal-area {
    float: none;
  }
  .condition-search-wrap.type03 .row select {
    margin-bottom: 1rem;
  }
  .condition-search-wrap.type03 .search {
    width: 100%;
    max-width: 33.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .hoverInfo i:hover > span {
    display: block;
  }
  .tabListWrap {
    position: relative;
  }
  .tabListWrap::after {
    content: "";
    display: inline-block;
    width: calc(100% - 2rem);
    height: 2px;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0px;
    left: 1rem;
    background-color: #ffc600;
    z-index: 1;
  }
  .tabListWrap .tabList {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 2rem);
    margin: 0 auto 2rem;
    border-bottom: none;
    z-index: 2;
  }
  .tabListWrap .tabList li {
    position: relative;
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: 25rem;
    height: 6rem;
    line-height: 2.35rem;
    font-size: 1.8rem;
    cursor: pointer;
  }
  .tabListWrap .tabList li a {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 2px solid #f5f5fa;
    background-color: #f5f5fa;
    color: #000;
    font-weight: normal;
  }
  .tabListWrap .tabList li.on {
    background-color: #fff;
  }
  .tabListWrap .tabList li.on a {
    background-color: #fff;
    border-color: #ffc600;
    border-bottom-color: #fff;
    color: #ffc600;
    font-weight: bold;
  }
  .tabListWrap .tabList li.on + li {
    border-left: none !important;
  }
  .tabListWrap .tabList li:not(.on) a {
    height: calc(100% - 2px);
  }
  .tabListWrap .tabList li:not(:nth-child(1)):not(.on) {
    border-left: 1px solid #d8d8d8;
  }
  .divTableWrap {
    display: table;
    width: 100%;
    word-break: keep-all;
  }
  .divTableWrap .cell {
    display: table-cell;
    font-size: 1.5rem;
    text-align: center;
    vertical-align: middle;
  }
  .divTableWrap .dtHead {
    display: table-row;
  }
  .divTableWrap .dtHead .cell {
    padding: 2rem 0;
    background-color: #f5f5fa;
    font-weight: bold;
  }
  .divTableWrap .dtBody {
    display: table-row-group;
  }
  .divTableWrap .dtBody .dtTr {
    position: relative;
    display: table-row;
  }
  .divTableWrap .dtBody .dtTr .linkBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    display: block;
    background-color: transparent;
    z-index: 1;
  }
  .divTableWrap .dtBody .dtTr .cell {
    padding: 2.5rem 1rem;
    border-bottom: 1px solid #d8d8d8;
  }
  .divTableWrap .dtBody .dtTr .cell img {
    display: inline-block;
    max-width: 9rem;
    margin-right: 2rem;
    vertical-align: middle;
  }
  .divTableWrap .dtBody .dtTr .cell .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2rem;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
  }
  .divTableWrap .dtBody .dtTr .cell .infoTitle {
    display: none;
  }
  .divTableWrap .dtBody .dtTr .cell .btn {
    width: 90%;
    max-width: 18rem;
    padding: 1.2rem 0rem;
    font-size: 1.5rem;
  }
  .divTableWrap .dtBody .dtTr.off .cell {
    color: #a8a8a8;
  }
  .divTableWrap .dtBody .dtTr.off .cell img {
    opacity: 0.5;
  }
}
@media only screen and (max-width: 768px) {
  .hoverInfo i.on > span {
    display: block;
  }
  .divTableWrap {
    padding: 2rem 0;
  }
  .divTableWrap .dtHead {
    display: none;
  }
  .divTableWrap .dtBody .dtTr {
    position: relative;
    margin-bottom: 2rem;
    border: 1px solid #d8d8d8;
    border-radius: 1.3rem;
    overflow: hidden;
  }
  .divTableWrap .dtBody .dtTr .linkBlock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 4rem);
    display: block;
    background-color: transparent;
    z-index: 1;
  }
  .divTableWrap .dtBody .dtTr .cell {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .divTableWrap .dtBody .dtTr .cell img {
    position: absolute;
    top: 4rem;
    left: 2.5rem;
    width: 8rem;
  }
  .divTableWrap .dtBody .dtTr .cell:first-child {
    padding-top: 3rem;
    padding-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .divTableWrap .dtBody .dtTr .cell:not(:last-child) {
    padding-left: 13rem;
  }
  .divTableWrap .dtBody .dtTr .cell:last-child {
    margin: 2rem 0 0;
    border-top: 1px solid #d8d8d8;
    text-align: center;
  }
  .divTableWrap .dtBody .dtTr .cell:last-child .btn.btn-main {
    width: 100%;
    padding: 1rem 0;
    border-radius: 0;
    font-size: 1.6rem;
  }
  .divTableWrap .dtBody .dtTr .cell:last-child span {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.6rem;
  }
  .divTableWrap .dtBody .dtTr.off {
    background-color: #fbfbfb;
  }
  .divTableWrap .dtBody .dtTr.off .cell {
    color: #a8a8a8;
  }
  .divTableWrap .dtBody .dtTr.off .cell img {
    opacity: 0.5;
  }
  .mainProfile {
    width: 100%;
    padding: 2rem 1rem;
    border: none;
    border-radius: 0;
    background-color: #f5f5fa;
  }
  .agreeInfoBox {
    padding: 0;
    margin: 0 0 3rem;
    background-color: #fff;
  }
  .agreeInfoBox .center_500 {
    width: 100%;
  }
  .agreeInfoBox .flexBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .agreeInfoBox .flexBox .inputTitle {
    width: 100%;
  }
  .agreeInfoBox .flexBox .inputBox {
    width: 100%;
  }
  .agreeInfoBox .flexBox .inputBox.disabled {
    border-color: #d8d8d8;
  }
  .grayBox .flexBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .grayBox .flexBox .btn {
    padding: 1.5rem 7rem !important;
  }
  .policyWrap .openPopBtn {
    font-weight: bold;
    text-decoration: underline;
  }
  .policyWrap .scrollBox {
    display: none;
  }
  .membership .sectionTitle {
    margin: 4rem 0 1.5rem;
  }
  .tab-wrap.type01 .tab-list {
    border-bottom: 1px solid #d8d8d8;
  }
  .tab-wrap.type01 .tab-list li {
    text-align: center;
  }
  .tab-wrap.type01 .tab-list li button,
  .tab-wrap.type01 .tab-list li a {
    width: auto;
    padding: 1.4rem 0 1.2rem;
    background-color: #fff;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.5rem;
  }
  .tab-wrap.type01 .tab-list li.on button,
  .tab-wrap.type01 .tab-list li.on a {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #ffc600;
  }
  .tab-wrap.type02 .tab-list-warp {
    display: block;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
  }
  .tab-wrap.type02 .tab-now {
    position: relative;
    display: block;
    padding: 1.8rem 0;
    text-align: center;
    border-bottom: 1px solid #d8d8d8;
    font-size: 1.6rem;
    cursor: pointer;
  }
  .tab-wrap.type02 .tab-now::after {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 1.8rem;
    right: 2.5rem;
    background-image: url(../image/icon_faq_more_open.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
    -webkit-filter: brightness(0);
    filter: brightness(0);
  }
  .tab-wrap.type02 .tab-now.on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .tab-wrap.type02 .tab-list {
    position: absolute;
    display: none;
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid #d8d8d8;
    table-layout: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.16);
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.16);
    opacity: 0.9;
    z-index: 1;
  }
  .tab-wrap.type02 .tab-list.on {
    display: block;
  }
  .tab-wrap.type02 .tab-list li {
    display: block;
    padding: 0 2rem;
  }
  .tab-wrap.type02 .tab-list li:nth-child(1) button,
  .tab-wrap.type02 .tab-list li:nth-child(1) a {
    border-left: none;
  }
  .tab-wrap.type02 .tab-list li:last-child button,
  .tab-wrap.type02 .tab-list li:last-child a {
    border-right: none;
  }
  .tab-wrap.type02 .tab-list li button,
  .tab-wrap.type02 .tab-list li a {
    max-width: auto;
    width: auto;
    padding: 0.9rem 0;
    margin: 0 auto;
    border: none;
    border-bottom: 3px solid transparent;
    color: #000;
    word-break: keep-all;
    white-space: nowrap;
    text-align: center;
  }
  .tab-wrap.type02 .tab-list li.on button,
  .tab-wrap.type02 .tab-list li.on a {
    border: none;
    background-color: #fff;
    color: #ffc600;
    font-weight: bold;
  }
  .condition-wrap {
    padding: 1.5rem 1.4rem 1.4rem;
    margin-bottom: 0.5rem;
    border: none;
  }
  .condition-wrap ul li::before {
    margin: -1px 1rem 0;
  }
  .condition-wrap ul li button,
  .condition-wrap ul li a {
    font-size: 1.2rem;
  }
  .condition-wrap.type02 {
    position: relative;
    font-size: 1.5rem;
  }
  .condition-wrap.type02 .cond-now {
    display: block;
    font-size: 1.2rem;
    cursor: pointer;
  }
  .condition-wrap.type02 .cond-now::after {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: -2px 0 0 5px;
    background-image: url(../image/icon_more_g.svg);
  }
  .condition-wrap.type02 ul {
    display: none;
  }
  .condition-wrap.type02.on ul {
    display: block;
    position: absolute;
    top: 90%;
    right: 1.5rem;
    width: 5.5rem;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
    z-index: 5;
  }
  .condition-wrap.type02.on ul li {
    display: block;
    border-bottom: 1px solid #d8d8d8;
  }
  .condition-wrap.type02.on ul li:last-child {
    border-bottom: none;
  }
  .condition-wrap.type02.on ul li::before {
    display: none;
  }
  .condition-wrap.type02.on ul li button {
    padding: 0.5rem 0 0.5rem 1.4rem;
    font-size: 0.688rem;
    color: #292929;
  }
  .condition-search-wrap.type01 {
    padding: 3rem 1rem;
  }
  .condition-search-wrap.type01 .title {
    display: block;
    margin: 0rem 0 1rem;
    color: #292929;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .condition-search-wrap.type01 .cs-btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: #fff;
    border-radius: 10px;
  }
  .condition-search-wrap.type01 .cs-btn-area button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
    margin: 0;
    border: none;
    border-left: 1px solid #d8d8d8;
    border-radius: 0px;
    color: #a8a8a8;
    font-size: 1.5rem;
  }
  .condition-search-wrap.type01 .cs-btn-area button.on {
    background-color: #fff;
    border: none;
    color: #ffc600;
  }
  .condition-search-wrap.type01 .cs-cal-area {
    clear: both;
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 1rem 0;
    background-color: transparent;
    border: none;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendarBox .calendar {
    max-width: 100%;
    margin: 0;
    background-color: #fff;
    border-radius: 10px;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendarBox .calendar input {
    font-size: 1.5rem;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendarBox .calendar::before {
    top: 1.2rem;
    left: 1rem;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendarBox .wave {
    margin: 0 1rem;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendar {
    margin: 0 0.5rem 0 0.25rem;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendar::before {
    top: 0.7rem;
    left: 0.4rem;
  }
  .condition-search-wrap.type01 .cs-cal-area .calendar input {
    display: inline-block;
    width: 100%;
    padding: 1rem 0;
    margin-left: 0.5rem;
    font-size: 1.2rem;
    border: none;
    text-align: center;
    font-weight: 400;
  }
  .condition-search-wrap.type01 .cs-cal-area .wave + .calendar::before {
    display: inline-block;
  }
  .condition-search-wrap.type01 .cs-cal-area button {
    display: inline-block;
    float: none;
    width: 4.75rem;
    padding: 0.55rem 0rem;
    margin-left: 0;
    border: 1px solid #292929;
    background-color: #292929;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
  }
  .condition-search-wrap.type01 .search {
    width: 100%;
  }
  .condition-search-wrap.type02 .row {
    width: 100%;
  }
  .condition-search-wrap.type02 .row .input {
    float: none;
    width: 100%;
  }
  .condition-search-wrap.type02 .row .cs-btn-area {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    margin-right: 0;
  }
  .condition-search-wrap.type02 .row .cs-btn-area button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
    padding: 1rem 0;
    font-size: 1.4rem;
  }
  .condition-search-wrap.type02 .row .cs-cal-area {
    float: none;
    margin: 1rem 0 0;
  }
  .condition-search-wrap.type02 .row .cs-cal-area .calendarBox {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .condition-search-wrap.type02 .row .cs-cal-area .calendar::before {
    top: 2px;
    left: -1.5rem;
  }
  .condition-search-wrap.type02 .row .cs-cal-area .calendar input {
    font-size: 1.4rem;
  }
  .condition-search-wrap.type02 .search {
    width: 100%;
    margin-top: 1rem;
  }
  .sb-mob-open, .ranking-mob-open {
    display: block;
    position: absolute;
    top: 1.5rem;
    bottom: auto;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    margin-right: 1.2rem;
    border-bottom: none;
    background-color: #fff;
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
    background-image: url(../image/icon_search_b.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    z-index: 4999;
  }
  .sb-mob-open.hide, .ranking-mob-open.hide {
    z-index: 0;
  }
  .paging-wrap {
    padding: 2.5rem 0;
  }
  .user-form {
    margin-top: 7.25rem;
    margin-bottom: 0;
    background-color: #fff;
    border: none;
  }
  .user-form table tr th {
    display: none;
  }
  .user-form table tr td {
    padding: 0 0 2.8rem;
  }
  .user-form table tr td::before {
    content: attr(data-th);
    display: block;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 1rem;
  }
  .user-form table tr td .input-box input {
    padding: 1rem 1.4rem;
    margin: 0;
    font-size: 1.5rem;
    color: #212121;
  }
  .user-form table tr td .input-box input::-webkit-input-placeholder {
    font-size: 1.3rem;
  }
  .user-form table tr td .input-box input::-moz-placeholder {
    font-size: 1.3rem;
  }
  .user-form table tr td .input-box input:-ms-input-placeholder {
    font-size: 1.3rem;
  }
  .user-form table tr td .input-box input::-ms-input-placeholder {
    font-size: 1.3rem;
  }
  .user-form table tr td .input-box input::placeholder {
    font-size: 1.3rem;
  }
  .user-form ul {
    width: 100%;
  }
  .user-form ul li {
    font-size: 1rem;
    padding: 0 0 3rem;
  }
  .user-form ul li > span {
    float: none;
  }
  .user-form ul li > span:nth-of-type(1) {
    display: block;
    width: 100%;
    font-weight: 700;
    margin: 0 0 1rem;
  }
  .user-form ul li > span:nth-of-type(2) span input {
    margin: 0;
    font-size: 1.5rem;
    color: #212121;
  }
  .user-form ul li:nth-child(1) > span:nth-of-type(2) span input {
    border: 1px solid #dae1e6;
  }
  .info-form {
    width: 100%;
    padding: 1.5rem 0;
    margin: 0;
  }
  .info-form table th {
    padding-left: 5%;
    padding-right: 5%;
    color: #292929;
  }
  .info-form table td {
    padding-left: 5%;
    padding-right: 5%;
  }
  .info-form table td input {
    width: 100%;
    padding: 1.3rem 2.5rem 1.3rem 1rem;
    border-radius: 5px;
  }
  .info-form table td input + .btn {
    margin-left: 1rem;
    background-color: #fff;
    border: 1px solid #292929;
    color: #292929;
  }
  .info-form table td input:disabled {
    color: #a8a8a8;
  }
  .info-form table td .btn {
    width: 7rem;
    border-radius: 5px;
    font-size: 1.2rem;
  }
  .info-form table td .input-box.required::after {
    position: initial;
    width: 100%;
    margin-top: 0.5rem;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .info-form table td .password-box .input-box {
    width: 100%;
    max-width: 100%;
  }
  .info-form table td .password-box .input-box .pw-view {
    top: 1.5rem;
    right: 1rem;
  }
  .info-form table td .modify-box .password-box.type02 .input-box::after {
    color: #fe4e3a;
  }
  .info-form table td .modify-box .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .info-form table td .modify-box .btn-area .btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1.5rem 0;
    margin-right: 1rem;
  }
  .info-form table td .modify-box .btn-area .btn:last-child {
    margin: 0;
  }
  .info-form table td .modify-box.box {
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid #edf0f2;
  }
  .checkbox-toggle.type01 .toggle-btn {
    height: 2rem;
  }
  .checkbox-toggle.type01 .toggle-btn::before {
    width: 1.65rem;
    height: 1.65rem;
    margin-left: 1.5px;
  }
  .checkbox-toggle.type01 .toggle-btn::after {
    top: 55%;
    left: 53%;
    font-weight: 400;
  }
  .checkbox-toggle.type01 .toggle-btn.on::before {
    margin-left: calc(100% - 1.65rem - 0.5rem);
  }
  .checkbox-toggle.type01 .toggle-btn.on::after {
    left: 25%;
  }
  .common-info .content > .center {
    position: initial;
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
    width: 90%;
  }
  .common-info h2 {
    padding-top: 7.188rem;
    font-size: 2rem;
  }
  .common-info h2::before {
    width: 6.438rem;
    height: 6.438rem;
    margin-bottom: 2.6rem;
  }
  .common-info .main-txt {
    font-size: 3rem;
  }
  .common-info .btn-fixed-area {
    height: auto;
    bottom: 0;
  }
  .top-btn {
    width: 3.625rem;
    height: 3.625rem;
  }
}
.main section:nth-child(odd) {
  background-color: #f5f5fa;
}
.main .main01 .center_100 {
  background-image: url(../image/main-visual-img.png);
  background-size: auto;
  background-position: center left 39rem;
  background-repeat: no-repeat;
}
.main .main01 .center_100 p {
  line-height: 1.2;
}
.main .main01 .center_100 p:nth-child(1) {
  padding-top: 17rem;
  font-size: 6.5rem;
  font-weight: bold;
}
.main .main01 .center_100 p:nth-child(2) {
  padding-bottom: 20rem;
  margin: 2rem 0 0;
  font-size: 2.2rem;
}
.main .main02 .center {
  text-align: center;
}
.main .main02 .center > p {
  margin: 8rem 0 4rem;
  font-size: 4rem;
  font-weight: bold;
}
.main .main02 .center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  margin: 0 0 8rem;
}
.main .main02 .center ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.main .main02 .center ul li::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding: 0 0 75%;
  margin: 0 auto 2.5rem;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.main .main02 .center ul li:nth-child(1)::before {
  background-image: url(../image/main-sec-1-img-1.png);
}
.main .main02 .center ul li:nth-child(2)::before {
  background-image: url(../image/main-sec-1-img-2.png);
}
.main .main02 .center ul li:nth-child(3)::before {
  background-image: url(../image/main-sec-1-img-3.png);
}
.main .main02 .center ul li strong {
  font-size: 2.5rem;
  font-weight: bold;
}
.main .main02 .center ul li p {
  margin: 1rem 0 0;
  font-size: 1.8rem;
  color: #777;
  line-height: 1.25;
}
.main .main03 {
  padding: 8rem 0;
}
.main .main03 .center ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(39rem, 1fr));
  gap: 3rem;
}
.main .main03 .center ul li {
  max-height: 17rem;
  padding: 4rem;
  background-color: #fff;
  border-radius: 1rem;
  font-size: 2.2rem;
  font-weight: bold;
  background-size: auto 80%;
  background-position: bottom right;
  background-repeat: no-repeat;
}
.main .main03 .center ul li:nth-child(1) {
  background-image: url(../image/main-sec-2-img-1.png);
}
.main .main03 .center ul li:nth-child(2) {
  background-image: url(../image/main-sec-2-img-2.png);
}
.main .main03 .center ul li:nth-child(3) {
  background-image: url(../image/main-sec-2-img-3.png);
}
.main .main03 .center ul li:nth-child(4) {
  background-image: url(../image/main-sec-2-img-4.png);
}
.main .main03 .center ul li:nth-child(5) {
  background-image: url(../image/main-sec-2-img-5.png);
}
.main .main03 .center ul li:nth-child(6) {
  background-image: url(../image/main-sec-2-img-6.png);
}
.main .main03 .center ul li i {
  display: block;
  width: 4rem;
  padding: 1rem 0;
  margin: 0 0 1rem;
  background-color: #f5f5fa;
  border-radius: 0.5rem;
  text-align: center;
  font-style: normal;
  font-size: 2rem;
  color: #999;
}
.main .main03 .center ul li span {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.8rem;
  color: #999;
  font-weight: normal;
}

@media only screen and (max-width: 1230px) {
  .main .main01 .center_100 p:nth-child(1), .main .main01 .center_100 p:nth-child(2) {
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .main .main01 .center_100 {
    padding: 0 0 15rem;
    background-size: 50% auto;
    background-position: bottom right;
  }
  .main .main01 .center_100 p:nth-child(1) {
    padding: 5rem 0 0 3rem;
    font-size: 4.5rem;
  }
  .main .main01 .center_100 p:nth-child(2) {
    padding: 0rem 0 0 3rem;
    font-size: 1.6rem;
  }
  .main .main02 .center > p {
    font-size: 3rem;
  }
  .main .main02 .center ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
  .main .main02 .center ul li {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .main .main01 .center_100 {
    padding: 0 0 41rem;
    background-size: 140% auto;
    background-position: bottom center;
  }
}
.product-box {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-box .pb-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
  background-color: #f5f5fa;
  border-radius: 2rem;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-box .pb-img:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product-box .pb-img img {
  display: inline-block;
  max-width: 70%;
  max-height: 100%;
}
.product-box .pb-txt {
  position: relative;
}
.product-box .pb-txt > span {
  display: block;
}
.product-box .pb-txt > span.pb-part {
  font-size: 1.2rem;
  color: #a8a8a8;
}
.product-box .pb-txt > span.pb-title {
  padding: 1.2rem 0 0;
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
}
.product-box .pb-txt > span.pb-percent {
  display: inline-block;
  margin-right: 0.5rem;
  color: #ffc600;
  font-size: 1.5rem;
  font-weight: 700;
}
.product-box .pb-txt > span.pb-price {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
}
.product-box .pb-txt > span.pb-discount {
  padding: 1.5rem 0 0rem;
  color: #999;
  font-size: 0.938rem;
  text-decoration: line-through;
}
.product-box .pb-txt > span.pb-count {
  color: #999;
}
.product-box .pb-txt > span.pb-count b {
  color: #ffc600;
  font-weight: 400;
  margin-left: 1rem;
}
.product-box .pb-txt > span.pb-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ccc;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.product-box.row .pb-txt .pb-part {
  font-size: 1.4rem;
  color: #a8a8a8;
}
.product-box.row .pb-txt .pb-title {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.product-box.row .pb-txt .pb-price {
  font-size: 3rem;
  color: #ffc600;
}
.product-box.row .pb-info ul {
  padding: 2rem 0;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  font-size: 1.4rem;
}
.product-box.row .pb-info ul li {
  padding: 0 3rem;
}
.product-box.row .pb-info ul li:not(:first-child) {
  padding: 1.5rem 3rem 0;
}
.product-box.row .pb-info ul li > span {
  display: inline-block;
}
.product-box.row .pb-info ul li > span:nth-child(1) {
  padding: 0 3rem 0 0;
  color: #a8a8a8;
}
.product-box.row .btn-fixed-area {
  grid-area: btn;
}
.product-box.row .btn-fixed-area .btn {
  width: 100%;
  height: 100%;
  font-size: 2.3rem;
  line-height: 1.5;
}

.product-info {
  margin: 5rem 0 14.5rem;
  color: #999;
  font-size: 1.5rem;
  line-height: 2;
}
.product-info > span {
  display: block;
  margin: 3rem 0 1rem;
  font-weight: bold;
}

.pointSummary {
  margin: 1.5rem 0 0;
  border-radius: 1rem;
  border: 1px solid #ffc600;
  background-color: #fff;
  overflow: hidden;
}
.pointSummary > div:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: #ffc600;
  color: #fff;
}
.pointSummary > div:nth-child(1) > span {
  font-size: 1.6rem;
}
.pointSummary > div:nth-child(1) > span:nth-child(1)::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  content: "P";
  margin: -0.1rem 0.8rem 0 0;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 1.5;
  font-size: 1.3rem;
  font-weight: bold;
}
.pointSummary > div:nth-child(1) > span:nth-child(2) {
  font-weight: bold;
  font-size: 2rem;
}
.pointSummary > div:nth-child(2) ul {
  padding: 1.5rem 3rem;
}
.pointSummary > div:nth-child(2) ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.4rem;
}
.pointSummary > div:nth-child(2) ul li .title span:nth-last-of-type(1) {
  font-size: 1.2rem;
  color: #999;
}
.pointSummary > div:nth-child(2) ul li > span:nth-last-of-type(1) {
  font-weight: bold;
}

.pointSummary2, .pointSummary3 {
  padding: 0.8rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-top: 2rem;
}

.pointSummary3 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 2rem 1.5rem;
}
.pointSummary3 > div {
  width: 100%;
  height: 100%;
}
.pointSummary3 .psList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pointSummary3 .psList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  line-height: 2;
  font-size: 1.5rem;
}
.pointSummary3 .hoverInfo + span {
  font-size: 1.3rem;
  color: #999;
}

.pointGraphArea {
  border-radius: 10px;
  background-color: #f5f5fa;
  -webkit-box-shadow: 0px 3px 5px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 5px 3px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.pointGraphArea .pgOption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
}
.pointGraphArea .pgOption button {
  display: inline-block;
  padding: 5px 1rem;
  background-color: #fff;
  border-radius: 20px;
  font-size: 1.2rem;
}
.pointGraphArea .pgOption button.on {
  background-color: #ffc600;
}
.pointGraphArea .pgOption .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.pointGraphArea .pgOption .calendarBoxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
.pointGraphArea .pgOption .calendarBox .calendar {
  position: relative;
  display: inline-block;
  width: 8rem;
  height: 100%;
  margin-left: 2rem;
  vertical-align: middle;
  cursor: pointer;
}
.pointGraphArea .pgOption .calendarBox .calendar::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.2rem;
  left: -1rem;
  background-image: url(../image/main/icon_calendar.svg) !important;
  background-size: 100% auto;
}
.pointGraphArea .pgOption .calendarBox .calendar input {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 1.2rem;
  border: none;
  font-weight: 400;
  text-align: center;
  background-color: transparent;
  cursor: pointer;
}
.pointGraphArea .pgOption .calendarBox .wave {
  display: inline-block;
  vertical-align: middle;
}
.pointGraphArea .pgOption .calendarBox .wave + .calendar {
  margin: 0 0.5rem 0 0;
}
.pointGraphArea .pgOption .calendarBox .wave + .calendar::before {
  display: none;
}
.pointGraphArea .pgOption .calendarBox + button {
  padding: 5px 1.185rem;
  background-color: #292929;
  color: #fff;
  font-size: 1.2rem;
}
.pointGraphArea .graphArea {
  min-height: 20rem;
}
.pointGraphArea .pgList {
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
}
.pointGraphArea .pgList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pointGraphArea .pgList ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 1.6rem;
}
.pointGraphArea .pgList ul li::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -2px 0.8rem 0 0;
  background-color: #000;
}
.pointGraphArea .pgList ul li i {
  font-style: normal;
}
.pointGraphArea .pgList ul li span {
  display: inline-block;
  margin-left: 0.5rem;
}
.pointGraphArea .pgList ul li:nth-child(1) {
  border-right: 1px solid #d8d8d8;
}
.pointGraphArea .pgList ul li:nth-child(1) span {
  color: #ffc600;
  font-weight: bold;
  font-size: 2rem;
}
.pointGraphArea.type02 .right {
  width: 100%;
}
.pointGraphArea.type02 .right button:not(.search) {
  padding: 0.2rem 2rem;
  background-color: transparent;
  border-left: 1px solid #d8d8d8;
  border-radius: 0;
}
.pointGraphArea.type02 .right button:not(.search):nth-of-type(1) {
  border-left: none;
}
.pointGraphArea.type02 .right button:not(.search).on {
  color: #ffc600;
}
.pointGraphArea.type02 .pgOption .calendarBoxWrap {
  border-radius: 0.8rem;
}
.pointGraphArea.type02 .pgOption .calendarBox + button {
  padding: 0.5rem 2rem;
  border-radius: 0 0.8rem 0.8rem 0;
}

.pointPage .content {
  padding-bottom: 15rem;
}
.pointPage section {
  padding: 0rem 0 5rem;
}
.pointPage section:nth-of-type(1) > div:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
.pointPage section > div {
  position: relative;
}
.pointPage .mc-title {
  padding: 0 0 1rem 0;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #ddd;
}
.pointPage .mc-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
.pointPage .mc-title h2::before {
  content: "";
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -0.5rem 1rem 0 0;
}
.pointPage .mc-title a {
  display: inline-block;
  position: absolute;
  top: 0.5rem;
  right: 0;
  color: #ffc600;
  font-size: 1.5rem;
}
.pointPage .mc-title a::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/main/icon_btn_more.png);
  margin: -0.3rem 0 0 3px;
}
.pointPage .mc-title a:hover {
  font-weight: 700;
}
.pointPage .mc-title a:hover::after {
  background-image: url(../image/main/icon_btn_more_on.png);
}
.pointPage .mc-item02 .mc-title h2::before {
  background-image: url(../image/main/icon_title_02.svg);
}
.pointPage .mc-item03 .mc-title h2::before {
  background-image: url(../image/main/icon_title_03.svg);
}
.pointPage .mc-item04 .mc-title h2::before {
  background-image: url(../image/main/icon_title_04.svg);
}
.pointPage .mc-item05 .mc-title h2::before {
  background-image: url(../image/main/icon_title_05.svg);
}
.pointPage .mainProfile {
  width: 35rem;
}
.pointPage .mc-item02 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pointPage .mc-item03 ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(23rem, 1fr));
  gap: 2rem;
  row-gap: 5rem;
}
.pointPage .mc-item05 {
  position: relative;
}
.pointPage .slide-point .slick-list {
  position: relative;
  overflow: hidden;
  height: 26rem;
}
.pointPage .slide-point .slick-list .slick-slide {
  position: relative;
  display: inline-block;
  width: 25rem !important;
  height: 25rem;
  margin-right: 2rem;
  background-color: #f5f5fa;
  border-radius: 15px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  vertical-align: top;
}
.pointPage .slide-point .slick-list .slick-slide a {
  display: block;
  height: 100%;
  padding: 3.2rem 2rem;
  font-size: 1.8rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pointPage .slide-point .slick-list .slick-slide a b {
  display: block;
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.2em;
  height: 11rem;
}
.pointPage .slide-point .slick-list .slick-slide a b:nth-of-type(2) {
  text-align: right;
}
.pointPage .slide-point .slick-list .slick-slide:hover {
  -webkit-box-shadow: 2px 5px 5px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 2px 5px 5px 3px rgba(0, 0, 0, 0.16);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+1) {
  background-image: url(../image/main/img_bar_01.png);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+2) {
  background-image: url(../image/main/img_bar_02.png);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+3) {
  background-image: url(../image/main/img_bar_03.png);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+4) {
  background-image: url(../image/main/img_bar_04.png);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+5) {
  background-image: url(../image/main/img_bar_05.png);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+6) {
  background-image: url(../image/main/img_bar_06.png);
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+1) a b {
  color: #8d4cbf;
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+2) a b {
  color: #4cbbbf;
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+3) a b {
  color: #bf4c4c;
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+4) a b {
  color: #4cbf6b;
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n+5) a b {
  color: #e2cf21;
}
.pointPage .slide-point .slick-list .slick-slide:nth-child(6n) a b {
  color: #4c63bf;
}
.pointPage .slide-point .slick-list .slick-slide.p_new::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../image/main/img_mark_new.png);
}
.pointPage .slide-point .slick-list::after {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  width: 15rem;
  height: calc(100% + 1rem);
  -webkit-box-shadow: inset -10px 10px 10px rgba(0, 0, 0, 0.16);
  box-shadow: inset -10px 10px 10px rgba(0, 0, 0, 0.16);
}
.pointPage .slide-point ul.slick-dots {
  padding: 2.5rem 0 0;
  text-align: center;
}
.pointPage .slide-point ul.slick-dots li {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin: 0 0 0 1.59rem;
  border-radius: 10px;
  background-color: #e9e9e9;
  cursor: pointer;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.pointPage .slide-point ul.slick-dots li:first-child {
  margin: 0;
}
.pointPage .slide-point ul.slick-dots li.slick-active {
  background-color: #ffc600;
}
.pointPage .slide-logo .slick-list {
  width: 85%;
  margin: 0 auto;
  padding-top: 1.875rem;
  overflow: hidden;
}
.pointPage .slide-logo .slick-list .slick-slide {
  display: inline-block;
  width: 16.5rem !important;
  height: 16.5rem;
  margin: 0 0.5rem;
}
.pointPage .slide-logo .slick-list .slick-slide a {
  display: block;
  width: 16.5rem !important;
  height: 16.5rem;
  font-weight: 700;
  text-align: center;
}
.pointPage .slide-logo .slick-list .slick-slide a span {
  position: relative;
  display: block;
  width: 16.5rem !important;
  height: 16.5rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pointPage .slide-logo .slick-list .slick-slide a span img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 120%;
  height: 120%;
  -webkit-transition: width 0.3s, height 0.3s;
  transition: width 0.3s, height 0.3s;
}
.pointPage .slide-logo .slick-list .slick-slide a:hover img {
  width: 130%;
  height: 130%;
}
.pointPage .slide-logo ul.slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 85%;
  margin: 2.5rem auto 0;
  height: 2px !important;
  overflow: hidden !important;
}
.pointPage .slide-logo ul.slick-dots li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 2px !important;
  background-color: #ddd;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.pointPage .slide-logo ul.slick-dots li.slick-active {
  background-color: #ffc600;
}
.pointPage .slick-arrow {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.pointPage .slick-arrow.slick-prev {
  left: 0;
  background-image: url(../image/main/icon_more_left_off.png);
}
.pointPage .slick-arrow.slick-prev:hover {
  background-image: url(../image/main/icon_more_left_on.png);
}
.pointPage .slick-arrow.slick-prev.slick-disabled {
  background-image: url(../image/main/icon_more_left.png);
  cursor: default;
}
.pointPage .slick-arrow.slick-next {
  right: 0;
  background-image: url(../image/main/icon_more_right_off.png);
}
.pointPage .slick-arrow.slick-next:hover {
  background-image: url(../image/main/icon_more_right_on.png);
}
.pointPage .slick-arrow.slick-next.slick-disabled {
  background-image: url(../image/main/icon_more_right.png);
  cursor: default;
}

.subpageTitle {
  padding: 5rem 0 3rem;
  font-size: 2rem;
  font-weight: bold;
}

.pointDetailPage .sectionArea .pointGraphArea {
  border: 1px solid #d8d8d8;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pointDetailPage .sectionArea .pointGraphArea.type02 {
  border-color: #f5f5fa;
}
.pointDetailPage .list-area {
  padding: 0 0 3rem;
}
.pointDetailPage .list-area .la-graph .lg-info {
  position: relative;
}
.pointDetailPage .list-area .la-graph .lg-info::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: #ddd;
  z-index: 1;
}
.pointDetailPage .list-area .la-graph .lg-info .lg-tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0;
  z-index: 2;
}
.pointDetailPage .list-area .la-graph .lg-info .lg-tab li {
  padding: 1.5rem 2.5rem;
  color: #aaa;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;
}
.pointDetailPage .list-area .la-graph .lg-info .lg-tab li.on {
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #fff;
  color: #292929;
}
.pointDetailPage .list-area .la-graph .lg-info .lg-selectBox {
  position: absolute;
  right: 0;
  bottom: 1rem;
  text-align: right;
  z-index: 3;
}
.pointDetailPage .list-area .la-graph .lg-info .lg-selectBox select {
  padding-right: 4rem;
  margin-left: 5rem;
  border: none;
  background-size: auto 0.5rem;
  font-size: 1.4rem;
}
.pointDetailPage .list-area .la-graph .lg-tabbox {
  display: none;
}
.pointDetailPage .list-area .la-graph .lg-tabbox.on {
  display: block;
  height: auto;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list {
  width: 100%;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #f2f4f6;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li > span {
  display: block;
  padding: 1rem 1rem;
  background-color: #f5f5fa;
  font-size: 1.4rem;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li {
  display: block;
  padding: 1rem 1rem;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span span.point {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span span.point.plus {
  color: #ffc600;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span span.point.plus::before {
  content: "+";
  display: inline-block;
  margin: 0 5px 0 0;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span span.point.minus {
  color: #fc6b6b;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span span.point.minus::before {
  content: "-";
  display: inline-block;
  margin: 0 5px 0 0;
}
.pointDetailPage .list-area .la-graph .lg-tabbox .lg-list > li ul li > span span.time {
  font-size: 0.8rem;
  color: #aaa;
}
.pointDetailPage .list-area + .paging-wrap {
  margin-bottom: 3rem;
}

#productPop01 .box {
  padding-bottom: 2rem;
  text-align: center;
  border: none;
}
#productPop01 .box > p {
  font-size: 1.6rem;
  font-weight: bold;
}
#productPop01 .box > p > span {
  display: block;
  padding: 0 0 1.5rem;
}
#productPop01 .box > p > span:nth-child(2) {
  color: #ffc600;
}
#productPop01 .box > ul {
  padding: 1.5rem 2rem;
  margin: 1rem 0 2.5rem;
  background-color: #f5f5fa;
  border-radius: 1rem;
  font-size: 1.4rem;
  line-height: 2;
}
#productPop01 .box > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#productPop01 .box > ul li > span:nth-child(2) {
  font-weight: bold;
}
#productPop01 .box .inputBox {
  text-align: left;
}

#productPop02 .box {
  padding: 3rem;
  border: none;
}
#productPop02 .box > p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
}
#productPop02 .box > p > span {
  display: block;
  padding: 0 0 1rem;
  font-weight: bold;
  font-size: 1.6rem;
}
#productPop02 .box > p > span::before {
  content: "";
  display: inline-block;
  width: 12.8rem;
  height: 7.2rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto 2rem;
  background-image: url(../image/pointshop/img_npay_chk.png);
}

.productPage .paging-wrap {
  padding: 3rem 0;
}
.productPage .nodataInfo {
  height: calc(100vh - 40rem);
}

@media only screen and (max-width: 1280px) {
  .pointPage section:nth-of-type(1) > div:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pointPage section .mc-item02 {
    position: relative;
    width: calc(100% - 3rem);
    max-width: 123rem;
    margin: 0 auto;
  }
  .pointPage .sp-title.sub-menu + .sm-div {
    padding: 0;
  }
  .pointPage .my-sub-title {
    display: none;
  }
  .pointPage .mainProfile {
    width: 100%;
    padding: 2rem;
    border-radius: 0;
  }
  .pointPage .slide-logo .slick-list {
    width: 95%;
  }
  .pointPage .slide-logo ul.slick-dots {
    width: 95%;
  }
  .productPage .sub-menu .sm-list li {
    position: relative;
  }
  .productPage .sub-menu .hoverInfo {
    position: absolute;
    top: 1.25rem;
    left: 60%;
    display: inline-block;
    margin-top: -1px;
    vertical-align: middle;
  }
  .productPage .sub-menu .hoverInfo i.on span {
    left: -22rem;
    padding: 2rem 1.5rem;
    text-align: left;
  }
  .productPage .sub-menu .hoverInfo i.on span::after {
    left: 22.5rem;
  }
  .productPage .sp-title + div, .productPage .sp-title + section {
    margin-top: 1rem;
  }
  .productPage .my-sub-title {
    display: none;
  }
  .productPage .divTableWrap {
    padding-top: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .product-box.row {
    display: grid;
    grid-template-areas: "img txt" " img info" " img btn";
    grid-template-columns: 6.5fr 7.5fr;
    grid-template-rows: 20rem 12rem 7rem;
    -webkit-column-gap: 7%;
    -moz-column-gap: 7%;
    column-gap: 7%;
    padding: 0 0 7rem;
    border-bottom: 1px solid #d8d8d8;
  }
  .product-box.row .pb-img {
    grid-area: img;
    margin: 0;
  }
  .product-box.row .pb-txt {
    grid-area: txt;
  }
  .product-box.row .pb-info {
    grid-area: info;
  }
  .pointGraphArea .pgOption .calendarBox .calendar::before {
    position: absolute;
    top: 1.2rem;
    left: -1.2rem;
  }
  .productPage .hoverInfo i span {
    padding: 2rem 1.5rem;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .product-box.row .pb-img {
    padding: 5rem 0;
    border-radius: 0rem;
  }
  .product-box.row .pb-img::after {
    display: none;
  }
  .product-box.row .pb-img img {
    width: 20rem;
  }
  .product-box.row .pb-txt {
    margin: 4rem 0 5rem;
    text-align: center;
  }
  .product-box.row .pb-txt .pb-part {
    font-size: 1.6rem;
  }
  .product-box.row .pb-txt .pb-title {
    padding-top: 1rem;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: bold;
  }
  .product-box.row .pb-txt .pb-price {
    font-size: 2.2rem;
  }
  .product-box.row .pb-info ul {
    font-size: 1.6rem;
  }
  .product-box.row .pb-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .product-info {
    padding: 0 1rem;
    line-height: 1.5;
  }
  .pointSummary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ffc600;
    border-radius: 1rem;
  }
  .pointGraphArea {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
  }
  .pointGraphArea .pgOption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0 0;
  }
  .pointGraphArea .pgOption button {
    padding: 1rem 0rem !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #c9c9c9 !important;
    border-radius: 0.5rem !important;
    font-size: 1.5rem;
    text-align: center;
    color: #777;
  }
  .pointGraphArea .pgOption button:not(.search) {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .pointGraphArea .pgOption button:not(.search).on {
    border: 1px solid #ffc600 !important;
    background-color: #fff;
    color: #ffc600;
  }
  .pointGraphArea .pgOption > div {
    width: 100%;
  }
  .pointGraphArea .pgOption .left {
    text-align: right;
  }
  .pointGraphArea .pgOption .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pointGraphArea .pgOption .right > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .pointGraphArea .pgOption .calendarBox {
    -webkit-box-flex: 3.2;
    -ms-flex: 3.2;
    flex: 3.2;
  }
  .pointGraphArea .pgOption .calendarBox .calendar {
    width: 45%;
    margin: 0 0.5rem 0 0.25rem;
    border-bottom: 1px solid #d8d8d8;
  }
  .pointGraphArea .pgOption .calendarBox .calendar::before {
    top: calc(50% - 0.75rem);
    left: 1rem;
  }
  .pointGraphArea .pgOption .calendarBox .calendar input {
    display: block;
    width: 12rem !important;
    padding: 1rem 0 !important;
    margin: 0 0 0 2rem !important;
    font-size: 1.5rem;
    border: none;
    text-align: center !important;
    font-weight: 400;
    border-radius: 0;
  }
  .pointGraphArea .pgOption .calendarBox .wave + .calendar::before {
    display: inline-block;
  }
  .pointGraphArea .pgOption .calendarBox + button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1rem 0rem;
    border: 1px solid #292929;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.5rem;
    color: #fff;
  }
  .pointGraphArea .graphArea {
    margin: 1rem 0;
    background-color: #f5f5fa;
  }
  .pointGraphArea .pgList {
    border-top-color: transparent;
  }
  .pointGraphArea .pgList ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
  .pointGraphArea .pgList ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 1rem;
  }
  .pointGraphArea .pgList ul li::before {
    display: none;
  }
  .pointPage .content {
    padding-bottom: 0;
  }
  .pointPage section {
    position: relative;
    padding: 0rem 0 10rem;
    border-bottom: 1rem solid #eee;
  }
  .pointPage section:nth-of-type(1) > div:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0rem;
  }
  .pointPage section > div, .pointPage section .mc-item02, .pointPage section .mc-item05 {
    position: initial;
  }
  .pointPage section:nth-of-type(2) {
    background-color: #f5f5fa;
  }
  .pointPage section:nth-of-type(even) .mc-title a {
    color: #292929;
  }
  .pointPage section:nth-of-type(even) .mc-title a::after {
    background-image: url(../image/main/icon_more_g.png);
    background-size: auto 1.3rem;
  }
  .pointPage .mc-title {
    border-bottom: none;
    margin-bottom: 1.5rem;
  }
  .pointPage .mc-title h2 {
    padding-top: 4rem;
    font-size: 1.6rem;
  }
  .pointPage .mc-title h2::before {
    width: 2.2rem;
    height: 2.2rem;
    margin: -0.2rem 0.3rem 0 0;
    background-size: 100% auto;
  }
  .pointPage .mc-title a {
    top: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
  }
  .pointPage .mc-title a::after {
    margin: -0.2rem 0 0 3px;
    background-image: url(../image/main/icon_btn_more_on.png);
  }
  .pointPage .mc-title a:hover {
    top: auto;
  }
  .pointPage .mc-item02 .mc-title {
    border-bottom: 1px solid #d8d8d8;
  }
  .pointPage .mc-item03 {
    width: 100%;
    padding: 0 1rem 0rem;
  }
  .pointPage .mc-item03 ul {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
  .pointPage .mc-item03 ul li {
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    padding: 1rem 2rem 1rem 1rem;
  }
  .pointPage .mc-item03 ul li .product-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
  .pointPage .mc-item03 ul li .product-box .pb-img {
    max-width: 8rem;
    margin: 0;
    background-color: transparent;
    border-radius: 0;
  }
  .pointPage .mc-item03 ul li .product-box .pb-img img {
    max-width: 100%;
  }
  .pointPage .mc-item03 ul li .product-box .pb-txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 10rem;
    gap: 1rem;
  }
  .pointPage .mc-item03 ul li .product-box .pb-txt > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pointPage .mc-item03 ul li .product-box .pb-txt > span.pb-part {
    grid-area: 1/1/2/3;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }
  .pointPage .mc-item03 ul li .product-box .pb-txt > span.pb-title {
    grid-area: 2/1/2/3;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
    padding: 0;
    margin: 0;
  }
  .pointPage .mc-item03 ul li .product-box .pb-txt > span.pb-price {
    grid-area: 1/2/3/3;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .pointPage .slide-point .slick-list {
    height: auto;
  }
  .pointPage .slide-point .slick-list .slick-slide {
    width: 21rem !important;
    height: 21rem;
    margin-bottom: 1rem;
  }
  .pointPage .slide-point .slick-list .slick-slide a {
    font-size: 1.6rem;
  }
  .pointPage .slide-point .slick-list .slick-slide a b {
    font-size: 1.8rem;
    height: 8rem;
  }
  .pointPage .slide-point .slick-list::after {
    display: none;
  }
  .pointPage .slide-logo .slick-list .slick-slide {
    width: 12.5rem !important;
    height: 12.5rem;
    margin: 0 1rem;
  }
  .pointPage .slide-logo .slick-list .slick-slide a {
    width: 12.5rem !important;
    height: 12.5rem;
  }
  .pointPage .slide-logo .slick-list .slick-slide a span {
    width: 12.5rem !important;
    height: 12.5rem;
  }
  .subpageTitle {
    padding: 3rem 0 2rem;
    font-size: 1.6rem;
    border-bottom: 1px solid #d8d8d8;
  }
  .pointDetailPage {
    background-color: #fff;
  }
  .pointDetailPage section {
    padding: 0rem 1.5rem 3rem;
    border-bottom: 1rem solid #eee;
  }
  .pointDetailPage .sp-title + section {
    margin-top: 0rem;
  }
  .pointDetailPage .sectionArea {
    padding: 0rem;
    border-radius: 0rem;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .pointDetailPage .sectionArea .pointGraphArea {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0rem;
  }
  .pointDetailPage .list-area .la-graph .lg-info {
    margin-bottom: 5rem;
  }
  .pointDetailPage .list-area .la-graph .lg-info .lg-tab {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 2rem 0;
    z-index: 2;
  }
  .pointDetailPage .list-area .la-graph .lg-info .lg-tab li {
    padding: 1.5rem 3.5rem;
  }
  .pointDetailPage .list-area .la-graph .lg-info .lg-selectBox {
    top: calc(100% + 1rem);
    bottom: auto;
  }
  .pointDetailPage .list-area .la-graph .lg-info .lg-selectBox select {
    width: 13rem;
    margin-left: 1rem;
    border: 1px solid #d8d8d8;
    border-radius: 0.5rem;
  }
  .productPage .sp-title + div, .productPage .sp-title + section {
    margin-top: 0rem;
  }
  .productPage .sp-title.sub-menu + .sm-div {
    padding: 0 2rem;
  }
}
.my-sub-title {
  position: relative;
  font-size: 2rem;
  padding: 5rem 0 2.5rem;
  font-weight: 700;
}
.my-sub-title .search-box {
  position: absolute;
  bottom: 1.75rem;
  right: 0;
  width: 12.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ffc600;
}
.my-sub-title .search-box input {
  max-width: calc(100% - 2rem);
  font-size: 1.3rem;
  border-radius: 0;
}
.my-sub-title .search-box input::-webkit-input-placeholder {
  font-size: 1.3rem;
}
.my-sub-title .search-box input::-moz-placeholder {
  font-size: 1.3rem;
}
.my-sub-title .search-box input:-ms-input-placeholder {
  font-size: 1.3rem;
}
.my-sub-title .search-box input::-ms-input-placeholder {
  font-size: 1.3rem;
}
.my-sub-title .search-box input::placeholder {
  font-size: 1.3rem;
}
.my-sub-title .search-box .search {
  width: 2rem;
  height: 2rem;
  background-image: url(../image/icon_search_s.svg);
}

.user-sub .content {
  padding-bottom: 5rem;
}

.mypage .sm-div > section {
  display: none;
}
.mypage .sm-div > section.on {
  display: block;
}
.mypage.confirm .content.center {
  padding: 0.1px 0 10.7rem;
  max-width: 53.125rem;
}
.mypage.confirm h3 {
  padding: 6.25rem 0 3.125rem;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
.mypage.confirm h3::before {
  content: "";
  display: inline-block;
  width: 12.5rem;
  height: 12.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 2rem;
  background-image: url(../image/main/img_myPage_security.png);
}
.mypage.confirm p.box {
  padding: 1.532rem;
  text-align: center;
  border-bottom: none;
  font-size: 2rem;
}
.mypage.confirm .user-form {
  padding: 1.5rem 0;
}
.mypage.confirm .user-form table tr:nth-child(1) td {
  padding: 2rem 0 1rem;
}
.mypage.confirm .user-form table tr:nth-child(1) td input {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
}
.mypage.confirm .btn-fixed-area .btn {
  display: block;
  width: 32rem;
  max-width: 100%;
  padding: 1.3125rem 0;
  margin: 2.5rem auto 0rem;
  font-size: 2rem;
  border-radius: 0;
}
.mypage.setting table .box {
  border: 1px solid #d8d8d8;
  background-color: #fff;
  border-radius: 10px;
}
.mypage.setting .link-sns {
  padding: 2rem 3.125rem;
}
.mypage.setting .link-sns ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.mypage.setting .link-sns ul li {
  padding: 0.5rem 0 0.5rem 3.125rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mypage.setting .link-sns ul li:nth-child(1), .mypage.setting .link-sns ul li:nth-child(2) {
  padding: 0.5rem 3.125rem 0.5rem 0;
  border-right: 1px solid #d8d8d8;
}
.mypage.setting .link-sns ul li:nth-child(2) {
  grid-area: 2/1/3/2;
}
.mypage.setting .agree-check ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 6rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #d8d8d8;
}
.mypage.setting .agree-check ul li:last-child {
  border-bottom: none;
}
.mypage.setting .agree-check ul li:last-child .btn {
  display: block;
  padding: 0;
  color: #a8a8a8;
  border: none;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.mypage.setting .agree-check ul li:last-child .btn:hover {
  border: none;
  color: #a8a8a8;
}
.mypage.setting .agree-check ul li b {
  font-size: 1.5rem;
}
.mypage.setting .agree-check ul li .btn {
  padding: 0.5rem 1.375rem 0.4rem;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mypage.setting .agree-check ul li .btn:hover {
  border: 1px solid #000;
  color: #000;
}
.mypage.setting .agree-check ul li .checkbox-toggle.type01 .toggle-btn {
  height: 2.5rem;
}
.mypage.setting .agree-check ul li .checkbox-toggle.type01 .toggle-btn::before {
  width: 1.5rem;
  height: 1.5rem;
}
.mypage.setting .agree-check ul li .checkbox-toggle.type01 .toggle-btn.on::before {
  margin-left: calc(100% - 1.5rem - 0.5rem);
}

.withdrawal .withdrawal-info {
  padding: 2.5rem 0 2rem;
  margin: 0rem 0 2.5rem;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.withdrawal .withdrawal-info > p {
  padding-bottom: 0.5rem;
  font-size: 2rem;
}
.withdrawal .withdrawal-info > ul > li {
  position: relative;
  padding-top: 1rem;
  padding-left: 1rem;
  font-size: 1.5rem;
  line-height: 1.5;
}
.withdrawal .withdrawal-info > ul > li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1px;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 1.8rem;
  left: 0;
  background-color: #292929;
}
.withdrawal .withdrawal-info > ul > li:nth-child(3) {
  padding: 0;
}
.withdrawal .withdrawal-info > ul > li:nth-child(3)::before {
  display: none;
}
.withdrawal .withdrawal-info > ul > li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 46rem;
  padding: 1.5rem 0 1rem;
}
.withdrawal .withdrawal-info > ul > li ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
.withdrawal .withdrawal-info > ul > li ul li span {
  padding: 1.3rem 2rem 1.2rem;
  border: 1px solid #d8d8d8;
  border-left: none;
}
.withdrawal .withdrawal-info > ul > li ul li span:nth-child(1) {
  min-width: 8.75rem;
  background-color: #f5f5fa;
  color: #a8a8a8;
}
.withdrawal .withdrawal-info > ul > li ul li span:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.withdrawal .withdrawal-info > ul > li ul li:nth-child(1) span:nth-child(1) {
  border-left: 1px solid #d8d8d8;
  border-radius: 5px 0 0 5px;
}
.withdrawal .withdrawal-info > ul > li ul li:nth-child(2) span:nth-child(2) {
  border-radius: 0 5px 5px 0;
}
.withdrawal .withdrawal-info .box.box-g {
  max-width: 70rem;
  padding: 2rem 1rem 2rem 5rem;
  margin: 2rem 0;
  border: none;
  border-radius: 5px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.withdrawal .withdrawal-info .box.box-g span.txt-red {
  display: inline-block;
  padding-top: 0.5rem;
  font-size: 1.2rem;
}
.withdrawal .withdrawal-info .box.box-g input[type=checkbox] + label {
  position: relative;
}
.withdrawal .withdrawal-info .box.box-g input[type=checkbox] + label::before {
  position: absolute;
  top: 0.5rem;
  left: -3rem;
  border: 1px solid #d8d8d8;
}
.withdrawal .withdrawal-info .box.box-g input[type=checkbox] + label::after {
  top: 1.8rem;
  left: -2.5rem;
}
.withdrawal .btn-fixed-area {
  text-align: center;
}
.withdrawal .btn-fixed-area .btn {
  border-radius: 0;
  font-size: 1.8rem;
  padding: 1rem 0;
  min-width: 9.375rem;
}

.withdrawal-complete h3 {
  padding: 20rem 0 2.5rem;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
.withdrawal-complete h3::before {
  content: "";
  display: inline-block;
  width: 12.5rem;
  height: 12.5rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 2rem;
  background-image: url(../image/main/img_myPage_user.png);
}
.withdrawal-complete p {
  text-align: center;
  border-bottom: none;
  font-size: 2rem;
}
.withdrawal-complete .btn-fixed-area {
  padding-top: 4.375rem;
}
.withdrawal-complete .btn-fixed-area .btn {
  display: block;
  width: 32rem;
  max-width: 100%;
  padding: 1.3125rem 0;
  margin: 0 auto 0rem;
  font-size: 2rem;
  border-radius: 0;
}

.search-result-box {
  position: relative;
  display: none;
}
.search-result-box span {
  display: inline-block;
  color: #ffc600;
  max-width: 90.5%;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  vertical-align: middle;
}
.search-result-box .box.box-g {
  display: none;
  padding: 6rem 1rem;
  margin-bottom: 6rem;
  border: none;
  line-height: 1.667;
  text-align: center;
  color: #a8a8a8;
  font-size: 1.8rem;
}
.search-result-box b {
  display: block;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.search-result-box b span {
  font-size: 1.5rem;
  vertical-align: top;
}
.search-result-box.on {
  display: block;
}
.search-result-box.on:not(.none) .box.box-g:nth-of-type(1) {
  display: block;
}
.search-result-box.on ~ .faq-info {
  display: none;
}
.search-result-box.none > b {
  display: none;
}
.search-result-box.none .box.box-g:nth-of-type(2) {
  display: block;
}
.search-result-box.none + .search-next-box {
  display: none;
}

.board-table {
  width: 100%;
}
.board-table .row > a,
.board-table .row > div {
  display: grid;
  grid-template-columns: 8% 69% 8% 15%;
  grid-template-rows: 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0 1.5rem;
}
.board-table .row.thead > a,
.board-table .row.thead > div {
  background-color: #f5f5fa;
  border: 1px solid #d8d8d8;
}
.board-table .row.thead .cell:nth-child(3) {
  text-align: center;
}
.board-table .row:not(.thead) {
  border-bottom: 1px solid #d8d8d8;
}
.board-table .row.fixed a {
  background-color: #fff9e5;
}
.board-table .row.fixed a .cell:nth-child(1) {
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.board-table .row .cell {
  font-size: 1.5rem;
  text-align: center;
  color: #666;
  padding: 5px 0;
}
.board-table .row .cell:nth-child(2) {
  grid-area: 1/3/3/4;
}
.board-table .row .cell:nth-child(3) {
  grid-area: 1/2/3/2;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  color: #292929;
}
.board-table .row .cell.my {
  position: relative;
}
.board-table .row .cell.my::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "나";
  width: 100%;
  height: 100%;
  color: #ffc600;
  background-color: #fff;
  text-align: center;
  font-weight: 700;
}
.board-table .row.emergency .cell:nth-child(2) {
  color: #fe4e3a;
}
.board-table .row.event .cell:nth-child(2) {
  color: #666;
}
.board-table.type02 .row > a,
.board-table.type02 .row > div {
  grid-template-columns: 8% 54% 15% 8% 15%;
}
.board-table.type02 .row.fixed a .cell:nth-child(2) {
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}

.i-privacy {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 1rem 0 0;
  vertical-align: sub;
  background-image: url(../image/main/icon_lock.svg);
  background-size: 100% auto;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}

.q-tag {
  display: inline-block;
  width: 6rem;
  padding: 0.5rem 0 0.5rem;
  margin: 0 0.1rem;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
}
.q-tag.state {
  border: 1px solid #ffc600;
}
.q-tag.state.complete {
  background-color: #ffc600;
}
.q-tag.state.complete::before {
  content: "답변완료";
}
.q-tag.state.ing::before {
  content: "처리중";
}
.q-tag.category {
  background-color: #f5f5fa;
}

.faq-title {
  display: block;
  padding: 3.125rem 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.faq-list .part {
  color: #ffc600;
  font-weight: 700;
}
.faq-list .link {
  color: #2e93ea;
  cursor: pointer;
}
.faq-list li:not(:nth-child(1)) p {
  border-top: none;
}
.faq-list li p {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.8rem 5rem 1.8rem 5rem;
  border: 1px solid #d8d8d8;
  line-height: 1.25;
  font-size: 1.5rem;
}
.faq-list li p:nth-child(1) {
  cursor: pointer;
}
.faq-list li p:nth-child(1)::before {
  position: absolute;
  top: 1.8rem;
  left: 2.5rem;
  display: block;
  content: "Q";
  font-weight: bold;
}
.faq-list li p:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 1.8rem;
  right: 2.5rem;
  background-image: url(../image/icon_faq_more_open.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.faq-list li p:nth-child(1).on::before {
  color: #ffc600;
}
.faq-list li p:nth-child(1).on::after {
  background-image: url(../image/icon_more_right_off.svg);
}
.faq-list li p:nth-child(1).on + p {
  display: block;
}
.faq-list li p:nth-child(2) {
  display: none;
  border-top: none;
  background-color: #f5f5fa;
}
.faq-list li p:nth-child(2)::before {
  position: absolute;
  top: 1.8rem;
  left: 2.5rem;
  display: block;
  content: "A";
  font-weight: bold;
  color: #ffc600;
}

.faq-info {
  border: none;
  border-radius: 10px;
}
.faq-info ul {
  width: 100%;
  padding: 2.5rem 0;
  overflow: hidden;
}
.faq-info ul li {
  position: relative;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33%;
  height: 100%;
  padding: 0 0.5rem;
  color: #a8a8a8;
  font-size: 1.5rem;
  line-height: 1.5;
}
.faq-info ul li span {
  display: block;
}
.faq-info ul li::before {
  content: "";
  display: inline-block;
  width: 1.563rem;
  height: 1.6rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1.5rem;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.faq-info ul li:nth-child(1) span {
  color: #ffc600;
}
.faq-info ul li:nth-child(1)::before {
  background-image: url(../image/main/icon_call.svg);
}
.faq-info ul li:nth-child(2) {
  border-left: 1px solid #a8a8a8;
  border-right: 1px solid #a8a8a8;
}
.faq-info ul li:nth-child(2)::before {
  background-image: url(../image/main/icon_time.svg);
}
.faq-info ul li:nth-child(3) span {
  color: #2e93ea;
}
.faq-info ul li:nth-child(3)::before {
  background-image: url(../image/main/icon_mail.svg);
}
.faq-info ul li:nth-child(3)::after {
  display: none;
}

.faq .faq-search-result-box {
  display: none;
}
.faq .search-result-box.on + .search-next-box .tab-wrap {
  display: none;
}
.faq .search-result-box.on + .search-next-box .faq-search-result-box {
  display: block;
}
.faq .paging-wrap {
  padding: 2.75rem 0;
}

.service-txt-box {
  padding: 2rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  font-size: 1.4rem;
  word-break: break-word;
}
.service-txt-box .title-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid #d8d8d8;
}
.service-txt-box .title-area::after {
  content: "";
  display: block;
  clear: both;
}
.service-txt-box .title-area .cell {
  font-size: 1.5rem;
}
.service-txt-box .title-area .cell:nth-child(2) {
  max-width: 70%;
  margin: 0 2rem;
}
.service-txt-box .title-area .cell:nth-child(3) {
  margin: 0 0 0 auto;
}
.service-txt-box .title-area .cell:nth-child(4) {
  position: absolute;
  top: calc(100% + 2rem);
  left: 0;
  font-size: 1.3rem;
  color: #a8a8a8;
}
.service-txt-box .title-area .cell.my {
  position: relative;
}
.service-txt-box .title-area .cell.my::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "나";
  width: 100%;
  height: 100%;
  color: #ffc600;
  background-color: #fff;
  text-align: right;
  line-height: 1;
}
.service-txt-box .title-area .cell.emergency {
  color: #fe4e3a;
}
.service-txt-box .title-area .cell.event {
  color: #666;
}
.service-txt-box .answer-area {
  padding: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background-color: #f5f5fa;
}
.service-txt-box .answer-area .answer-info span {
  margin-bottom: 1rem;
}
.service-txt-box .answer-area .answer-info span:nth-child(1) {
  display: none;
}
.service-txt-box .answer-area .answer-info span:nth-child(2) {
  color: #a8a8a8;
}

.center-detail .service-txt-box .title-area {
  margin-bottom: 2rem;
}
.center-detail .service-txt-box .title-area .cell:nth-child(3) {
  color: #666;
}

.qna-detail .service-txt-box .title-area .cell:nth-child(3) {
  color: #666;
  font-weight: 700;
}

.qna-write .input select {
  width: 9.375rem;
  padding: 1rem 2rem 1rem 2rem;
  margin-right: 1rem;
  border: 1px solid #d8d8d8;
  background-image: url("../image/icon_faq_more_open.svg");
  background-size: 1.2rem 1.2rem;
  background-position: right 2rem center;
  font-size: 1.3rem;
}
.qna-write .input input[type=checkbox] + label {
  margin-right: 0.825rem;
  font-size: 1.3rem;
}
.qna-write .input input[type=checkbox] + label::before {
  border: 1px solid #d8d8d8;
}

.qna-list .btn-fixed-area {
  position: relative;
  height: 1px;
}
.qna-list .btn-fixed-area a,
.qna-list .btn-fixed-area button {
  position: absolute;
  right: 0;
  top: -3.5rem;
  padding: 1.3rem 2.5rem;
  border-radius: 5px;
  font-size: 1.5rem;
}

.service .btn-fixed-area {
  text-align: center;
}
.service .btn-fixed-area a,
.service .btn-fixed-area button {
  width: 15rem;
  border-radius: 10px;
  font-size: 1.5rem;
  padding: 1.7rem 2.8rem;
  margin-left: 2rem;
}
.service .btn-fixed-area a:nth-child(1),
.service .btn-fixed-area button:nth-child(1) {
  margin-left: 0;
}
.service .btn-fixed-area a.btn.disabled,
.service .btn-fixed-area button.btn.disabled {
  background-color: #939393 !important;
  border: 1px solid #939393 !important;
  color: #fff !important;
}
.service .service-txt-box {
  border-radius: 5px;
}
.service .service-txt-box + .btn-fixed-area button,
.service .service-txt-box + .btn-fixed-area a {
  padding: 2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.5rem;
}
.service.center-list .condition-search-wrap.type03 div:nth-of-type(3) .input input[type=text], .service.faq .condition-search-wrap.type03 div:nth-of-type(3) .input input[type=text] {
  width: 42.2rem;
}

.center-list .paging-wrap,
.qna-list .paging-wrap {
  padding-top: 2rem;
}

.center-detail .search-box {
  display: none;
}

.qna-detail .condition-search-wrap.type03,
.qna-write .condition-search-wrap.type03 {
  display: none;
}

@media only screen and (max-width: 1280px) {
  .qnalist .btn-fixed-area {
    text-align: right;
  }
  .qnalist .btn-fixed-area a,
  .qnalist .btn-fixed-area button {
    position: initial;
    top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .my-sub-title {
    display: none;
  }
  .mypage .top-btn {
    bottom: 5rem;
  }
  .mypage .sm-div > section {
    display: block;
  }
  .mypage .sm-div > section.on {
    display: block;
  }
  .mypage.confirm .content.center {
    padding: 0.1px 0 5.7rem;
  }
  .mypage.confirm h3 {
    padding: 6rem 0 0;
    font-size: 1.8rem;
  }
  .mypage.confirm h3::before {
    width: 10.6rem;
    height: 10.6rem;
    background-size: 100%;
  }
  .mypage.confirm p.box {
    padding: 1rem;
    border: none;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .mypage.confirm .user-form {
    padding: 0 1rem 1rem;
    margin: 0 0 5rem;
    border: 1px solid #d8d8d8;
  }
  .mypage.setting .content.center {
    padding-bottom: 9rem;
  }
  .mypage.setting .my-sub-title {
    margin: 0 5%;
  }
  .mypage.setting .box-g {
    background-color: #fff;
    border: none;
  }
  .mypage.setting table .box {
    padding: 0;
    border: none;
  }
  .mypage.setting .link-sns ul {
    display: block;
    border: none;
  }
  .mypage.setting .link-sns ul li {
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #edf0f2;
    color: #a8a8a8;
  }
  .mypage.setting .link-sns ul li:nth-child(1), .mypage.setting .link-sns ul li:nth-child(2) {
    padding: 1rem 0;
    border-right: none;
  }
  .mypage.setting .link-sns ul li:last-child {
    padding-bottom: 0.5rem;
    border-bottom: none;
  }
  .mypage.setting .link-sns ul li::before {
    margin-right: 1rem;
  }
  .mypage.setting .link-sns ul li .btn.btn-line {
    width: 6.25rem;
    padding: 0.65rem 0 0.6rem;
  }
  .mypage.setting .info-form {
    border-bottom: 1rem solid #eee;
  }
  .mypage.setting .info-form table tr:nth-of-type(6) {
    border-bottom: 1rem solid #eee;
  }
  .mypage.setting .info-form table tr:nth-of-type(7) th {
    padding-top: 1.5rem;
  }
  .mypage.setting .info-form table tr:last-child td {
    padding-bottom: 0;
  }
  .mypage.setting .info-form table td .modify-box .password-box.type02::before {
    display: block;
    content: "새 비밀번호";
    padding: 2rem 0 1rem;
    color: #292929;
    font-size: 1.3rem;
  }
  .mypage.setting .info-form table td .modify-box.box .password-box input {
    background-color: #fff;
    border: 1px solid #d8d8d8;
  }
  .mypage.setting .info-form table td .modify-box.box .password-box.type02::before {
    display: none;
  }
  .mypage.setting .info-form table td .modify-box.box.disable {
    opacity: 1;
  }
  .mypage.setting .info-form table td .modify-box.box.disable .password-box input {
    background-color: #f5f5fa;
  }
  .mypage.setting .info-form table td .modify-box:not(.on) .btn-area .btn.btn-b {
    background-color: #f8f8f8;
    color: #292929;
    border: 1px solid #d8d8d8;
  }
  .mypage.setting .agree-check {
    border: none;
  }
  .mypage.setting .agree-check ul {
    padding: 0 5%;
  }
  .mypage.setting .agree-check ul li {
    padding: 1.5rem 0;
  }
  .mypage.setting .agree-check ul li:last-child {
    border-bottom: none;
  }
  .mypage.setting .agree-check ul li:last-child .btn {
    border: none;
    font-weight: 400;
  }
  .mypage.setting .agree-check ul li b {
    font-weight: 400;
  }
  .mypage.setting .agree-check ul li .btn {
    padding: 1rem 1.5rem 0.5rem;
    border: 1px solid #a8a8a8;
    font-size: 1.2rem;
  }
  .withdrawal .pageTitle {
    border-bottom: 1px solid #d8d8d8;
  }
  .withdrawal .sub-menu.sp-title h2 {
    border-bottom: 1px solid #d8d8d8;
  }
  .withdrawal .sub-menu.sp-title .sm-now {
    display: none;
  }
  .withdrawal .sub-menu.sp-title .sm-list {
    display: none;
  }
  .withdrawal .sub-menu.sp-title + .sm-div {
    margin-top: 7rem;
  }
  .withdrawal .my-sub-title {
    display: none;
  }
  .withdrawal .withdrawal-info {
    border: none;
    padding: 2.5rem 5% 0;
    margin-bottom: 0;
  }
  .withdrawal .withdrawal-info p {
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .withdrawal .withdrawal-info > ul > li {
    font-size: 1.3rem;
  }
  .withdrawal .withdrawal-info > ul > li ul {
    display: block;
    max-width: 100%;
  }
  .withdrawal .withdrawal-info > ul > li ul li {
    width: 100%;
  }
  .withdrawal .withdrawal-info > ul > li ul li span {
    padding: 1rem;
    font-size: 1.2rem;
  }
  .withdrawal .withdrawal-info .box.box-g {
    background-color: #f5f5fa;
  }
  .withdrawal-complete h3 {
    padding: 15rem 0 0;
    font-size: 1.8rem;
  }
  .withdrawal-complete h3::before {
    width: 10.6rem;
    height: 10.6rem;
    background-size: 100%;
  }
  .withdrawal-complete p {
    padding: 1rem;
    border: none;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .withdrawal-complete .btn-fixed-area {
    padding-top: 0rem;
  }
  .q-tag {
    padding: 0.5rem 0;
  }
  .search-result-box .box.box-g {
    padding: 2.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  .search-result-box b {
    margin: 0 0 1.3rem 1.5rem;
    font-size: 1.6rem;
  }
  .search-result-box b span {
    font-size: 1.6rem;
    margin-left: 0.5rem;
  }
  .board-table {
    border-top: 1px solid #d8d8d8;
  }
  .board-table .row > a,
  .board-table .row > div {
    position: relative;
    display: block;
    padding: 1.5rem 3rem 1.3rem 1rem;
  }
  .board-table .row > a::after,
  .board-table .row > div::after {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 1rem);
    right: 1.5rem;
    background-image: url(../image/icon_faq_more_open.svg);
    background-size: 100% auto;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .board-table .row.thead {
    display: none;
  }
  .board-table .row .cell {
    max-width: 100%;
    text-align: left;
    line-height: 1.25;
  }
  .board-table .row .cell:nth-child(1) {
    display: none !important;
  }
  .board-table.type01 .row .cell {
    display: inline;
    vertical-align: top;
  }
  .board-table.type01 .row .cell:nth-child(2) {
    margin-right: 0.25rem;
  }
  .board-table.type01 .row .cell:nth-child(2)::before, .board-table.type01 .row .cell:nth-child(2)::after {
    display: inline;
  }
  .board-table.type01 .row .cell:nth-child(2)::before {
    content: "[";
  }
  .board-table.type01 .row .cell:nth-child(2)::after {
    content: "]";
  }
  .board-table.type01 .row .cell:nth-child(3) {
    text-overflow: initial;
    white-space: inherit;
    word-wrap: normal;
    word-break: break-all;
  }
  .board-table.type01 .row .cell:last-child {
    display: block;
    margin-top: 1rem;
    color: #a8a8a8;
  }
  .board-table.type02 .row.fixed .cell:nth-child(2) {
    display: none;
  }
  .board-table.type02 .row.fixed .cell:nth-child(3) {
    margin: 0rem 0 0.5rem;
  }
  .board-table.type02 .row .cell:nth-child(3) {
    margin: 0.5rem 0 0.45rem;
  }
  .board-table.type02 .row .cell:nth-child(4) {
    display: inline-block;
    width: auto;
    color: #a8a8a8;
  }
  .board-table.type02 .row .cell:nth-child(4).my {
    vertical-align: middle;
    width: 1.5rem;
    text-align: left;
    overflow: hidden;
    line-height: 1;
    text-indent: -50000000000000px;
  }
  .board-table.type02 .row .cell:nth-child(4).my::before {
    text-indent: 0;
  }
  .board-table.type02 .row .cell:nth-child(5) {
    display: inline-block;
    color: #a8a8a8;
  }
  .board-table.type02 .row .cell:nth-child(5)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: -1px 1rem 0;
    background-color: #a8a8a8;
  }
  .faq-title {
    padding: 2rem 1.5rem 1.2rem;
  }
  .faq-list li p {
    border-left: none;
    border-right: none;
  }
  .faq-list li p:nth-child(1), .faq-list li p:nth-child(2) {
    padding-left: 3.5rem;
  }
  .faq-list li p:nth-child(1)::before, .faq-list li p:nth-child(2)::before {
    left: 1.5rem;
  }
  .faq-list li p:nth-child(1)::after, .faq-list li p:nth-child(2)::after {
    right: 1.5rem;
  }
  .faq-info {
    width: calc(100% - 2.5rem);
    margin: 2rem auto 0;
  }
  .faq-info ul {
    display: block;
    padding: 2rem 0 1rem;
  }
  .faq-info ul li {
    float: none;
    width: 100%;
    padding-left: 2rem;
    padding-bottom: 1rem;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border: none !important;
    font-size: 0.688rem;
  }
  .faq-info ul li::before {
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    padding-top: 0.5rem;
    margin-right: 0.5rem;
  }
  .faq-info ul li span {
    display: inline;
  }
  .faq .paging-wrap {
    border-bottom: 1rem solid #eee;
  }
  .service-txt-box {
    padding: 0 0 4.25rem;
    margin-bottom: 0;
    border: none;
  }
  .service-txt-box .title-area {
    display: block;
    padding: 1.5rem 0;
    margin: 0 1.5rem;
  }
  .service-txt-box .title-area .cell:nth-child(2) {
    max-width: 100%;
    margin: 1rem 0;
  }
  .service-txt-box .title-area .cell:nth-child(3) {
    display: inline-block;
  }
  .service-txt-box .title-area .cell:nth-child(4) {
    position: initial;
    display: inline-block;
  }
  .service-txt-box .title-area .cell:nth-child(4)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: -1px 1rem 0;
    background-color: #a8a8a8;
  }
  .service-txt-box .title-area .cell.my {
    vertical-align: middle;
    width: 1.5rem;
    height: 1.5rem;
    text-align: left;
    overflow: hidden;
  }
  .service-txt-box .text-area {
    padding: 1.5rem;
  }
  .service-txt-box .answer-area {
    margin: 1em 0 0;
    border-bottom: none;
  }
  .service-txt-box .answer-area .answer-info span:nth-child(1) {
    display: inline-block;
    color: #ffc600;
    font-weight: 700;
    font-size: 1.5rem;
  }
  .service-txt-box .answer-area .answer-info span:nth-child(2)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: -1px 1rem 0;
    background-color: #a8a8a8;
  }
  .center-list .paging-wrap {
    padding-bottom: 1rem;
  }
  .center-detail .service-txt-box .title-area .cell:nth-child(1) {
    display: none;
  }
  .center-detail .service-txt-box .title-area .cell:nth-child(2) {
    font-weight: 700;
    font-size: 1.6rem;
  }
  .center-detail .service-txt-box .title-area .cell:nth-child(3) {
    color: #a8a8a8;
  }
  .qna-detail .btn-fixed-area .btn.mob-main-color {
    background-color: #ffc600;
    border: 1px solid #ffc600;
    color: #000;
  }
  .qna-list .btn-fixed-area {
    position: fixed;
    height: 5rem;
    text-align: center;
  }
  .qna-list .btn-fixed-area a,
  .qna-list .btn-fixed-area button {
    position: absolute;
    top: auto;
    right: auto;
    width: 100%;
  }
  .qna-write .box.box-g {
    background-color: #fff;
    border: none;
  }
  .qna-write .info-form {
    padding: 0 5%;
  }
  .qna-write .info-form tr:first-child th {
    border-top: none;
  }
  .qna-write .info-form th {
    padding: 2rem 0 1rem;
    border-top: 1px solid #d8d8d8;
  }
  .qna-write .info-form td {
    padding: 0 0 2rem;
  }
  .service .sb-mob-close {
    position: absolute;
    top: 50%;
    left: 1rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    width: 1.2rem;
    height: 1.5rem;
    background-image: url(../image/main/icon_mob_back.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    cursor: pointer;
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
  }
  .service .my-sub-title {
    padding: 0;
    border-bottom: none;
    text-indent: -5000000000000000px;
    overflow: hidden;
    font-size: 0px;
    text-align: left;
  }
  .service .my-sub-title .search-box {
    position: fixed;
    top: 3.8rem;
    bottom: auto;
    right: 0.5rem;
    width: 2rem;
    height: 3.125rem;
    padding: 0;
    border-bottom: none;
    background-color: #fff;
    z-index: 5000;
  }
  .service .my-sub-title .search-box input {
    display: none;
  }
  .service .my-sub-title .search-box .search {
    background-image: url(../image/icon_search_b.svg);
  }
  .service .my-sub-title.on {
    width: 100%;
  }
  .service .my-sub-title.on .search-box {
    width: 100%;
  }
  .service .my-sub-title.on .search-box .sb-mob-close {
    display: block;
  }
  .service .my-sub-title.on .search-box input {
    display: block;
    max-width: 75%;
    height: 100%;
    margin-left: 12%;
  }
  .service .my-sub-title.on .search-box .search {
    margin-right: 1.2rem;
  }
  .service .condition-search-wrap.type03 {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100vw;
    height: calc(100vh - 6rem);
    overflow-y: auto;
    display: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    z-index: 4999;
  }
  .service .condition-search-wrap.type03 .mob-title {
    display: block;
    width: 100%;
    height: auto;
    padding: 1.8rem 0;
    background-color: #fff;
    font-size: 1.8rem;
    text-align: center;
  }
  .service .condition-search-wrap.type03 .mob-title span {
    display: inline-block;
    margin: 0 auto;
    font-weight: 700;
  }
  .service .condition-search-wrap.type03 .mob-title .sb-mob-close {
    display: block;
    top: 2.7rem;
    bottom: auto;
  }
  .service .condition-search-wrap.type03 .row {
    padding: 2rem 0;
  }
  .service .condition-search-wrap.type03 .row .title {
    padding: 0 1.5rem;
    margin: 0 0 1rem;
  }
  .service .condition-search-wrap.type03 .row .title:nth-of-type(2) {
    display: block;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #d8d8d8;
  }
  .service .condition-search-wrap.type03 .row .input {
    padding: 0 1.5rem;
  }
  .service .condition-search-wrap.type03 .row .cs-btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .service .condition-search-wrap.type03 .row .cs-btn-area button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1rem 0;
    color: #000;
  }
  .service .condition-search-wrap.type03 .row .cs-btn-area button:nth-last-of-type(1) {
    margin-right: 0;
  }
  .service .condition-search-wrap.type03 .row .cs-cal-area {
    width: 100%;
  }
  .service .condition-search-wrap.type03 .row:nth-of-type(2) {
    background-color: #f5f5fa;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .title {
    font-weight: 400;
    color: #292929;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) select {
    margin-bottom: 0;
    border-radius: 10px;
    color: #000;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input input[type=text] {
    width: auto;
    border-radius: 10px;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input input[type=text]::-webkit-input-placeholder {
    text-align: left;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input input[type=text]::-moz-placeholder {
    text-align: left;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input input[type=text]:-ms-input-placeholder {
    text-align: left;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input input[type=text]::-ms-input-placeholder {
    text-align: left;
  }
  .service .condition-search-wrap.type03 .row:not(:nth-of-type(2)) .input input[type=text]::placeholder {
    text-align: left;
  }
  .service .condition-search-wrap.type03 .search {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 5rem;
    margin: 0 !important;
    border-radius: 0 !important;
    background-color: #ffc600;
    color: #000;
    text-align: center;
    z-index: 999;
  }
  .service .condition-search-wrap.type03.on {
    display: block;
  }
  .center-detail .search-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.settingPage .content {
  margin: 0rem 0 12rem;
}
.settingPage .pageTitle {
  display: none;
}
.settingPage .profilePageWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  padding: 6rem 0;
}
.settingPage .profilePageWrap .mainProfile {
  width: 33%;
  padding: 4.3rem 2rem 4rem;
}
.settingPage .profilePageWrap > ul {
  width: 33%;
  height: 100%;
}
.settingPage .profilePageWrap .myInfoList {
  padding: 2rem 3rem;
  background-color: #f5f5fa;
  border-radius: 1rem;
}
.settingPage .profilePageWrap .myManageList {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
}
.settingPage .profilePageWrap .myManageList li {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  width: calc(50% - 1rem);
  padding: 2rem 0 2.1rem;
  background-color: #f5f5fa;
  border-radius: 1rem;
}
.settingPage .profilePageWrap .myManageList li a {
  padding: 1.25rem 0;
}
.settingPage .profilePageWrap .myManageList li a > span:nth-of-type(1) {
  font-size: 1.6rem;
}
.settingPage .profilePageWrap .myManageList li a > span:nth-of-type(2) {
  font-size: 1.8rem;
}
.settingPage .profilePageWrap .myManageList li.on {
  background-color: #ffc600;
  color: #fff;
}
.settingPage .profilePageWrap .myManageList li.on a > span {
  color: #fff;
}
.settingPage .newsWrap {
  padding: 3rem;
}
.settingPage .commentWrap .txtWrap {
  font-size: 1.6rem;
}
.settingPage .commentWrap .moreBtn {
  height: 1.8rem;
}
.settingPage .commentWrap.type02 {
  padding-bottom: 2rem;
  border-bottom: 1px solid #d8d8d8;
}
.settingPage .commentWrap.type02 .optionInsideWrap {
  gap: 1rem;
  border-bottom: none;
  padding: 0 0.5rem 0 1.5rem;
}
.settingPage .commentWrap.type02 .newsWrap {
  margin-bottom: 2rem;
}
.settingPage .ulList li:last-child .commentWrap {
  border-bottom: none;
}
.settingPage .center > .lrWrap {
  margin-top: 3rem;
}
.settingPage .nodataInfo {
  padding-top: 15rem;
}
.settingPage .heartBtn {
  margin-right: 1rem;
}

.pcInputTable {
  width: 100%;
}
.pcInputTable th, .pcInputTable td {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
.pcInputTable th {
  width: 25rem;
  padding: 0 0 0 3rem;
  background-color: #f5f5fa;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

@media only screen and (min-width: 1280px) {
  .settingPage .sub-menu {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .settingPage .profilePageWrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 3rem 0;
  }
  .settingPage .profilePageWrap .mainProfile {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
  }
  .settingPage .profilePageWrap > ul {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: calc(50% - 2rem);
  }
}
@media only screen and (min-width: 768px) {
  .settingPage .myInfoList li {
    margin: 1.5rem 0;
  }
  .settingPage .userInfoSettingWrap {
    display: grid;
    grid-template-areas: "img email" "img nickname";
    grid-template-columns: 10rem 5fr;
    grid-template-rows: 6.5rem 6.5rem;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    padding: 4rem 0 0rem;
  }
  .settingPage .userInfoSettingWrap > div .userImg {
    grid-area: img;
  }
  .settingPage .userInfoSettingWrap > div:not(:nth-child(1)) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
  }
  .settingPage .userInfoSettingWrap > div:not(:nth-child(1)) .inputTitle {
    margin-bottom: 0;
  }
  .settingPage .userInfoSettingWrap > div:not(:nth-child(1)) .flexBox {
    width: 70%;
    max-width: 60rem;
    margin: 0 0 0 3.5rem;
  }
  .settingPage .userInfoSettingWrap > div:not(:nth-child(1)) .flexBox input {
    padding: 1.45rem 1rem;
  }
  .settingPage .userInfoSettingWrap > div:nth-child(2) {
    grid-area: email;
    display: grid;
    grid-template-columns: 11.5rem 5fr;
  }
  .settingPage .userInfoSettingWrap > div:nth-child(3) {
    grid-area: nickname;
  }
  .settingPage .userInfoSettingWrap > div:nth-child(3) .btn {
    width: 12rem;
    font-size: 1.6rem;
  }
  .settingPage .userInfoSettingWrap > div:nth-child(3) .flexBox {
    max-width: 73rem;
  }
  .settingPage .userInfoSettingWrap + .info_nickname {
    padding: 2rem 0 5rem 28.5rem;
    margin: 0 0 5rem;
    border-bottom: 1px solid #d8d8d8;
    font-size: 1.2rem;
  }
  .settingPage .userPwsettingWrap .inputTitle {
    margin: 0 0 2rem;
    font-size: 2rem;
  }
  .settingPage .userPwsettingWrap + .moreTxtBtn {
    margin-top: 5rem;
    font-size: 1.6rem;
  }
  .settingPage .pcInputTable td {
    padding: 1rem 1rem 0;
  }
  .settingPage .pcInputTable .inputBox {
    float: left;
    width: 70%;
    max-width: 60rem;
  }
  .settingPage .pcInputTable .inputBox input {
    padding: 1.45rem 1rem;
  }
  .settingPage .pcInputTable .btn {
    float: left;
    width: 12rem;
    margin-left: 1rem;
    font-size: 1.6rem;
  }
  .settingPage .selectBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 15rem;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    border: 1px solid #999;
    font-size: 1.4rem;
  }
  .settingPage .selectBtn::after {
    margin: 0;
  }
  .settingPage .likeBtn {
    margin: 0 1rem;
  }
  .settingPage .dislikeBtn {
    margin-left: 1rem;
  }
  .settingPage .dislikeBtn::before {
    margin-top: 0rem;
  }
  .settingPage .likeBtn::before, .settingPage .dislikeBtn::before {
    width: 1.4rem;
    height: 1.4rem;
  }
  .settingPage .commentWrap .profileWrap {
    grid-template-columns: 3rem minmax(5rem, auto) 2fr 5fr;
  }
  .settingPage .commentWrap .newsWrap {
    grid-template-areas: "newstitle newsbtn" "newsinfo newsbtn";
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .settingPage .commentWrap .newsWrap .newsLink {
    font-size: 1.6rem;
  }
  .settingPage .alignList {
    gap: 1.7rem;
  }
  .settingPage .alignList li::before {
    margin-right: 1.7rem;
  }
  .settingPage .alertBox {
    padding: 1.5rem 0;
  }
  .settingPage .alertBox p {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
  }
  .settingPage .alertBox p::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .settingPage .alertBox .btn {
    margin: 0;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: normal;
  }
  .settingPage .alertSetWrap li {
    margin-top: 4.4rem;
  }
  .settingPage .alertSetWrap li .lrWrap {
    padding: 0 0 4.4rem 0;
  }
  .settingPage .alertSetWrap .hoverInfo {
    font-size: 1.8rem;
  }
  .settingPage .alertSetWrap .hoverInfo i {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.2rem;
  }
  .settingPage .alertSetWrap .hoverInfo i span {
    top: 0;
    left: 3rem;
    width: 60rem;
    display: inline-block;
    padding: 0 0rem;
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #999;
    text-align: left;
    font-size: 1.3rem;
  }
  .settingPage .alertSetWrap .hoverInfo i span::after {
    display: none;
  }
  .settingPage .areaTopLine {
    border-top: none;
  }
  .settingPage .alertBtn.type02 {
    margin-right: 0.5rem;
  }
  .settingPage .btn.txtBtn {
    padding: 1rem 0;
    min-width: 13rem;
    margin-left: 1rem;
    font-size: 1.4rem;
    font-weight: normal;
    background-color: #f5f5fa;
    border-color: #d8d8d8;
  }
  .settingPage .subscribeList {
    padding: 0;
  }
  .settingPage .subscribeList li {
    padding: 2.5rem 0;
    border-bottom: 1px solid #d8d8d8;
  }
  .settingPage .subscribeList li .btn {
    min-width: 13rem;
    font-size: 1.4rem;
  }
  .settingPage .subscribeList .profileWrap .userName {
    font-size: 1.8rem;
  }
  .settingPage .subscribeList .profileWrap .userDateInfo {
    font-size: 1.4rem;
  }
  .settingPage .paging-wrap {
    margin-top: 7.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .settingPage .pageTitle {
    display: block;
  }
  .settingPage .profilePageWrap:not(.type02) {
    display: none;
  }
  .settingPage .profilePageWrap.type02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    background-color: #f5f5fa;
  }
  .settingPage .profilePageWrap.type02 .mainProfile {
    padding: 1rem 0;
  }
  .settingPage .profilePageWrap.type02 > ul {
    width: 100%;
    padding: 2rem;
    background-color: #fff;
  }
  .settingPage .profilePageWrap.type02 .myManageList {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-radius: 1rem;
  }
  .settingPage .profilePageWrap.type02 .myManageList li {
    background-color: transparent;
  }
  .settingPage .profilePageWrap.type02 .myManageList li a {
    padding: 0;
  }
  .settingPage .profilePageWrap.type02 .myManageList li.on a {
    color: #000;
  }
  .settingPage .profilePageWrap.type02 .myManageList li.on a span:nth-of-type(1) {
    color: #777;
  }
  .settingPage .profilePageWrap.type02 .myManageList li.on a span:nth-of-type(2) {
    color: #000;
  }
  .settingPage .pcInputTable th {
    display: none;
  }
  .settingPage .pcInputTable td {
    border: none;
  }
  .settingPage .commentWrap.type02 {
    position: relative;
    padding-bottom: 4rem;
  }
  .settingPage .commentWrap.type02 .optionBtnWrap {
    position: inherit;
  }
  .settingPage .commentWrap.type02 .optionInsideWrap {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    padding-left: 4rem;
  }
  .settingPage .userInfoSettingWrap > div:nth-child(3) {
    padding: 0 0 0rem 0;
  }
  .settingPage .userInfoSettingWrap > div:nth-child(3) .btn {
    min-width: 9rem;
    height: 5.5rem;
  }
  .settingPage .userInfoSettingWrap + .info_nickname {
    padding: 1rem 0 2rem 0rem;
    margin: 0 0 2rem;
    font-size: 1.2rem;
  }
}
.rankingBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem 3rem;
}
.rankingBox .rankingNum {
  width: 4.8rem;
  text-align: center;
  line-height: 1.25;
}
.rankingBox .rankingNum .numBox {
  font-size: 2rem;
  font-weight: bold;
}
.rankingBox .rankingNum .txtBox {
  display: none;
  font-size: 1.1rem;
  color: #a8a8a8;
}
.rankingBox .rankingNum .txtBox strong {
  display: block;
  font-size: 1.3rem;
  color: #000;
  font-weight: bold;
}
.rankingBox .profileWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rankingBox .profileWrap .userImg {
  border-radius: 50%;
}
.rankingBox .profileWrap .userImg span {
  width: 4.5rem;
  height: 4.5rem;
}
.rankingBox .profileWrap .btn {
  padding: 0.3rem 1rem;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  color: #fff;
}
.rankingBox .rankingScore {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
}
.rankingBox.txt .numBox {
  display: none;
}
.rankingBox.txt .txtBox {
  display: block;
}
.rankingBox.top .numBox {
  display: inline-block;
  width: 2.8rem;
  height: 4.1rem;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  text-indent: -5000000000000000px;
  overflow: hidden;
  font-size: 0px;
  text-align: left;
}
.rankingBox.top .userImg {
  border: 3px solid #ffc600;
}
.rankingBox.top.first .numBox {
  background-image: url(../image/ranking_1.png);
}
.rankingBox.top.first .userImg {
  position: relative;
}
.rankingBox.top.first .userImg::before {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 2.3rem;
  height: 1.6rem;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../image/ranking_crown.png);
}
.rankingBox.top.second .numBox {
  background-image: url(../image/ranking_2.png);
}
.rankingBox.top.third .numBox {
  background-image: url(../image/ranking_3.png);
}
.rankingBox.my {
  background-color: #fffbee;
  border: 2px solid #ffc600;
  border-radius: 1rem;
}

.rankingPage .infoBox {
  margin-bottom: 3rem;
}
.rankingPage .infoBox p {
  color: #999;
  font-size: 1.3rem;
}
.rankingPage .infoBox p > span {
  display: block;
  margin: 0.5rem 0 0rem;
  color: #ffc600;
}
.rankingPage .infoBox p > span .hoverInfo i {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1.2rem;
}
.rankingPage .infoBox p > span .hoverInfo i > span {
  width: 25rem;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
}
.rankingPage .infoBox p > span .hoverInfo i > span b {
  font-weight: normal;
  color: #ffc600;
}
.rankingPage .infoBox p > span .hoverInfo i > span > span {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  gap: 3rem;
}
.rankingPage .infoBox .rankingSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.rankingPage .infoBox .rankingSearch .title {
  margin-right: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.rankingPage .infoBox .rankingSearch .input {
  width: 37.4rem;
}
.rankingPage .infoBox .rankingSearch .input input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.5rem;
}
.rankingPage .infoBox .rankingSearch .btn {
  padding: 1.3rem 3.7rem;
  font-size: 1.5rem;
  border-radius: 0.5rem;
}
.rankingPage .rankingList {
  margin-bottom: 5rem;
}
.rankingPage .rankingList li {
  border-bottom: 1px solid #d8d8d8;
}
.rankingPage .nodataInfo {
  height: 35vh;
}

.profilePop {
  max-width: 32rem !important;
}
.profilePop .profileWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0 0rem;
}
.profilePop .profileWrap .userImg span {
  width: 8rem;
  height: 8rem;
}
.profilePop .popContent {
  padding-bottom: 3rem;
}
.profilePop .popContent > ul {
  width: calc(100% - 6rem);
  padding: 1.5rem 2rem;
  margin: 1rem auto 1.5rem;
  background-color: #f5f5fa;
  border-radius: 0.5rem;
}
.profilePop .popContent > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2;
  font-size: 1.3rem;
}
.profilePop .popContent .subscribeBtn {
  display: block;
  width: 10rem;
  padding: 0.5rem 0;
  margin: 0 auto;
}
.profilePop .popContent .subscribeBtn + p {
  display: none;
  margin: 1rem 0 0rem;
  color: #999;
  font-size: 1.2rem;
  text-align: center;
}
.profilePop .popContent .subscribeBtn:not(.on) {
  background-color: #999999;
  color: #fff;
}
.profilePop .popContent .subscribeBtn:not(.on)::before {
  border-color: #fff;
}
.profilePop .popContent .subscribeBtn:not(.on) + p {
  display: block;
}

@media only screen and (max-width: 1280px) {
  .rankingPage .sp-title.sub-menu .sm-list {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .rankingPage .rankingBox {
    padding: 2.5rem 1rem;
  }
  .rankingPage .rankingBox.my {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2.8rem;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0px -1px 15px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px -1px 15px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  .rankingPage .infoBox {
    position: relative;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .rankingPage .infoBox p {
    text-align: center;
    line-height: 1.5;
  }
  .rankingPage .infoBox p > span {
    margin: 0;
  }
  .rankingPage .infoBox p > span .hoverInfo i > span {
    left: auto;
    right: -2rem;
  }
  .rankingPage .infoBox p > span .hoverInfo i > span::after {
    left: auto;
    right: 2.2rem;
  }
  .rankingPage .infoBox .rankingSearch {
    display: none;
  }
  .rankingPage .infoBox.on {
    margin-top: 7rem;
  }
  .rankingPage .infoBox.on .rankingSearch {
    position: absolute;
    top: -6rem;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 0rem;
  }
  .rankingPage .infoBox.on .rankingSearch .title {
    display: none;
  }
  .rankingPage .infoBox.on .rankingSearch .input {
    width: calc(100% - 9rem);
    margin-left: 0;
  }
  .rankingPage .infoBox.on .rankingSearch .input input {
    padding: 1.2rem 1.5rem;
  }
  .rankingPage .infoBox.on .rankingSearch .btn {
    width: 8rem;
    padding: 1.5rem 0;
  }
  .rankingPage .rankingBox {
    gap: 1rem;
  }
  .rankingPage .rankingBox .profileWrap {
    display: grid;
    grid-template-areas: "img name" "img btn";
    grid-template-columns: 5rem 1fr;
    row-gap: 0.5rem;
  }
  .rankingPage .rankingBox .profileWrap .userBtnWrap {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
  .rankingPage .rankingBox .rankingScore {
    min-width: 6rem;
  }
}
.policy-table {
  border-collapse: collapse;
  table-layout: fixed;
}
.policy-table th, .policy-table td {
  width: 33%;
  padding: 1rem;
  border: 1px solid #d8d8d8;
}
.policy-table.type04 th, .policy-table.type04 td {
  width: 25%;
}

.policy-notice .sp-title {
  position: relative;
}
.policy-notice .sp-title h2 {
  padding: 2.5rem 0 1.8rem 0;
  border-bottom: 1px solid #d8d8d8;
  font-size: 2.5rem;
}
.policy-notice .sp-title .mob-btn-back {
  display: none;
}
.policy-notice .policy-paging {
  border-bottom: 1px solid #d8d8d8;
}
.policy-notice .policy-paging span {
  display: none;
}
.policy-notice .policy-paging ul {
  overflow: hidden;
}
.policy-notice .policy-paging ul li {
  float: left;
  margin-right: 2.5rem;
}
.policy-notice .policy-paging ul li a {
  display: block;
  padding: 1.8rem 0;
  font-size: 1.8rem;
  border-bottom: 2px solid transparent;
}
.policy-notice .policy-paging ul li.on a {
  font-weight: 700;
  border-bottom: 2px solid #292929;
}
.policy-notice nav {
  padding: 0 0 3rem 0;
  border-bottom: 1px solid #d8d8d8;
}
.policy-notice nav h3 {
  padding: 3rem 0;
  font-size: 2rem;
  font-weight: 700;
}
.policy-notice nav h3:nth-of-type(2) {
  color: #ffc600;
}
.policy-notice nav ol, .policy-notice nav ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  grid-gap: 2rem;
}
.policy-notice nav ol li button, .policy-notice nav ul li button {
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.7;
}
.policy-notice nav ol li button:hover, .policy-notice nav ul li button:hover {
  font-weight: 700;
  text-decoration: underline;
}
.policy-notice article .arti-title {
  display: none;
}
.policy-notice article section > h3 {
  padding: 4.125rem 0 0rem 0;
  font-size: 2rem;
  font-weight: 700;
}
.policy-notice article section li, .policy-notice article section p {
  padding-bottom: 0.5rem;
  line-height: 1.8;
}
.policy-notice article section > ol > li div > ol > li, .policy-notice article section ul > li div > ol > li {
  position: relative;
  margin-left: 3rem;
}
.policy-notice article section > ol > li div > ol > li::before, .policy-notice article section ul > li div > ol > li::before {
  position: absolute;
  top: 0.5rem;
  left: -2.5rem;
  display: block;
  height: 1.7rem;
  padding: 0 0.5rem 0 0.5rem;
  border: 0.5px solid #666;
  border-radius: 50%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.25;
}
.policy-notice article section > ol > li div > ol > li:nth-child(1)::before, .policy-notice article section ul > li div > ol > li:nth-child(1)::before {
  content: "1";
}
.policy-notice article section > ol > li div > ol > li:nth-child(2)::before, .policy-notice article section ul > li div > ol > li:nth-child(2)::before {
  content: "2";
}
.policy-notice article section > ol > li div > ol > li:nth-child(3)::before, .policy-notice article section ul > li div > ol > li:nth-child(3)::before {
  content: "3";
}
.policy-notice article section > ol > li div > ol > li:nth-child(4)::before, .policy-notice article section ul > li div > ol > li:nth-child(4)::before {
  content: "4";
}
.policy-notice article section > ol > li div > ol > li:nth-child(5)::before, .policy-notice article section ul > li div > ol > li:nth-child(5)::before {
  content: "5";
}
.policy-notice article section > ol > li div > ol > li:nth-child(6)::before, .policy-notice article section ul > li div > ol > li:nth-child(6)::before {
  content: "6";
}
.policy-notice article section > ol > li div > ol > li:nth-child(7)::before, .policy-notice article section ul > li div > ol > li:nth-child(7)::before {
  content: "7";
}
.policy-notice article section > ol > li div > ol > li:nth-child(8)::before, .policy-notice article section ul > li div > ol > li:nth-child(8)::before {
  content: "8";
}
.policy-notice article section > ol > li div > ol > li:nth-child(9)::before, .policy-notice article section ul > li div > ol > li:nth-child(9)::before {
  content: "9";
}
.policy-notice article section > ol > li div > ol > li:nth-child(10)::before, .policy-notice article section ul > li div > ol > li:nth-child(10)::before {
  content: "10";
}
.policy-notice article section > ol > li div > ol > li:nth-child(11)::before, .policy-notice article section ul > li div > ol > li:nth-child(11)::before {
  content: "11";
}
.policy-notice article section > ol > li div > ol > li:nth-child(12)::before, .policy-notice article section ul > li div > ol > li:nth-child(12)::before {
  content: "12";
}
.policy-notice article section > ol > li div > ol > li:nth-child(13)::before, .policy-notice article section ul > li div > ol > li:nth-child(13)::before {
  content: "13";
}
.policy-notice article section > ol > li div > ol > li:nth-child(14)::before, .policy-notice article section ul > li div > ol > li:nth-child(14)::before {
  content: "14";
}
.policy-notice article section > ol > li div > ol > li:nth-child(15)::before, .policy-notice article section ul > li div > ol > li:nth-child(15)::before {
  content: "15";
}
.policy-notice article section > ol > li div > ol > li:nth-child(16)::before, .policy-notice article section ul > li div > ol > li:nth-child(16)::before {
  content: "16";
}
.policy-notice article section > ol > li div > ol > li:nth-child(17)::before, .policy-notice article section ul > li div > ol > li:nth-child(17)::before {
  content: "17";
}
.policy-notice article section > ol > li div > ol > li:nth-child(18)::before, .policy-notice article section ul > li div > ol > li:nth-child(18)::before {
  content: "18";
}
.policy-notice article section > ol > li div > ol > li:nth-child(19)::before, .policy-notice article section ul > li div > ol > li:nth-child(19)::before {
  content: "19";
}
.policy-notice article section > ol > li div > ol > li:nth-child(20)::before, .policy-notice article section ul > li div > ol > li:nth-child(20)::before {
  content: "20";
}
.policy-notice article section > ol > li div > ol > li:nth-child(21)::before, .policy-notice article section ul > li div > ol > li:nth-child(21)::before {
  content: "21";
}
.policy-notice article section > ol > li div > ol > li:nth-child(22)::before, .policy-notice article section ul > li div > ol > li:nth-child(22)::before {
  content: "22";
}
.policy-notice article section > ol > li div > ol > li:nth-child(23)::before, .policy-notice article section ul > li div > ol > li:nth-child(23)::before {
  content: "23";
}
.policy-notice article section > ol > li div > ol > li:nth-child(24)::before, .policy-notice article section ul > li div > ol > li:nth-child(24)::before {
  content: "24";
}
.policy-notice article section > ol > li div > ol > li:nth-child(25)::before, .policy-notice article section ul > li div > ol > li:nth-child(25)::before {
  content: "25";
}
.policy-notice article section > ol > li div > ol > li:nth-child(26)::before, .policy-notice article section ul > li div > ol > li:nth-child(26)::before {
  content: "26";
}
.policy-notice article section > ol > li div > ol > li:nth-child(27)::before, .policy-notice article section ul > li div > ol > li:nth-child(27)::before {
  content: "27";
}
.policy-notice article section > ol > li div > ol > li:nth-child(28)::before, .policy-notice article section ul > li div > ol > li:nth-child(28)::before {
  content: "28";
}
.policy-notice article section > ol > li div > ol > li:nth-child(29)::before, .policy-notice article section ul > li div > ol > li:nth-child(29)::before {
  content: "29";
}
.policy-notice article section > ol > li div > ol > li:nth-child(30)::before, .policy-notice article section ul > li div > ol > li:nth-child(30)::before {
  content: "30";
}
.policy-notice article section > ol > li div > ol > li:nth-child(31)::before, .policy-notice article section ul > li div > ol > li:nth-child(31)::before {
  content: "31";
}
.policy-notice article section > ol > li div > ol > li:nth-child(32)::before, .policy-notice article section ul > li div > ol > li:nth-child(32)::before {
  content: "32";
}
.policy-notice article section > ol > li div > ol > li:nth-child(33)::before, .policy-notice article section ul > li div > ol > li:nth-child(33)::before {
  content: "33";
}
.policy-notice article section > ol > li div > ol > li:nth-child(34)::before, .policy-notice article section ul > li div > ol > li:nth-child(34)::before {
  content: "34";
}
.policy-notice article section > ol > li div > ol > li:nth-child(35)::before, .policy-notice article section ul > li div > ol > li:nth-child(35)::before {
  content: "35";
}
.policy-notice article section > ol > li div > ol > li:nth-child(36)::before, .policy-notice article section ul > li div > ol > li:nth-child(36)::before {
  content: "36";
}
.policy-notice article section > ol > li div > ol > li:nth-child(37)::before, .policy-notice article section ul > li div > ol > li:nth-child(37)::before {
  content: "37";
}
.policy-notice article section > ol > li div > ol > li:nth-child(38)::before, .policy-notice article section ul > li div > ol > li:nth-child(38)::before {
  content: "38";
}
.policy-notice article section > ol > li div > ol > li:nth-child(39)::before, .policy-notice article section ul > li div > ol > li:nth-child(39)::before {
  content: "39";
}
.policy-notice article section > ol > li div > ol > li:nth-child(40)::before, .policy-notice article section ul > li div > ol > li:nth-child(40)::before {
  content: "40";
}
.policy-notice article section > ol > li div > ol > li:nth-child(41)::before, .policy-notice article section ul > li div > ol > li:nth-child(41)::before {
  content: "41";
}
.policy-notice article section > ol > li div > ol > li:nth-child(42)::before, .policy-notice article section ul > li div > ol > li:nth-child(42)::before {
  content: "42";
}
.policy-notice article section > ol > li div > ol > li:nth-child(43)::before, .policy-notice article section ul > li div > ol > li:nth-child(43)::before {
  content: "43";
}
.policy-notice article section > ol > li div > ol > li:nth-child(44)::before, .policy-notice article section ul > li div > ol > li:nth-child(44)::before {
  content: "44";
}
.policy-notice article section > ol > li div > ol > li:nth-child(45)::before, .policy-notice article section ul > li div > ol > li:nth-child(45)::before {
  content: "45";
}
.policy-notice article section > ol > li div > ol > li:nth-child(46)::before, .policy-notice article section ul > li div > ol > li:nth-child(46)::before {
  content: "46";
}
.policy-notice article section > ol > li div > ol > li:nth-child(47)::before, .policy-notice article section ul > li div > ol > li:nth-child(47)::before {
  content: "47";
}
.policy-notice article section > ol > li div > ol > li:nth-child(48)::before, .policy-notice article section ul > li div > ol > li:nth-child(48)::before {
  content: "48";
}
.policy-notice article section > ol > li div > ol > li:nth-child(49)::before, .policy-notice article section ul > li div > ol > li:nth-child(49)::before {
  content: "49";
}
.policy-notice article section > ol > li div > ol > li:nth-child(50)::before, .policy-notice article section ul > li div > ol > li:nth-child(50)::before {
  content: "50";
}
.policy-notice article section > ol > li div > ol > li:nth-child(51)::before, .policy-notice article section ul > li div > ol > li:nth-child(51)::before {
  content: "51";
}
.policy-notice article section > ol > li div > ol > li:nth-child(52)::before, .policy-notice article section ul > li div > ol > li:nth-child(52)::before {
  content: "52";
}
.policy-notice article section > ol > li div > ol > li:nth-child(53)::before, .policy-notice article section ul > li div > ol > li:nth-child(53)::before {
  content: "53";
}
.policy-notice article section > ol > li div > ol > li:nth-child(54)::before, .policy-notice article section ul > li div > ol > li:nth-child(54)::before {
  content: "54";
}
.policy-notice article section > ol > li div > ol > li:nth-child(55)::before, .policy-notice article section ul > li div > ol > li:nth-child(55)::before {
  content: "55";
}
.policy-notice article section > ol > li div > ol > li:nth-child(56)::before, .policy-notice article section ul > li div > ol > li:nth-child(56)::before {
  content: "56";
}
.policy-notice article section > ol > li div > ol > li:nth-child(57)::before, .policy-notice article section ul > li div > ol > li:nth-child(57)::before {
  content: "57";
}
.policy-notice article section > ol > li div > ol > li:nth-child(58)::before, .policy-notice article section ul > li div > ol > li:nth-child(58)::before {
  content: "58";
}
.policy-notice article section > ol > li div > ol > li:nth-child(59)::before, .policy-notice article section ul > li div > ol > li:nth-child(59)::before {
  content: "59";
}
.policy-notice article section > ol > li div > ol > li:nth-child(60)::before, .policy-notice article section ul > li div > ol > li:nth-child(60)::before {
  content: "60";
}
.policy-notice article section > ol > li div > ol > li:nth-child(61)::before, .policy-notice article section ul > li div > ol > li:nth-child(61)::before {
  content: "61";
}
.policy-notice article section > ol > li div > ol > li:nth-child(62)::before, .policy-notice article section ul > li div > ol > li:nth-child(62)::before {
  content: "62";
}
.policy-notice article section > ol > li div > ol > li:nth-child(63)::before, .policy-notice article section ul > li div > ol > li:nth-child(63)::before {
  content: "63";
}
.policy-notice article section > ol > li div > ol > li:nth-child(64)::before, .policy-notice article section ul > li div > ol > li:nth-child(64)::before {
  content: "64";
}
.policy-notice article section > ol > li div > ol > li:nth-child(65)::before, .policy-notice article section ul > li div > ol > li:nth-child(65)::before {
  content: "65";
}
.policy-notice article section > ol > li div > ol > li:nth-child(66)::before, .policy-notice article section ul > li div > ol > li:nth-child(66)::before {
  content: "66";
}
.policy-notice article section > ol > li div > ol > li:nth-child(67)::before, .policy-notice article section ul > li div > ol > li:nth-child(67)::before {
  content: "67";
}
.policy-notice article section > ol > li div > ol > li:nth-child(68)::before, .policy-notice article section ul > li div > ol > li:nth-child(68)::before {
  content: "68";
}
.policy-notice article section > ol > li div > ol > li:nth-child(69)::before, .policy-notice article section ul > li div > ol > li:nth-child(69)::before {
  content: "69";
}
.policy-notice article section > ol > li div > ol > li:nth-child(70)::before, .policy-notice article section ul > li div > ol > li:nth-child(70)::before {
  content: "70";
}
.policy-notice article section > ol > li div > ol > li:nth-child(71)::before, .policy-notice article section ul > li div > ol > li:nth-child(71)::before {
  content: "71";
}
.policy-notice article section > ol > li div > ol > li:nth-child(72)::before, .policy-notice article section ul > li div > ol > li:nth-child(72)::before {
  content: "72";
}
.policy-notice article section > ol > li div > ol > li:nth-child(73)::before, .policy-notice article section ul > li div > ol > li:nth-child(73)::before {
  content: "73";
}
.policy-notice article section > ol > li div > ol > li:nth-child(74)::before, .policy-notice article section ul > li div > ol > li:nth-child(74)::before {
  content: "74";
}
.policy-notice article section > ol > li div > ol > li:nth-child(75)::before, .policy-notice article section ul > li div > ol > li:nth-child(75)::before {
  content: "75";
}
.policy-notice article section > ol > li div > ol > li:nth-child(76)::before, .policy-notice article section ul > li div > ol > li:nth-child(76)::before {
  content: "76";
}
.policy-notice article section > ol > li div > ol > li:nth-child(77)::before, .policy-notice article section ul > li div > ol > li:nth-child(77)::before {
  content: "77";
}
.policy-notice article section > ol > li div > ol > li:nth-child(78)::before, .policy-notice article section ul > li div > ol > li:nth-child(78)::before {
  content: "78";
}
.policy-notice article section > ol > li div > ol > li:nth-child(79)::before, .policy-notice article section ul > li div > ol > li:nth-child(79)::before {
  content: "79";
}
.policy-notice article section > ol > li div > ol > li:nth-child(80)::before, .policy-notice article section ul > li div > ol > li:nth-child(80)::before {
  content: "80";
}
.policy-notice article section > ol > li div > ol > li:nth-child(81)::before, .policy-notice article section ul > li div > ol > li:nth-child(81)::before {
  content: "81";
}
.policy-notice article section > ol > li div > ol > li:nth-child(82)::before, .policy-notice article section ul > li div > ol > li:nth-child(82)::before {
  content: "82";
}
.policy-notice article section > ol > li div > ol > li:nth-child(83)::before, .policy-notice article section ul > li div > ol > li:nth-child(83)::before {
  content: "83";
}
.policy-notice article section > ol > li div > ol > li:nth-child(84)::before, .policy-notice article section ul > li div > ol > li:nth-child(84)::before {
  content: "84";
}
.policy-notice article section > ol > li div > ol > li:nth-child(85)::before, .policy-notice article section ul > li div > ol > li:nth-child(85)::before {
  content: "85";
}
.policy-notice article section > ol > li div > ol > li:nth-child(86)::before, .policy-notice article section ul > li div > ol > li:nth-child(86)::before {
  content: "86";
}
.policy-notice article section > ol > li div > ol > li:nth-child(87)::before, .policy-notice article section ul > li div > ol > li:nth-child(87)::before {
  content: "87";
}
.policy-notice article section > ol > li div > ol > li:nth-child(88)::before, .policy-notice article section ul > li div > ol > li:nth-child(88)::before {
  content: "88";
}
.policy-notice article section > ol > li div > ol > li:nth-child(89)::before, .policy-notice article section ul > li div > ol > li:nth-child(89)::before {
  content: "89";
}
.policy-notice article section > ol > li div > ol > li:nth-child(90)::before, .policy-notice article section ul > li div > ol > li:nth-child(90)::before {
  content: "90";
}
.policy-notice article section > ol > li div > ol > li:nth-child(91)::before, .policy-notice article section ul > li div > ol > li:nth-child(91)::before {
  content: "91";
}
.policy-notice article section > ol > li div > ol > li:nth-child(92)::before, .policy-notice article section ul > li div > ol > li:nth-child(92)::before {
  content: "92";
}
.policy-notice article section > ol > li div > ol > li:nth-child(93)::before, .policy-notice article section ul > li div > ol > li:nth-child(93)::before {
  content: "93";
}
.policy-notice article section > ol > li div > ol > li:nth-child(94)::before, .policy-notice article section ul > li div > ol > li:nth-child(94)::before {
  content: "94";
}
.policy-notice article section > ol > li div > ol > li:nth-child(95)::before, .policy-notice article section ul > li div > ol > li:nth-child(95)::before {
  content: "95";
}
.policy-notice article section > ol > li div > ol > li:nth-child(96)::before, .policy-notice article section ul > li div > ol > li:nth-child(96)::before {
  content: "96";
}
.policy-notice article section > ol > li div > ol > li:nth-child(97)::before, .policy-notice article section ul > li div > ol > li:nth-child(97)::before {
  content: "97";
}
.policy-notice article section > ol > li div > ol > li:nth-child(98)::before, .policy-notice article section ul > li div > ol > li:nth-child(98)::before {
  content: "98";
}
.policy-notice article section > ol > li div > ol > li:nth-child(99)::before, .policy-notice article section ul > li div > ol > li:nth-child(99)::before {
  content: "99";
}
.policy-notice article section > ol > li div > ol > li:nth-child(n+10)::before, .policy-notice article section ul > li div > ol > li:nth-child(n+10)::before {
  padding: 0 0.4rem 0 0.15rem;
  letter-spacing: -1.5px;
}
.policy-notice article section > ol > li div > ol.num > li::before, .policy-notice article section ul > li div > ol.num > li::before {
  top: 0.675rem;
  left: -1.85rem;
  width: 1.5rem;
  padding: 0;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  text-align: right;
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(1)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(1)::before {
  content: "1.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(2)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(2)::before {
  content: "2.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(3)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(3)::before {
  content: "3.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(4)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(4)::before {
  content: "4.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(5)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(5)::before {
  content: "5.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(6)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(6)::before {
  content: "6.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(7)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(7)::before {
  content: "7.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(8)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(8)::before {
  content: "8.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(9)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(9)::before {
  content: "9.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(10)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(10)::before {
  content: "10.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(11)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(11)::before {
  content: "11.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(12)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(12)::before {
  content: "12.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(13)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(13)::before {
  content: "13.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(14)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(14)::before {
  content: "14.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(15)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(15)::before {
  content: "15.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(16)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(16)::before {
  content: "16.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(17)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(17)::before {
  content: "17.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(18)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(18)::before {
  content: "18.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(19)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(19)::before {
  content: "19.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(20)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(20)::before {
  content: "20.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(21)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(21)::before {
  content: "21.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(22)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(22)::before {
  content: "22.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(23)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(23)::before {
  content: "23.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(24)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(24)::before {
  content: "24.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(25)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(25)::before {
  content: "25.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(26)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(26)::before {
  content: "26.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(27)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(27)::before {
  content: "27.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(28)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(28)::before {
  content: "28.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(29)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(29)::before {
  content: "29.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(30)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(30)::before {
  content: "30.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(31)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(31)::before {
  content: "31.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(32)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(32)::before {
  content: "32.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(33)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(33)::before {
  content: "33.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(34)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(34)::before {
  content: "34.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(35)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(35)::before {
  content: "35.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(36)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(36)::before {
  content: "36.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(37)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(37)::before {
  content: "37.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(38)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(38)::before {
  content: "38.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(39)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(39)::before {
  content: "39.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(40)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(40)::before {
  content: "40.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(41)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(41)::before {
  content: "41.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(42)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(42)::before {
  content: "42.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(43)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(43)::before {
  content: "43.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(44)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(44)::before {
  content: "44.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(45)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(45)::before {
  content: "45.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(46)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(46)::before {
  content: "46.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(47)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(47)::before {
  content: "47.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(48)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(48)::before {
  content: "48.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(49)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(49)::before {
  content: "49.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(50)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(50)::before {
  content: "50.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(51)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(51)::before {
  content: "51.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(52)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(52)::before {
  content: "52.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(53)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(53)::before {
  content: "53.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(54)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(54)::before {
  content: "54.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(55)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(55)::before {
  content: "55.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(56)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(56)::before {
  content: "56.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(57)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(57)::before {
  content: "57.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(58)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(58)::before {
  content: "58.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(59)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(59)::before {
  content: "59.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(60)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(60)::before {
  content: "60.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(61)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(61)::before {
  content: "61.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(62)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(62)::before {
  content: "62.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(63)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(63)::before {
  content: "63.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(64)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(64)::before {
  content: "64.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(65)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(65)::before {
  content: "65.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(66)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(66)::before {
  content: "66.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(67)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(67)::before {
  content: "67.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(68)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(68)::before {
  content: "68.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(69)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(69)::before {
  content: "69.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(70)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(70)::before {
  content: "70.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(71)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(71)::before {
  content: "71.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(72)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(72)::before {
  content: "72.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(73)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(73)::before {
  content: "73.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(74)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(74)::before {
  content: "74.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(75)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(75)::before {
  content: "75.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(76)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(76)::before {
  content: "76.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(77)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(77)::before {
  content: "77.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(78)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(78)::before {
  content: "78.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(79)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(79)::before {
  content: "79.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(80)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(80)::before {
  content: "80.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(81)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(81)::before {
  content: "81.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(82)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(82)::before {
  content: "82.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(83)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(83)::before {
  content: "83.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(84)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(84)::before {
  content: "84.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(85)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(85)::before {
  content: "85.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(86)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(86)::before {
  content: "86.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(87)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(87)::before {
  content: "87.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(88)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(88)::before {
  content: "88.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(89)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(89)::before {
  content: "89.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(90)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(90)::before {
  content: "90.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(91)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(91)::before {
  content: "91.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(92)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(92)::before {
  content: "92.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(93)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(93)::before {
  content: "93.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(94)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(94)::before {
  content: "94.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(95)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(95)::before {
  content: "95.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(96)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(96)::before {
  content: "96.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(97)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(97)::before {
  content: "97.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(98)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(98)::before {
  content: "98.";
}
.policy-notice article section > ol > li div > ol.num > li:nth-child(99)::before, .policy-notice article section ul > li div > ol.num > li:nth-child(99)::before {
  content: "99.";
}
.policy-notice article section > ol > li, .policy-notice article section > ul > li {
  padding: 0 0 0;
}
.policy-notice article section > ol > li h4, .policy-notice article section > ul > li h4 {
  padding: 1.5rem 0 1rem 0;
  font-size: 2rem;
  font-weight: 700;
}
.policy-notice article section > ol > li button, .policy-notice article section > ol > li a, .policy-notice article section > ul > li button, .policy-notice article section > ul > li a {
  font-size: 1.6rem;
  color: #2e93ea;
  text-decoration: underline;
}
.policy-notice article section > ol > li ol ol, .policy-notice article section > ol > li ol ul, .policy-notice article section > ol > li ul ol, .policy-notice article section > ol > li ul ul, .policy-notice article section > ul > li ol ol, .policy-notice article section > ul > li ol ul, .policy-notice article section > ul > li ul ol, .policy-notice article section > ul > li ul ul {
  margin-left: 1rem;
}
.policy-notice article section > ol > li ol ol li, .policy-notice article section > ol > li ol ul li, .policy-notice article section > ol > li ul ol li, .policy-notice article section > ol > li ul ul li, .policy-notice article section > ul > li ol ol li, .policy-notice article section > ul > li ol ul li, .policy-notice article section > ul > li ul ol li, .policy-notice article section > ul > li ul ul li {
  padding: 0;
}
.policy-notice article section.history button, .policy-notice article section.history a {
  font-size: 1.6rem;
  color: #2e93ea;
  text-decoration: underline;
}
.policy-notice.privacy nav ol li::before, .policy-notice.privacy nav ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3px 1rem 0 0;
  border-radius: 50%;
  background-color: #292929;
}
.policy-notice.privacy nav ol li button, .policy-notice.privacy nav ul li button {
  max-width: calc(100% - 1.976rem);
}
.policy-notice.privacy article section > ol > li h4::before, .policy-notice.privacy article section > ul > li h4::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3.5px 5px 0 0;
  border-radius: 50%;
  background-color: #292929;
}
.policy-notice.privacy article section.pp-info {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #d8d8d8;
}
.policy-notice.privacy article section.pp-info p {
  line-height: 1.6;
}
.policy-notice.privacy article section.pp-info h4 {
  padding: 3.125rem 0 0;
  font-weight: 700;
  text-align: center;
}
.policy-notice.privacy article section.pp-info ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.5rem;
  padding: 3rem 0 1.25rem;
}
.policy-notice.privacy article section.pp-info ul li {
  position: relative;
}
.policy-notice.privacy article section.pp-info ul li > button {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: #292929;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.policy-notice.privacy article section.pp-info ul li > button::before, .policy-notice.privacy article section.pp-info ul li > button::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 100%;
  margin: 0 0px 1rem 0;
  border-radius: 1.25rem;
  border: 1px solid #dae1e6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-size: 55% auto;
}
.policy-notice.privacy article section.pp-info ul li > button::after {
  position: absolute;
  top: 0;
  left: 0;
}
.policy-notice.privacy article section.pp-info ul li:nth-of-type(1) button::after {
  background-image: url(../image/policy/img_policy_01.svg);
}
.policy-notice.privacy article section.pp-info ul li:nth-of-type(2) button::after {
  background-image: url(../image/policy/img_policy_02.svg);
}
.policy-notice.privacy article section.pp-info ul li:nth-of-type(3) button::after {
  background-image: url(../image/policy/img_policy_03.svg);
}
.policy-notice.privacy article section.pp-info ul li:nth-of-type(4) button::after {
  background-image: url(../image/policy/img_policy_04.svg);
}
.policy-notice.privacy article section.pp-info ul li:nth-of-type(5) button::after {
  background-image: url(../image/policy/img_policy_05.svg);
}
.policy-notice.privacy article section.pp-info ul li:nth-of-type(6) button::after {
  background-image: url(../image/policy/img_policy_06.svg);
}
.policy-notice.privacy article section.pp-info ul li div {
  display: none;
  position: absolute;
  top: 105%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.policy-notice.privacy article section.pp-info ul li div h5 {
  width: 50rem;
  max-width: 100%;
  padding: 0.625rem 0 0.45rem;
  font-size: 1.6rem;
  text-align: left;
  text-indent: 1.25rem;
  clear: both;
  border-bottom: 1px solid #f5f5f5;
}
.policy-notice.privacy article section.pp-info ul li div p {
  text-align: left;
  padding: 1.5rem 1.25rem 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
.policy-notice.privacy article section.pp-info ul li div .close-btn {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0;
  background-color: transparent;
  text-indent: -5000000000px;
  overflow: hidden;
}
.policy-notice.privacy article section.pp-info ul li div .close-btn::before, .policy-notice.privacy article section.pp-info ul li div .close-btn::after {
  content: " ";
  display: block;
  position: absolute;
  top: 1px;
  left: 45%;
  height: 1.75rem;
  width: 2px;
  background-color: #292929;
}
.policy-notice.privacy article section.pp-info ul li div .close-btn::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-image: none;
}
.policy-notice.privacy article section.pp-info ul li div .close-btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.policy-notice.privacy article section.pp-info ul li:hover > button {
  color: #ffc600;
  font-weight: 700;
}
.policy-notice.privacy article section.pp-info ul li:hover > button::before {
  padding-bottom: calc(100% - 2px);
  border: 2px solid #ffc600;
}
.policy-notice.privacy article section.pp-info ul li:hover div {
  display: block;
}
.policy-notice.privacy article section.pp-info ul li:first-child div {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.policy-notice.privacy article section.pp-info ul li:last-child div {
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.policy-notice.privacy article section.pp-info ul + p {
  font-size: 1.5rem;
}
.policy-notice.privacy article section.history h3::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: -3px 0.625rem 0 0;
  border-radius: 50%;
  background-color: #292929;
}

@media only screen and (max-width: 768px) {
  .table-area table th {
    font-size: 1.5rem;
  }
  .table-area table td {
    font-size: 1.2rem;
  }
  .policy-notice .content .center {
    max-width: 100%;
    width: 100%;
  }
  .policy-notice .sp-title h2 {
    padding: 1.7rem 0 1.8rem;
    font-size: 1.8rem;
    border-bottom: none;
  }
  .policy-notice .sp-title .mob-btn-back {
    display: block;
  }
  .policy-notice .policy-paging {
    position: relative;
    margin-top: 0rem;
  }
  .policy-notice .policy-paging > span {
    display: block;
    width: 100%;
    padding: 1.5rem 2.5rem;
    font-size: 1.5rem;
    text-align: center;
    cursor: pointer;
  }
  .policy-notice .policy-paging > span.on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .policy-notice .policy-paging > span.on + ul {
    display: block;
  }
  .policy-notice .policy-paging > span .pp-open {
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../image/icon_faq_more_open.svg);
    background-size: 100% auto;
    z-index: 5000;
  }
  .policy-notice .policy-paging ul {
    display: none;
    position: absolute;
    top: calc(100% - 3rem);
    left: 0;
    width: 100%;
    padding: 1.375rem 0;
    background-color: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    z-index: 10;
  }
  .policy-notice .policy-paging ul li {
    float: none;
    text-align: center;
    margin: 0;
  }
  .policy-notice .policy-paging ul li a {
    padding: 0.687rem 0;
    border-bottom: none;
    font-size: 1.063rem;
  }
  .policy-notice .policy-paging ul li.on a {
    color: #ffc600;
    border-bottom: none;
    font-weight: normal;
  }
  .policy-notice nav h3 {
    padding: 2rem 0 2rem;
    text-align: center;
    font-size: 1.7rem;
  }
  .policy-notice nav ol, .policy-notice nav ul {
    grid-gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .policy-notice nav ol li, .policy-notice nav ul li {
    padding: 0 1.5rem;
  }
  .policy-notice nav ol li button, .policy-notice nav ul li button {
    font-size: 1.5rem;
  }
  .policy-notice article section {
    padding: 0 1.5rem 0;
  }
  .policy-notice article section > h3 {
    font-size: 1.7rem;
  }
  .policy-notice article section > ol > li, .policy-notice article section > ul > li {
    font-size: 1.5rem;
  }
  .policy-notice article section > ol > li h4, .policy-notice article section > ul > li h4 {
    padding: 5rem 0 1rem 0;
    font-size: 1.7rem;
  }
  .policy-notice article section > ol > li button, .policy-notice article section > ol > li a, .policy-notice article section > ul > li button, .policy-notice article section > ul > li a {
    font-size: 1.5rem;
  }
  .policy-notice.privacy article section.pp-info ul {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 0.563rem;
    -moz-column-gap: 0.563rem;
    column-gap: 0.563rem;
  }
  .policy-notice.privacy article section.pp-info ul li:hover > button {
    color: #292929;
    font-weight: 400;
  }
  .policy-notice.privacy article section.pp-info ul li:hover > button::before {
    padding-bottom: 100%;
    border: 1px solid #dae1e6;
  }
  .policy-notice.privacy article section.pp-info ul li > button::before {
    background-size: 60% auto;
  }
  .policy-notice.privacy article section.pp-info ul li > button.on {
    color: #ffc600;
    font-weight: 700;
  }
  .policy-notice.privacy article section.pp-info ul li > button.on::before {
    padding-bottom: calc(100% - 2px);
    border: 2px solid #ffc600;
  }
  .policy-notice.privacy article section.pp-info ul li > button.on + div {
    display: block;
  }
  .policy-notice.privacy article section.pp-info ul li div {
    width: 80vw;
  }
  .policy-notice.privacy article section.pp-info ul li div .close-btn {
    display: block;
  }
  .policy-notice.privacy article section.pp-info ul li:nth-child(3n+1) div {
    left: 0.15rem;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .policy-notice.privacy article section.pp-info ul li:nth-child(3n) div {
    left: auto;
    right: 0.15rem;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .policy-notice.privacy article section.pp-info ul li:hover div {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */