@charset "UTF-8";
@font-face {
  font-family: "NotoSansKR";
  font-style: light;
  font-weight: 300;
  src: url("../fonts/NotoSansKR-Light.woff") format("woff"), url("../fonts/NotoSansKR-Light.otf") format("openType");
}
@font-face {
  font-family: "NotoSansKR";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansKR-Regular.woff") format("woff"), url("../fonts/NotoSansKR-Regular.otf") format("openType");
}
@font-face {
  font-family: "NotoSansKR";
  font-style: medium;
  font-weight: 500;
  src: url("../fonts/NotoSansKR-Medium.woff") format("woff"), url("../fonts/NotoSansKR-Medium.otf") format("openType");
}
@font-face {
  font-family: "NotoSansKR";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/NotoSansKR-Bold.woff") format("woff"), url("../fonts/NotoSansKR-Bold.otf") format("openType");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  src: url("../fonts/Pretendard-Thin.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  src: url("../fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  src: url("../fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  src: url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  src: url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  src: url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  src: url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  src: url("../fonts/Pretendard-Black.woff") format("woff");
}
/* reset */
/* 최대 화면 크기 설정 */
/* 전역 스위치: 딱 1번만 선언 */
/* 
모바일에서만 vw를 사용할 경우 vw함수만 사용해도 무방
pc와 모바일 둘다 vw를 사용할경우 pc에서는 vw함수를
모바일에서는 vw-mo함수를 사용
*/
/* rem 설정을 위한 폰트 */
html {
  font-size: 20px;
}
@media (max-width: 720px) {
  html {
    font-size: calc(100vw / 360 * 20);
  }
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select,
pre {
  -webkit-text-size-adjust: none;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-size: 20px;
  letter-spacing: -0.01em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-webkit-text-size-adjust: none(글자크기 자동조정 방지) , auto (화면의 폭에 맞추어서 텍스트의 크기를 자동으로 조절 , 100%(폰트크기를 지정된사이즈로 변경);*/
html,
body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
table,
tr,
td,
dl,
dt,
dd,
a,
img,
input,
button,
select,
textarea {
  margin: 0px;
  padding: 0px;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input {
  -webkit-border-radius: 0;
}

header,
hgroup,
article,
nav,
footer,
figure,
figcaption,
canvas,
section,
main,
menu {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

img,
fieldset,
iframe {
  border: 0 none;
}

fieldset {
  width: auto;
  min-width: 0;
  max-width: none;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
legend.focusable:active, legend.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}

img {
  max-width: 100%;
  border: 0px;
  vertical-align: top;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  display: none;
}

button {
  cursor: pointer;
  border: 0;
  background-color: transparent;
}

u {
  text-decoration: underline;
}

/* reset */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #ddd;
  text-align: center;
  cursor: pointer;
}
.btn.disabled {
  cursor: auto !important;
  background: #f5f6f8 !important;
  color: #888888 !important;
  border-color: #f5f6f8 !important;
}
.btn.small {
  height: 1.75rem;
  padding: 0 0.5rem;
  font-size: 0.65rem;
}
.btn.medium {
  height: 2.8rem;
  padding: 0 0.65rem;
  font-size: 0.75rem;
}
.btn.large {
  height: 3.4rem;
  padding: 0 0.8rem;
  font-weight: 400;
  font-size: 1rem;
}
.btn.xlarge {
  height: 4.4rem;
  padding: 0 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.btn.w100p {
  width: 100%;
}
.btn.height-52 {
  height: 2.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}
.btn.height-60 {
  height: 3rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}
.btn.primary {
  background-color: #2546cd;
  border-color: #2546cd;
  color: #fff;
}
.btn.slightly {
  background-color: #666;
  border-color: #666;
  color: #fff;
}
.btn.lightSlightly {
  background-color: #989898;
  border-color: #989898;
  color: #fff;
}
.btn.dark {
  background-color: #222;
  border-color: #222;
  color: #fff;
}
.btn.black {
  background-color: #030303;
  border-color: #030303;
  color: #fff;
}
.btn.danger {
  background-color: #e0012b;
  border-color: #e0012b;
  color: #fff;
}
.btn.warning {
  background-color: #ff9582;
  border-color: #ff9582;
  color: #fff;
}
.btn.white {
  background-color: #fff;
  border-color: #fff;
  color: #030303;
}
.btn.red-primary {
  background-color: #ba0018;
  border-color: #ba0018;
  color: #fff;
}
.btn.round {
  border-radius: 3rem;
}
.btn.round.small {
  border-radius: 50px;
}
.btn.round.medium {
  border-radius: 40px;
}
.btn.round.large {
  border-radius: 30px;
}
.btn.round.xlarge {
  border-radius: 30px;
}
.btn.round.none {
  border-radius: 0;
}
.btn.border {
  border: 1px solid #222;
}
.btn.border.primary {
  color: #2546cd;
  border-color: #2546cd;
  background-color: transparent;
}
.btn.border.slightly {
  border-color: #888;
  color: #888;
  background-color: transparent;
}
.btn.border.lightSlightly {
  border-color: #a1a1a1;
  color: #a1a1a1;
  background-color: transparent;
}
.btn.border.dark {
  border-color: #222;
  color: #222;
  background-color: transparent;
}
.btn.border.warning {
  border-color: #ff9582;
  color: #ff9582;
  background-color: transparent;
}
.btn.border.danger {
  border-color: #e0012b;
  color: #e0012b;
  background-color: transparent;
}
.btn.border.white {
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
.btn.type-icon {
  gap: 0.4rem;
}
.btn.type-icon .icon {
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.btn.btn-text--icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  border: none;
}
.btn.btn-text--icon .icon {
  width: 1rem;
  height: 1rem;
}
.btn.btn-text--icon .text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  color: #888;
}

.data-table table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #ddd;
}
.data-table tr:last-child td {
  border-bottom: none;
}
.data-table th,
.data-table td {
  text-align: left;
}
.data-table th.left,
.data-table td.left {
  text-align: left;
}
.data-table th.center,
.data-table td.center {
  text-align: center;
}
.data-table th {
  padding: 0.175rem 0.1rem;
  font-size: 0.6rem;
  font-weight: 700;
  background: #e0e5e6;
  border-right: 1px solid #fff;
  word-break: keep-all;
}
.data-table th:last-child {
  border-right: none;
}
.data-table td {
  background: #f5f6f8;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 0.4rem 0.1rem;
  word-break: keep-all;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.data-table td:last-child {
  border-right: none;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  overflow: hidden;
  margin-top: 1.2rem;
}
.pagination button {
  display: block;
}
.pagination .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .paging.current .page-link {
  font-weight: 700;
  color: #ffec5e;
}
.pagination .page-link {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.6rem;
  font-weight: 700;
  color: #c7cbd3;
  letter-spacing: -0.02em;
  text-align: center;
}
.pagination .controller {
  width: 1.6rem;
  height: 1.6rem;
}
.pagination .controller .page-link {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.pagination .controller.prev .page-link {
  background-image: url("../images/components/icon-pagination-prev.png");
}
.pagination .controller.next .page-link {
  background-image: url("../images/components/icon-pagination-next.png");
}
.pagination .controller.first .page-link {
  background-image: url("../images/components/icon-pagination-first.png");
}
.pagination .controller.last .page-link {
  background-image: url("../images/components/icon-pagination-last.png");
}
.pagination .controller.disabled {
  opacity: 0.4;
}
.pagination .controller.disabled .page-link {
  pointer-events: none;
}

.input-cover {
  position: relative;
}
.input-cover.float {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.input-cover.float.active .form-label {
  padding: 0 0.2rem;
  left: 0.8rem;
  -webkit-transform: translate3d(0, -26px, 0) scale(0.75);
          transform: translate3d(0, -26px, 0) scale(0.75);
  color: #000;
  background-color: #fff;
}
.input-cover.float.active .required {
  color: #000;
}
.input-cover.float.active .form-input[type=date] {
  color: #000;
}
.input-cover.float.active .form-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float.active .form-input::placeholder {
  color: #999;
  opacity: 1;
}
.input-cover.float .form-label {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  z-index: 2;
  width: auto;
  margin-bottom: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background-color: #fff;
}
.input-cover.float .etc-right {
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.input-cover.focus, .input-cover.open-datepicker {
  border-color: #2c599d;
}
.input-cover.right-space.small .form-input {
  padding-right: 2.8rem;
}
.input-cover.right-space .form-input {
  padding-right: 4.6rem;
}
.input-cover.error .icon-error {
  display: block;
}
.input-cover.error .form-input {
  padding-right: 2.5rem;
  border-color: #e0012b;
}
.input-cover .cover-inner {
  position: relative;
}
.input-cover .form-input {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 2.4rem;
  line-height: 2.3rem;
  padding: 0 0.8rem;
  border: 1px solid #eaedef;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 400;
  background-color: #fff;
}
.input-cover .form-input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input::placeholder {
  color: #999;
  opacity: 1;
}
.input-cover .form-input:-moz-read-only, .input-cover .form-input:disabled {
  color: #999 !important;
  background-color: #fafafa;
}
.input-cover .form-input:read-only, .input-cover .form-input:disabled {
  color: #999 !important;
  background-color: #fafafa;
}
.input-cover .form-input:-moz-read-only.datepicker-input, .input-cover .form-input:disabled.datepicker-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-input:read-only.datepicker-input, .input-cover .form-input:disabled.datepicker-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-input:-moz-read-only.result-file-input, .input-cover .form-input:disabled.result-file-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-input:read-only.result-file-input, .input-cover .form-input:disabled.result-file-input {
  color: #000 !important;
  background-color: transparent;
}
.input-cover .form-label {
  display: block;
  font-weight: 700;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}
.input-cover .required {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.8rem;
  color: #999;
}
.input-cover .etc-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  position: absolute;
  z-index: 2;
  bottom: 0.75rem;
  right: 1rem;
}
.input-cover .mode-text {
  font-size: 0.8rem;
}
.input-cover .btn-type-change {
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("../images/icon/icon-eye-off.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  text-indent: -9999px;
  color: transparent;
}
.input-cover .btn-type-change.type-text {
  background-image: url("../images/icon/icon-eye-on.png");
}
.input-cover .file-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  position: relative;
}
.input-cover .file-wrapper .file-input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  top: 0;
  right: 0;
  z-index: 1;
}
.input-cover .file-wrapper .file-input.focusable:active, .input-cover .file-wrapper .file-input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.input-cover .file-wrapper .file-input:focus-visible + .btn {
  outline: 2px solid #000;
}
.input-cover .file-wrapper .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 6rem;
  font-size: 0.8rem;
}
.input-cover.disable-active.float .form-label {
  padding: 0 0.2rem;
  left: 0.8rem;
  -webkit-transform: translate3d(0, -26px, 0) scale(0.75);
          transform: translate3d(0, -26px, 0) scale(0.75);
  color: #999;
}
.input-cover.disable-active .required {
  color: #999;
}

.form-btn-with-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.4rem;
}
.form-btn-with-container .input-cover,
.form-btn-with-container .selectric-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.form-btn-with-container .btn {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form-btn-with-container .btn.btn-address--search {
  max-width: 4rem;
  height: 2.4rem;
  border-radius: 0.4rem;
  background: rgba(186, 0, 24, 0.1019607843);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ba0018;
  border-color: transparent;
}

.selector-wrapper {
  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-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem;
}
.selector-wrapper.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.selector-cover {
  line-height: 1;
  font-size: 0;
}
.selector-cover input {
  position: absolute;
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.selector-cover input.focusable:active, .selector-cover input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.selector-cover input:focus-visible + .selector-text {
  outline: auto;
  outline-color: -webkit-focus-ring-color;
}
.selector-cover .label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
}
.selector-cover .selector-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  word-break: keep-all;
  font-weight: 700;
  color: #878f91;
}
.selector-cover .selector {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #e0e0e3;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.selector-cover .selector:after {
  display: block;
  content: "";
  position: absolute;
}
.selector-cover.checkbox .selector {
  border-radius: 0.2rem;
}
.selector-cover.checkbox .selector:after {
  display: none;
  left: calc(50% - 0.25rem);
  top: 50%;
  width: 0.25rem;
  height: 0.5rem;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
}
.selector-cover.checkbox.round .selector-text {
  padding-left: 1.4rem;
  min-height: 1rem;
}
.selector-cover.checkbox.round .selector {
  width: 1rem;
  height: 1rem;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url("../images/components/icon-checkbox-round-off.png");
}
.selector-cover.checkbox.round input:checked + .selector-text {
  color: #000000;
}
.selector-cover.checkbox.round input:checked + .selector-text .selector {
  background-image: url("../images/components/icon-checkbox-round-on.png");
}
.selector-cover.checkbox.round input:checked + .selector-text .selector:after {
  display: none;
}
.selector-cover.checkbox.square .selector-text {
  padding-left: 1.6rem;
  min-height: 1.2rem;
}
.selector-cover.checkbox.square .selector {
  width: 1.2rem;
  height: 1.2rem;
  border: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-image: url("../images/components/icon-checkbox-square-off.png");
}
.selector-cover.checkbox.square input:checked + .selector-text .selector {
  background-image: url("../images/components/icon-checkbox-square-on.png");
}
.selector-cover.checkbox.square input:checked + .selector-text .selector:after {
  display: none;
}
.selector-cover.checkbox.solo .selector-text {
  padding-left: 1rem;
}
.selector-cover.radio input:checked + .selector-text .selector {
  background-color: #fff;
  border-color: #000;
}
.selector-cover.radio input:checked + .selector-text .selector:after {
  background-color: #000;
}
.selector-cover.radio .selector-text {
  padding-left: 1.4rem;
  min-height: 1rem;
}
.selector-cover.radio .selector {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
}
.selector-cover.radio .selector:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #fff;
}
.selector-cover.radio.solo .selector-text {
  padding-left: 1.6rem;
}

.form-guide-text {
  display: block;
  font-weight: 300;
  margin-top: 0.6rem;
  font-size: 0.75rem;
}
.form-guide-text + .form-guide-text {
  margin-top: 0.2rem;
}

.form-textarea {
  display: block;
  height: 6rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  font-size: 0.8rem;
  resize: none;
  overflow: auto;
}
.form-textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea::placeholder {
  color: #999;
  opacity: 1;
}
.form-textarea.error {
  border-color: #2546cd;
}
.form-textarea.sm {
  height: 4rem;
  font-size: 0.7rem;
}
.form-textarea.md {
  height: 6rem;
}
.form-textarea.lg {
  height: 10rem;
}
.form-textarea.xl {
  height: 15rem;
}
.form-textarea.full {
  width: 100% !important;
}
.form-textarea:-moz-read-only, .form-textarea:disabled {
  background-color: #f1f1f1;
}
.form-textarea:read-only, .form-textarea:disabled {
  background-color: #f1f1f1;
}

.length-check-cover .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: #999;
}

.selectric-container {
  position: relative;
}
.selectric-container.active.init-before .selectric .label {
  color: #999;
}
.selectric-container.active.open .select-label {
  z-index: 5;
  color: #2c599d;
}
.selectric-container.active.open .select-label .required {
  color: #2c599d;
}
.selectric-container.active .select-label {
  z-index: 3;
  left: 0.8rem;
  -webkit-transform: translate3d(0, -8px, 0) scale(0.75);
          transform: translate3d(0, -8px, 0) scale(0.75);
  padding: 0 0.2rem;
  background-color: #fff;
}
.selectric-container.active .selectric .label {
  color: #000;
}
.selectric-container.disabled .select-label {
  color: #999;
  background-color: transparent;
}
.selectric-container.disabled .select-label .required {
  color: #999;
}
.selectric-container.error .selectric {
  border-color: #e0012b;
}
.selectric-container .selectric-wrapper {
  position: relative;
  z-index: 2;
}
.selectric-container .selectric {
  border: 1px solid #e0e0e3;
  padding-left: 1rem;
  padding-right: 2.6rem;
  border-radius: 0.2rem;
  background-color: #fff;
}
.selectric-container .selectric .button {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  text-indent: -9999px;
  background-color: transparent;
}
.selectric-container .selectric .button:after {
  width: 1rem;
  height: 1rem;
  border: 0;
  background: url("../images/components/icon-selectbox-arrow.png") no-repeat 0 0;
  background-size: cover;
}
.selectric-container .selectric .label {
  margin: 0;
  color: #999;
}
.selectric-container .selectric .icon-error {
  display: none;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/icon/icon-alert-triangle-red-24x24.png") no-repeat 0 0;
  background-size: cover;
}
.selectric-container .selectric-above .selectric-items {
  margin-bottom: 0.35rem;
}
.selectric-container .required {
  display: inline-block;
  font-size: 0.8rem;
  vertical-align: middle;
  color: #999;
}
.selectric-container .selectric-open {
  z-index: 4;
}
.selectric-container .selectric-open .selectric {
  border-color: #2c599d;
}
.selectric-container .selectric-open .selectric .label,
.selectric-container .selectric-open .selectric .required {
  color: #2c599d;
}
.selectric-container .selectric-open .button {
  overflow: hidden;
}
.selectric-container .selectric-open .button:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.selectric-container .selectric-disabled {
  opacity: 1;
}
.selectric-container .selectric-disabled .selectric {
  background-color: #fafafa;
}
.selectric-container .selectric-disabled .selectric .label {
  color: #999;
}
.selectric-container .selectric-first-show .selectric-scroll li:first-child {
  display: block;
}
.selectric-container .selectric-scroll li:first-child {
  display: none;
}
.selectric-container .select-label {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  font-size: 0.8rem;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.selectric-container .select-label .required {
  color: #000;
}
.selectric-container .selectric-items {
  max-height: 11.25rem;
  overflow: auto;
  border-radius: 5px;
  border: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1607843137);
}
.selectric-container .selectric-items li.selected {
  background-color: #2c599d !important;
  color: #fff !important;
}
.selectric-container .selectric-items li:hover {
  background-color: #fafafa;
}
.selectric-container .selectric-small .label {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.7rem;
}
.selectric-container .selectric-small .selectric-items li {
  padding: 0.6rem;
  font-weight: 300;
  font-size: 0.7rem;
}
.selectric-container .selectric-medium .label {
  height: 2.7rem;
  line-height: 2.7rem;
  font-size: 0.8rem;
}
.selectric-container .selectric-medium .selectric-items li {
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}
.selectric-container .selectric-large .label {
  height: 2.6rem;
  line-height: 2.6rem;
  font-size: 0.9rem;
}
.selectric-container .selectric-large .selectric-items li {
  padding: 0.8rem 0.9rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.select-box-container .form-label {
  display: block;
  padding-bottom: 0.15rem;
  font-size: 0.8rem;
}
.select-box-container .form-label .required {
  display: inline-block;
  margin-left: 0.15rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: #2546cd;
  vertical-align: middle;
}
.select-box-container .form-select {
  width: 100%;
  padding-right: 1rem;
  border: 0;
  border-bottom: 1px solid #dbdee5;
  color: #000;
  background: url("../images/components/icon-selectbox-arrow.svg") no-repeat 0 0;
  background-position: center right;
  background-size: 0.5rem 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.select-box-container.small .form-select {
  height: 1.6rem;
  line-height: 1.6rem;
  font-size: 0.65rem;
}
.select-box-container.small .form-select option {
  font-size: 0.65rem;
}
.select-box-container.medium .form-select {
  height: 2.1rem;
  line-height: 2.1rem;
  font-size: 0.8rem;
}
.select-box-container.medium .form-select option {
  font-size: 0.8rem;
}
.select-box-container.large .form-select {
  height: 2.6rem;
  line-height: 2.6rem;
  font-size: 0.9rem;
}
.select-box-container.large .form-select option {
  font-size: 0.9rem;
}
.select-box-container.active.float .form-label {
  -webkit-transform: translate3d(0, -20px, 0) scale(0.8);
          transform: translate3d(0, -20px, 0) scale(0.8);
}
.select-box-container.float {
  position: relative;
}
.select-box-container.float .form-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  font-size: 0.9rem;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.select-box-container.float .form-select {
  position: relative;
  z-index: 2;
  background-color: #fff;
}
.select-box-container.float .form-select option:first-child {
  display: none;
}

.font.warning {
  color: #ff9582;
}
.font.slightly {
  color: #888;
}
.font.primary {
  color: #2546cd;
}
.font.danger {
  color: #e0012b;
}
.font.dark {
  color: #222;
}
.font.lightSlightly {
  color: #a1a1a1;
}
.font.kkRed {
  color: #ba0018;
}

.switch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.switch-container .switch-icon {
  position: relative;
}
.switch-container .switch-input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.switch-container .switch-input.focusable:active, .switch-container .switch-input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.switch-container .switch-input:focus-visible + .switch-label {
  outline: auto;
  outline-color: -webkit-focus-ring-color;
}
.switch-container .switch-input:checked + .switch-label .switch-button {
  background: #2546cd;
}
.switch-container .switch-input:checked + .switch-label .btn-on-off {
  left: 0.85rem;
}
.switch-container .switch-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.switch-container .switch-button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  width: 1.6rem;
  height: 0.9rem;
  position: relative;
  cursor: pointer;
  background: #999;
  border-radius: 50px;
}
.switch-container .btn-on-off {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  left: 0.15rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #fff;
  text-indent: -9999px;
}
.switch-container .switch-text {
  margin-left: 0.4rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.rating-select-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rating-select-container input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.rating-select-container input.focusable:active, .rating-select-container input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.rating-select-container label {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  display: block;
  position: relative;
  width: 2.3rem;
  height: 2.2rem;
  margin-left: 0.4rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/components/icon-star-empty.svg");
  text-indent: -9999px;
  cursor: pointer;
}
.rating-select-container label.checked {
  background-image: url("../images/components/icon-star-full.svg");
}
.rating-select-container label:nth-of-type(1) {
  margin-left: 0;
}

.layer-popup {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
}
.layer-popup.open {
  visibility: visible;
  opacity: 1;
}
.layer-popup.all-show {
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
  position: static;
  border-top: 2px solid #000;
}
.layer-popup .popup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  max-height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.layer-popup .popup-container.medium {
  max-width: 32rem;
}
.layer-popup .popup-container.small {
  max-width: 23rem;
}
.layer-popup .popup-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-header .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1.15rem 1.15rem;
  background-image: url("../images/icon/icon-close-bk-23x23.png");
}
.layer-popup .popup-title {
  padding: 1rem;
  text-align: center;
}
.layer-popup .popup-title strong {
  font-size: 1rem;
}
.layer-popup .popup-content {
  height: 100%;
  overflow: auto;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-inner {
  padding: 2rem;
  position: relative;
}
.layer-popup .popup-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}
.layer-popup .popup-footer .btn-area .btn {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.layer-popup .popup-footer .btn-area .btn-close {
  background-color: #666;
}
.layer-popup .popup-footer .btn-area .btn-ok {
  background-color: #2546cd;
}
.layer-popup .popup-footer .btn-area.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-popup .popup-footer .btn-area.half .btn {
  width: 50%;
}
.layer-popup.full-scroll {
  display: block;
  overflow: auto;
  text-align: center;
  font-size: 0;
}
.layer-popup.full-scroll:before {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}
.layer-popup.full-scroll .popup-container {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 auto;
  max-height: none;
  border-radius: 1rem;
  font-size: initial;
}
.layer-popup.full-scroll .popup-content {
  height: auto;
  position: relative;
  overflow: visible;
  text-align: left;
}
.layer-popup.alert-popup .popup-container.small {
  max-width: 13.2rem !important;
  border-radius: 1.2rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.layer-popup.alert-popup#eventEndPopup .popup-container.small {
  max-width: 14rem !important;
}
.layer-popup.alert-popup .selector-cover {
  margin-bottom: 1.2rem;
  text-align: center;
}
.layer-popup.alert-popup .popup-inner {
  padding: 0;
}
.layer-popup.alert-popup .info-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  padding: 1.8rem 0;
  word-break: keep-all;
}
.layer-popup.alert-popup .btn-area {
  width: 100%;
}
.layer-popup.alert-popup .btn-area .btn {
  width: 100%;
  padding: 0.85rem 0;
  background: #ba0018;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border: none;
}

.layer-popup-dim {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 18rem;
  height: 34.5rem;
  margin-left: -8.3rem;
}
.layer-popup-dim.show {
  -webkit-animation: dimShow 0.3s forwards;
          animation: dimShow 0.3s forwards;
}

@-webkit-keyframes dimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes dimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.layer-bottom-sheet {
  top: 50% !important;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-touch-action: none;
      touch-action: none;
  max-width: 18rem;
  max-height: 34.5rem;
  margin-left: -8.3rem;
}
.layer-bottom-sheet .popup-container {
  border-radius: 0;
}
.layer-bottom-sheet.open .popup-inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.layer-bottom-sheet.closed .popup-inner {
  -webkit-animation: downSheet 0.6s ease-in-out both;
          animation: downSheet 0.6s ease-in-out both;
}
.layer-bottom-sheet .popup-content {
  background-color: transparent;
  -ms-overflow-style: none; /* 인터넷 익스플로러 */
  scrollbar-width: none; /* 파이어폭스 */
}
.layer-bottom-sheet .popup-content::-webkit-scrollbar {
  display: none;
}
.layer-bottom-sheet .popup-inner {
  padding: 1.8rem 0.8rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: #ffffff;
  border-radius: 0.8rem 0.8rem 0 0;
}
.layer-bottom-sheet .btn-close {
  position: absolute;
  top: 0.75rem;
  right: 0.8rem;
  z-index: 2;
  width: 1.2rem;
  height: 1.2rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url("../images/icon/icon-close-bk-23x23.png");
}
.layer-bottom-sheet .sns-login--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.8rem;
}
.layer-bottom-sheet .sns-login--box .sns-login--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}
.layer-bottom-sheet .sns-login--box .sns-login--item .icon {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.layer-bottom-sheet .sns-login--box .sns-login--item .text {
  font-size: 0.8rem;
  font-weight: 700;
}
.layer-bottom-sheet .btn-wrap {
  padding-top: 1.2rem;
}
.layer-bottom-sheet .btn-wrap.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.layer-bottom-sheet .btn-wrap.half .btn {
  width: 50%;
}
.layer-bottom-sheet .btn-wrap .btn {
  display: inline-block;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 0.8rem;
  height: 2.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
  border-radius: 0.4rem;
}
.layer-bottom-sheet .btn-wrap .btn-close {
  border: 1px solid #666;
}
.layer-bottom-sheet .btn-wrap .btn-ok {
  background-color: #b62929;
}
@-webkit-keyframes downSheet {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes downSheet {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@-webkit-keyframes righttoleftSheet {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes righttoleftSheet {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.layer-right-to-sheet {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-touch-action: none;
      touch-action: none;
  position: fixed;
  top: 50% !important;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 18rem;
  max-height: 34.5rem;
  margin-left: -8.3rem;
}
.layer-right-to-sheet .popup-container {
  border-radius: 0;
  height: 100%;
}
.layer-right-to-sheet.open .popup-inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.layer-right-to-sheet.closed .popup-inner {
  -webkit-animation: righttoleftSheet 0.6s ease-in-out both;
          animation: righttoleftSheet 0.6s ease-in-out both;
}
.layer-right-to-sheet .btn-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 1.2rem;
  height: 1.2rem;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-image: url("../images/icon/icon-close-bk-23x23.png");
}
.layer-right-to-sheet .popup-kitkat-deco--title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ba0018;
  margin-bottom: 1.2rem;
}
.layer-right-to-sheet .common-layer-left--title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.layer-right-to-sheet .common-layer-left--title.text-align--center {
  text-align: center;
}
.layer-right-to-sheet .popup-content {
  background-color: transparent;
  -ms-overflow-style: none; /* 인터넷 익스플로러 */
  scrollbar-width: none; /* 파이어폭스 */
}
.layer-right-to-sheet .popup-content::-webkit-scrollbar {
  display: none;
}
.layer-right-to-sheet .popup-inner {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 2.6rem 0.8rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: #ffffff;
}
.layer-right-to-sheet .layer-right-to-sheet-close--btn {
  position: absolute;
  top: 0.5rem;
  left: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.layer-right-to-sheet .scroll-content--box {
  height: 100%;
  max-height: calc(100vh - 5.2rem);
  overflow-y: auto;
}
.layer-right-to-sheet .scroll-content--box::-webkit-scrollbar {
  display: none;
}
.layer-right-to-sheet .scroll-content--box + .common-button--wrap {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .scroll-content--box.type-second--btn {
  max-height: calc(100% - 5.2rem);
}
.layer-right-to-sheet .scroll-content--box.type-second--btn + .common-button--wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.2rem;
  margin-top: 1.2rem;
}
.layer-right-to-sheet .scroll-content--box.type-third--btn {
  max-height: calc(100% - 5.2rem);
}
.layer-right-to-sheet .scroll-content--box.type-third--btn + .common-button--wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.4rem;
  margin-top: 1.2rem;
}
.layer-right-to-sheet .scroll-content--box.type-third--btn + .common-button--wrap .btn:last-child {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .scroll-content--box.type-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.layer-right-to-sheet .scroll-content--box.type-center .step-write--wrap {
  width: 100%;
  margin: auto 0;
}
.layer-right-to-sheet .scroll-content--box.type-center .step-write--wrap.pt-24 {
  padding-top: 1.2rem;
}
.layer-right-to-sheet .scroll-content--box.type-center.clicked {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.layer-right-to-sheet .step-write--wrap .step-write--item + .step-write--item {
  margin-top: 2.4rem;
}
.layer-right-to-sheet .step-write--wrap .all-check--wrap {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #eaedef;
}
.layer-right-to-sheet .step-write--wrap .sub-check--wrap {
  padding: 1.2rem 0;
  border-bottom: 1px solid #eaedef;
}
.layer-right-to-sheet .step-write--wrap .sub-check--wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.layer-right-to-sheet .step-write--wrap .alert-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  margin-bottom: 1.2rem;
}
.layer-right-to-sheet .step-write--wrap .alert-icon.scanning {
  width: 6rem;
  height: 6rem;
  margin-bottom: 0;
}
.layer-right-to-sheet .step-write--wrap .alert-title {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  color: #000;
  margin-bottom: 0.4rem;
}
.layer-right-to-sheet .step-write--wrap .alert-desc {
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  color: #878f91;
}
.layer-right-to-sheet .step-write--wrap .alert-desc.type-flex {
  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;
  gap: 0.4rem;
}
.layer-right-to-sheet .step-write--wrap .alert-desc.type-flex .icon {
  width: 1.2rem;
  height: 1.2rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-select--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-select--wrap .receipt-select--item {
  display: block;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.layer-right-to-sheet .step-write--wrap .receipt-select--wrap .receipt-select--item .form-check {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.layer-right-to-sheet .step-write--wrap .receipt-select--wrap .receipt-select--item .form-check.focusable:active, .layer-right-to-sheet .step-write--wrap .receipt-select--wrap .receipt-select--item .form-check.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.layer-right-to-sheet .step-write--wrap .receipt-select--wrap .receipt-select--item .form-check:checked + .text {
  border-color: #ba0018;
  color: #ba0018;
  background: rgba(186, 0, 24, 0.0784313725);
}
.layer-right-to-sheet .step-write--wrap .receipt-select--wrap .receipt-select--item .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
  text-align: center;
  border: 1px solid #eaedef;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 0.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.8rem;
  word-break: keep-all;
  background-color: #fff;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .recept-save-status--item {
  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-radius: 0.4rem;
  border: 1px solid #e8e9eb;
  padding: 0.875rem 0.8rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .recept-save-status--item + .recept-save-status--item {
  margin-top: 0.4rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .status-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.3rem;
     -moz-column-gap: 0.3rem;
          column-gap: 0.3rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .status-left .icon {
  width: 0.9rem;
  height: 0.9rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .status-left .text {
  font-size: 0.7rem;
  font-weight: 400;
  color: #606567;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .status-right {
  font-size: 0.9rem;
  font-weight: 700;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .save-caution--wrap {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .save-caution--wrap p {
  font-size: 0.65rem;
  font-weight: 400;
  text-align: center;
  color: #878f91;
}
.layer-right-to-sheet .step-write--wrap .receipt-save-status--box .save-caution--wrap p + p {
  margin-top: 0.4rem;
}
.layer-right-to-sheet .step-write--wrap .file-wrapper .form-input {
  color: #878f91 !important;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.layer-right-to-sheet .step-write--wrap .file-wrapper .file-label {
  background: rgba(186, 0, 24, 0.1019607843);
  border-radius: 0.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ba0018;
  padding: 0.65rem 0;
  min-width: 4rem;
  cursor: pointer;
}
.layer-right-to-sheet .gift-winning-img--wrap {
  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;
  position: relative;
  width: 9rem;
  height: 9rem;
  border-radius: 50rem;
  margin: 0 auto;
  margin-bottom: 1.2rem;
  overflow: hidden;
  background: linear-gradient(138.82deg, #f5f6f8 75.21%, #eaecf1 100%);
}
.layer-right-to-sheet .gift-winning-img--wrap .img-object {
  position: absolute;
  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;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
}
.layer-right-to-sheet .gift-winning-desc {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
.layer-right-to-sheet .gift-winning-desc .gift-name {
  color: #ba0018;
  letter-spacing: -0.03em;
}
.layer-right-to-sheet .gift-winning-desc + .step-info-box--wrap {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .step-info-box--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.8rem;
  margin-top: 2rem;
}
.layer-right-to-sheet .step-info-box--wrap .step-info--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  background: #f3f4f7;
  border-radius: 0.2rem;
  padding: 0.6rem 0.8rem;
}
.layer-right-to-sheet .step-info-box--wrap .step-cate {
  min-width: 5rem;
  font-size: 0.7rem;
  font-weight: 400;
  color: #888888;
}
.layer-right-to-sheet .step-info-box--wrap .value {
  font-size: 0.7rem;
  font-weight: 400;
  color: #000;
  word-break: keep-all;
}
.layer-right-to-sheet .my-delivery-info-box--wrap {
  margin-top: 0.8rem;
  padding: 0 0.8rem;
}
.layer-right-to-sheet .my-delivery-info-box--wrap .my-delivery-info--box {
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 0.2rem;
}
.layer-right-to-sheet .my-delivery-info-box--wrap .my-delivery-info-box-heading--wrap {
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #f2f2f2;
}
.layer-right-to-sheet .my-delivery-info-box--wrap .my-delivery-info-box-content--wrap {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.4rem;
  padding-top: 0.4rem;
}
.layer-right-to-sheet .my-delivery-info-box--wrap .my-delivery-info-box-content--wrap .name-phone {
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
}
.layer-right-to-sheet .my-delivery-info-box--wrap .my-delivery-info-box-content--wrap .address {
  font-size: 0.7rem;
  font-weight: 400;
  color: #000;
  word-break: break-all;
}
.layer-right-to-sheet .receipt-guide {
  margin-top: 2.4rem;
}
.layer-right-to-sheet .receipt-guide.mt24 {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .receipt-guide .accordion-header {
  background: #f5f6f8;
  border-radius: 0.4rem;
  padding: 0.9rem 0.8rem;
}
.layer-right-to-sheet .receipt-guide .accordion-header.radius-none {
  border-radius: 0;
}
.layer-right-to-sheet .receipt-guide .accordion-header.radius-none + .accordion-body {
  border-radius: 0;
}
.layer-right-to-sheet .receipt-guide .accordion-header::after {
  width: 1.2rem;
  height: 1.2rem;
  right: 0.8rem;
  background-image: url("../images/icon/icon-arrow-down-bk-24x24.png");
}
.layer-right-to-sheet .receipt-guide .accordion-header--con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
}
.layer-right-to-sheet .receipt-guide .accordion-header--con .icon {
  width: 1.2rem;
  height: 1.2rem;
}
.layer-right-to-sheet .receipt-guide .accordion-header--con .text {
  font-size: 0.7rem;
  font-weight: 700;
}
.layer-right-to-sheet .receipt-guide .accordion-body {
  position: relative;
  border-radius: 0.4rem;
  background: #f5f6f8;
  padding: 0.9rem 0.8rem;
}
.layer-right-to-sheet .receipt-guide .accordion-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 1.6rem);
  height: 0.05rem;
  background: #ddd;
}
.layer-right-to-sheet .receipt-guide .accordion-body .receipt-img--wrap {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 0.4rem;
}
.layer-right-to-sheet .receipt-guide .accordion-body .caution-item--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.layer-right-to-sheet .receipt-guide .accordion-body .caution-item--list + .caution-item--list {
  margin-top: 0.2rem;
}
.layer-right-to-sheet .receipt-guide .accordion-body .caution-item--list .radius {
  position: relative;
  top: -0.1rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.2rem;
  background: #606567;
  border-radius: 100%;
}
.layer-right-to-sheet .receipt-guide .accordion-body .caution-item--list .text {
  font-size: 0.6rem;
  font-weight: 400;
  color: #606567;
  word-break: keep-all;
}
.layer-right-to-sheet .scroll-box {
  background: #f5f6f8;
  border-radius: 0.4rem;
  padding: 0.8rem;
  margin-top: 0.6rem;
}
.layer-right-to-sheet .scroll-box .scroll-box--text {
  height: 5.2rem;
  overflow-y: auto;
}
.layer-right-to-sheet .scroll-box .scroll-box--text::-webkit-scrollbar {
  display: none;
}
.layer-right-to-sheet .scroll-box .scroll-box--title {
  display: block;
  font-weight: 700;
  font-size: 0.6rem;
  color: #878f91;
  margin-bottom: 0.4rem;
}
.layer-right-to-sheet .scroll-box .scroll-box--desc {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: #878f91;
}
.layer-right-to-sheet .scroll-box .data-table {
  margin: 0.4rem 0;
}
.layer-right-to-sheet .scroll-box .data-table th {
  padding: 0.175rem 0.1rem;
  font-size: 0.6rem;
  font-weight: 700;
  background: #e0e5e6;
  border-right: 1px solid #fff;
  word-break: keep-all;
}
.layer-right-to-sheet .scroll-box .data-table th:last-child {
  border-right: none;
}
.layer-right-to-sheet .scroll-box .data-table td {
  background: #ffffff;
  border-right: 1px solid #f5f6f8;
  border-bottom: 1px solid #f5f6f8;
  padding: 0.4rem 0.1rem;
  word-break: keep-all;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.layer-right-to-sheet .scroll-box .margin-box {
  margin-bottom: 0.8rem;
}
.layer-right-to-sheet .form-asset--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.2rem;
}
.layer-right-to-sheet .form-asset--wrap .form-asset.address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4rem;
}
.layer-right-to-sheet .form-asset--wrap .form-asset .input-cover .form-input:-moz-read-only {
  background-color: #fff !important;
  color: #121314 !important;
}
.layer-right-to-sheet .form-asset--wrap .form-asset .input-cover .form-input:read-only {
  background-color: #fff !important;
  color: #121314 !important;
}
.layer-right-to-sheet .common-flex-text--wrap {
  margin-top: 1.2rem;
}
.layer-right-to-sheet .common-flex-text--wrap + .common-flex-text--wrap {
  margin-top: 0.1rem;
}
.layer-right-to-sheet .common-result--alert {
  position: fixed;
  bottom: 1.8rem;
  padding: 0 1.15rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.layer-right-to-sheet .common-result--alert.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.layer-right-to-sheet .common-result--alert .result-alert--con {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 15.7rem;
  -webkit-column-gap: 0.3rem;
     -moz-column-gap: 0.3rem;
          column-gap: 0.3rem;
  padding: 0.6rem 0.8rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 3rem;
}
.layer-right-to-sheet .common-result--alert .icon {
  width: 1.2rem;
  height: 1.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.layer-right-to-sheet .common-result--alert .text {
  font-weight: 400;
  font-size: 0.7rem;
  color: #fff;
  word-break: keep-all;
  margin-top: 0.1rem;
}
.layer-right-to-sheet.address-write-popup .scroll-content--box {
  padding-top: 1.2rem;
}
.layer-right-to-sheet.address-write-popup .common-layer-left--title {
  margin-bottom: 1.6rem;
}
.layer-right-to-sheet.address-write-popup .common-button--wrap {
  margin-top: 1.2rem;
}
.layer-right-to-sheet.policy-popup .common-button--wrap {
  margin-top: 1.2rem;
}
.layer-right-to-sheet.policy-popup .sub-check--wrap .selector-cover {
  position: relative;
}
.layer-right-to-sheet.policy-popup .sub-check--wrap .info-target--btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.layer-right-to-sheet.policy-popup .sub-check--wrap .common-info-flex--wrap.active .info-target--btn {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.layer-right-to-sheet.check-winning-popup .scratchit {
  position: relative;
  width: 16.4rem;
  height: 12.9rem;
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 0.8rem;
  /* 긁었을 때 보이는 결과 */
}
.layer-right-to-sheet.check-winning-popup .scratchit canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win {
  position: relative;
  width: 16.4rem;
  height: 13rem;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.525rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-draw-winning.png");
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win .result-win--box {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(239.23deg, #e1e1e1 9.76%, #ffffff 32.29%, #e1e1e1 46.39%, #ffffff 68.7%, #e1e1e1 89.73%);
  border: 3px solid #e8e8e8;
  border-radius: 0.8rem;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win .result-win--box .result-win-img--wrap {
  width: 7rem;
  height: 7rem;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win .result-win--box .result-win-text--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win .result-win--box .result-win-text--wrap strong {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: #121314;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win .result-win--box .result-win-text--wrap .gift-winning-desc {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result .result-win .result-win--box .result-win-text--wrap .gift-winning-desc .gift-name {
  color: #ba0018;
}
.layer-right-to-sheet.check-winning-popup .scratchit .scratch-result > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box {
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 16.4rem;
  height: 13rem;
  background: linear-gradient(239.23deg, #e1e1e1 9.76%, #ffffff 32.29%, #e1e1e1 46.39%, #ffffff 68.7%, #e1e1e1 89.73%);
  border: 3px solid #e8e8e8;
  border-radius: 0.8rem;
  margin-top: 2rem;
  -webkit-animation-name: chatPopReverse;
          animation-name: chatPopReverse;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.525rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-draw-winning.png");
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box.not-winning {
  background: none;
  border: none;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box.not-winning::after {
  display: none;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box .scratchit-result-img--wrap {
  width: 7rem;
  height: 7rem;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box .scratchit-result-text--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box .scratchit-result-text--wrap strong {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: #121314;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box .scratchit-result-text--wrap .gift-winning-desc {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
}
.layer-right-to-sheet.check-winning-popup .scratchit-result--box .scratchit-result-text--wrap .gift-winning-desc .gift-name {
  color: #ba0018;
}
.layer-right-to-sheet.receipt-select-popup .scroll-content--box {
  padding-top: 1.2rem;
}
.layer-right-to-sheet.receipt-select-popup .common-button--wrap {
  margin-top: 1.2rem;
}

.center-popup {
  position: fixed;
  top: 50% !important;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 18rem;
  max-height: 34.5rem;
  margin-left: -8.3rem;
}
.center-popup .btn-area.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.center-popup .btn-area.half .btn.btn-close {
  background-color: rgba(186, 0, 24, 0.1019607843);
  color: #ba0018;
}

@media (max-width: 1100px) {
  .section-content-box .layer-bottom-sheet {
    position: fixed;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 18rem;
    max-height: 34.5rem;
    margin-left: 0;
    height: 100%;
  }
  .section-content-box .layer-right-to-sheet {
    margin-left: 0;
  }
  .section-content-box .center-popup {
    margin-left: 0;
  }
  .section-content-box .layer-popup-dim {
    margin-left: 0;
  }
  .section-content-box .layer-bottom-sheet.full-cover {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}
@media (max-width: 720px) {
  .section-content-box .layer-bottom-sheet {
    max-height: 100%;
    height: 100%;
  }
  .section-content-box .layer-right-to-sheet {
    max-height: 100%;
    height: 100%;
  }
  .section-content-box .center-popup {
    max-height: 100%;
    height: 100%;
  }
  .section-content-box .layer-popup-dim {
    max-height: 100%;
    height: 100%;
  }
  .section-content-box .layer-bottom-sheet.full-cover {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}
.winning-popup .scroll-content--box {
  padding-top: 0.8rem;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
}
.winning-popup .step-write--wrap {
  position: relative;
}
.winning-popup .step-write--wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -2rem;
  background-image: url("../images/main/bg-popup-winning.png");
  z-index: -1;
}

.not-winning-popup .step-info-box--wrap {
  padding: 0;
}

.scroll-animate {
  opacity: 0;
}
.scroll-animate.show {
  opacity: 1;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.event-scroll-animate {
  opacity: 0;
}
.event-scroll-animate.show {
  opacity: 1;
}

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.shake-horizontal {
  -webkit-animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
  animation: shake-horizontal 0.6s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.car-stop-up {
  -webkit-animation: carStopUp 0.9s cubic-bezier(0.15, 1.2, 0.3, 1) both, fadeIn 0.8s ease both;
          animation: carStopUp 0.9s cubic-bezier(0.15, 1.2, 0.3, 1) both, fadeIn 0.8s ease both;
}

.fade-in-hit {
  -webkit-animation: fade-in-bottom 0.8s ease forwards, hithere 0.8s ease 0.8s forwards;
          animation: fade-in-bottom 0.8s ease forwards, hithere 0.8s ease 0.8s forwards;
}

@-webkit-keyframes carMove {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-4px);
            transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes carMove {
  0% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-4px);
            transform: translateX(-50%) translateY(-4px);
  }
}
@-webkit-keyframes chatPop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes chatPop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes chatPopReverse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes chatPopReverse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes carMoveNotCenter {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes carMoveNotCenter {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@-webkit-keyframes carStopUp {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes carStopUp {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hithere {
  30% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  40%, 60% {
    -webkit-transform: rotate(-20deg) scale(1.05);
            transform: rotate(-20deg) scale(1.05);
  }
  50% {
    -webkit-transform: rotate(20deg) scale(1.05);
            transform: rotate(20deg) scale(1.05);
  }
  70% {
    -webkit-transform: rotate(0deg) scale(1.05);
            transform: rotate(0deg) scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes hithere {
  30% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  40%, 60% {
    -webkit-transform: rotate(-20deg) scale(1.05);
            transform: rotate(-20deg) scale(1.05);
  }
  50% {
    -webkit-transform: rotate(20deg) scale(1.05);
            transform: rotate(20deg) scale(1.05);
  }
  70% {
    -webkit-transform: rotate(0deg) scale(1.05);
            transform: rotate(0deg) scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes controllerRotate {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes controllerRotate {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@-webkit-keyframes controllerRotateSmall {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0.5deg);
            transform: rotate(0.5deg);
  }
}
@keyframes controllerRotateSmall {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0.5deg);
            transform: rotate(0.5deg);
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1); /*스크롤바의 색상*/
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ddd; /*스크롤바 트랙 색상*/
}

.swiper-container {
  position: relative;
  overflow: hidden;
}
.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  width: 70px;
  height: 70px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.swiper-container .swiper-button-next:after,
.swiper-container .swiper-button-prev:after {
  display: none;
}
.swiper-container .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url("../images/icon/icon-slider-arrow-next-bk-70x70.png");
}
.swiper-container .swiper-button-prev {
  background-image: url("../images/icon/icon-slider-arrow-prev-bk-70x70.png");
}
.swiper-container .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0 !important;
  margin-top: 20px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  display: block;
}

html,
body {
  -webkit-overflow-scrolling: touch;
}
html.scroll-disable,
body.scroll-disable {
  overflow: hidden !important;
}
@media (min-width: 961px) {
  html.scroll-disable.responsive-scroll,
  body.scroll-disable.responsive-scroll {
    overflow: visible !important;
  }
}

.accordion-list {
  overflow: hidden;
}
.accordion-list.active .accordion-header:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion-list .accordion-header {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  text-align: left;
}
.accordion-list .accordion-header:after {
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/icon/icon-arrow-down-bk-18x18.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.accordion-list .accordion-body {
  display: none;
}

.mobile-show {
  display: none;
}

@media (max-width: 720px) {
  .pc-show {
    display: none;
  }
  .mobile-show {
    display: block;
  }
}
.ui-tab-content {
  display: none;
}
.ui-tab-content:nth-of-type(1) {
  display: block;
}

.tui-datetime-input {
  width: 100%;
  height: auto;
}

.tui-datepicker {
  z-index: 10;
  font-size: 0.7rem;
}
.tui-datepicker.tui-hidden {
  display: none;
}
.tui-datepicker * {
  font-size: inherit;
}
.tui-datepicker .tui-datepicker-footer .tui-timepicker {
  padding: 10px;
}
.tui-datepicker .tui-timepicker-select {
  width: 64px;
  height: 32px;
}
.tui-datepicker .tui-calendar-sat {
  color: #1c74bc;
}
.tui-datepicker .tui-calendar-sun {
  color: #fc2222;
}
.tui-datepicker .tui-is-blocked {
  color: #ddd !important;
}
.tui-datepicker .tui-calendar-today {
  font-weight: bold;
  background-color: transparent;
  border: 1px solid rgba(37, 70, 205, 0.4);
  border-radius: 50%;
  color: #2546cd;
}
.tui-datepicker .tui-calendar-today:hover {
  background-color: #fff;
}
.tui-datepicker .tui-is-selectable.tui-is-selected,
.tui-datepicker .tui-is-selectable.tui-is-selected {
  background-color: #2546cd !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff !important;
}

.tui-timepicker-select {
  font-size: 0.7rem !important;
}

.tui-datepicker-input {
  border: 0;
}
.tui-datepicker-input .datepicker-input {
  font-size: 0.75rem;
}
.tui-datepicker-input .tui-ico-date {
  right: 0.6rem;
  bottom: 0.5rem;
  background-position: -17px -14px !important;
}

.tui-datepicker-type-date {
  width: 245px;
}

.tui-calendar {
  width: 100%;
}
.tui-calendar th,
.tui-calendar td {
  height: 35px;
}

.tui-datepicker-body .tui-timepicker,
.tui-datepicker-footer .tui-timepicker {
  width: 100%;
}

#content .fr-view html,
#content .fr-view body,
#content .fr-view p,
#content .fr-view h1,
#content .fr-view h2,
#content .fr-view h3,
#content .fr-view h4,
#content .fr-view h5,
#content .fr-view h6,
#content .fr-view ul,
#content .fr-view ol,
#content .fr-view li,
#content .fr-view table,
#content .fr-view tr,
#content .fr-view td,
#content .fr-view dl,
#content .fr-view dt,
#content .fr-view dd,
#content .fr-view a,
#content .fr-view img,
#content .fr-view input,
#content .fr-view button,
#content .fr-view select,
#content .fr-view textarea {
  list-style: revert-layer;
  font-family: "Pretendard", arial, sans-serif, Arial, dotum, "돋움";
  font-size: revert;
  font-weight: revert;
  line-height: revert;
  -webkit-text-decoration: revert;
          text-decoration: revert;
  letter-spacing: revert;
}
#content .fr-view h1 {
  font-size: 2em;
}
#content .fr-view ol,
#content .fr-view ul {
  -webkit-padding-start: 0.75rem;
          padding-inline-start: 0.75rem;
}
#content .fr-view u {
  text-decoration: underline;
}

.deco-line {
  height: 1.3rem;
}

.common-flex-text--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.common-flex-text--wrap span {
  font-size: 0.65rem;
  font-weight: 400;
  color: #878f91;
  word-break: keep-all;
}

.common-info-flex--wrap {
  display: grid;
  -webkit-transition: grid-template-rows 500ms;
  transition: grid-template-rows 500ms;
  transition: grid-template-rows 500ms, -ms-grid-rows 500ms;
  grid-template-rows: -webkit-min-content 0fr;
  grid-template-rows: min-content 0fr;
}
.common-info-flex--wrap .info-desc--box {
  overflow: hidden;
}
.common-info-flex--wrap.active {
  grid-template-rows: -webkit-min-content 1fr;
  grid-template-rows: min-content 1fr;
}

body {
  /* 프로젝트 마무리후 비밀번호 삽입시 주석 제거 */
}

html,
body {
  height: 100%;
  overscroll-behavior: none;
}

.section-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0.8rem;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.4rem 0;
  background: transparent;
  z-index: 100;
}
#header .header-inner {
  padding: 0 0.8rem;
}
#header .flex-box {
  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;
}
#header .logo {
  width: 2.15rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/icon/icon-kitkat-header-logo.png");
}
#header .logo a {
  display: block;
  height: 100%;
  text-indent: -9999px;
}
#header .user-info-link--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
#header .user-info-link--wrap .user-info-link--btn {
  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: 1.8rem;
  height: 1.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-indent: -9999px;
}
#header .user-info-link--wrap .user-info-link--btn.btn-mypage {
  background-image: url("../images/icon/icon-mypage-btn.png");
}
#header .user-info-link--wrap .user-info-link--btn.btn-logout {
  background-image: url("../images/icon/icon-logout-btn.png");
}

.mobile-navigation-menu {
  width: 1.4rem;
  height: 1.1rem;
  position: relative;
  cursor: pointer;
}
.mobile-navigation-menu .icon {
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #666;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.mobile-navigation-menu .icon:before, .mobile-navigation-menu .icon:after {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: #666;
}
.mobile-navigation-menu .icon:before {
  top: -8px;
}
.mobile-navigation-menu .icon:after {
  top: 8px;
}
.mobile-navigation-menu.active .icon {
  background-color: transparent;
}
.mobile-navigation-menu.active .icon:before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.mobile-navigation-menu.active .icon:after {
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

#contentWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100dvh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #8c0013;
}

#content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.section-wrap {
  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;
  min-height: 100vh;
  gap: 2rem;
}

.section-content-box {
  position: relative;
  width: 100%;
  max-width: 18rem;
  height: 34.5rem;
  overflow: auto;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 720px) {
  .section-content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
}
.section-content-box::-webkit-scrollbar {
  display: none;
}
.section-content-box:not(.main) #footer {
  padding-bottom: 1.2rem;
}
.section-content-box.p-404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-content-box.my-page #content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-content-box.my-page #content .coupon-history--section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section-content-box #content {
  overflow: hidden;
}

.aside-box {
  position: relative;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 14.6rem;
  height: 34.5rem;
}
.aside-box .deco-text--img {
  width: 100%;
}
.aside-box .kitkat-video--link {
  display: block;
  width: 100%;
  height: 8.2rem;
  margin-top: 2rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.aside-box .kitkat-video--link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 1100px) {
  .aside-box {
    display: none;
  }
}
#footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-top: 1px solid #e8e9eb;
  padding-top: 1.2rem;
  padding-bottom: 4.3rem;
  background: #fff;
}
#footer .footer-inner {
  padding: 0 0.8rem;
}
#footer .footer-top--box {
  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-bottom: 0.6rem;
}
#footer .footer-top--box .logo {
  width: 2.5rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/icon/icon-kikat-footer-logo.png");
  text-indent: -9999px;
}
#footer .footer-top--box .policy-link {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ba0018;
}
#footer .footer-bottom--box p {
  font-size: 0.6rem;
  font-weight: 400;
  color: #a1a9ad;
}
#footer .footer-bottom--box p + p {
  margin-top: 0.2rem;
}
#footer .footer-bottom--box p.letter-spacing--small {
  letter-spacing: -0.02em;
}
@media (max-width: 720px) {
  #footer .footer-bottom--box p.letter-spacing--small.mobile-small {
    letter-spacing: -0.04em;
  }
}

#content {
  font-size: 2rem;
}

@media (max-width: 720px) {
  #content {
    font-size: 1rem;
  }
}
.common-section--title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
}

.common-info--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.2rem;
}
.common-info--item .radius {
  position: relative;
  top: -0.1rem;
  width: 0.15rem;
  height: 0.15rem;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100%;
}
.common-info--item .text {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  word-break: keep-all;
}
.common-info--item.mark .radius {
  background: #ffec5e;
}
.common-info--item.mark .text {
  color: #ffec5e;
}

.main-visual {
  position: relative;
  padding: 3.2rem 0 1.6rem 0;
  z-index: 10;
}
.main-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-hero.png");
  z-index: -1;
}
.main-visual .main-visual-logo--wrap {
  width: 9.85rem;
  height: 3.2rem;
  margin: 0 auto;
}
.main-visual .main-visual-object--car {
  width: 12.8rem;
  height: 5.8rem;
  margin: 0 auto;
  margin-top: 0.4rem;
}
.main-visual .main-visual-object--car img {
  -webkit-animation: carMoveNotCenter 1s ease-in-out infinite alternate;
          animation: carMoveNotCenter 1s ease-in-out infinite alternate;
}
.main-visual .main-event-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-visual .main-event-title--wrap .main-img--wrap {
  width: 11.5rem;
  height: 3.1rem;
  margin: 0 auto;
  margin-top: -0.7rem;
}
.main-visual .main-event-title--wrap .main-text--wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.45rem;
}
.main-visual .main-event-title--wrap .main-text--wrap strong {
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}
.main-visual .main-event-title--wrap .main-text--wrap big {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  color: #ffffff;
}
.main-visual .main-event-desc--wrap {
  margin-top: 1.2rem;
}
.main-visual .main-event-desc--wrap .event-desc-item--wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-visual .main-event-desc--wrap .event-desc-item--wrap p {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.main-visual .main-event-desc--wrap .event-desc-item--wrap strong {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.main-visual .main-event-desc--wrap .event-date--wrap {
  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;
  gap: 0.4rem;
}
.main-visual .main-event-desc--wrap .event-date--wrap .cate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.65rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 5rem;
  padding: 0.2rem 0.6rem;
}
.main-visual .main-event-desc--wrap .event-date--wrap .value {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.main-visual .kitkat-slogan--object {
  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: 12.35rem;
  height: 1.6rem;
  margin: 0 auto;
  margin-top: 1.7rem;
}

.event-info {
  position: relative;
  padding-top: 1.6rem;
  padding-bottom: 1.2rem;
  background: #fff;
  z-index: 10;
}
.event-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 18.25rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-main-event-info.png");
  z-index: -1;
}
.event-info .event-text-box--wrap {
  position: relative;
  padding: 0 0.8rem;
  margin-bottom: 1.2rem;
}
.event-info .event-text-box--wrap .deco-object-phone {
  position: absolute;
  top: 2.55rem;
  left: 0;
  width: 4.75rem;
  height: 4.95rem;
}
.event-info .event-text-box--wrap .event-text--box {
  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;
  height: 5rem;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  border: 1.5px solid transparent;
  border-radius: 0.6rem;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(96.47deg, #ef1e39 5.19%, #333333 59.42%, #ef1e39 99.2%) border-box;
  -webkit-animation-name: chatPopReverse;
          animation-name: chatPopReverse;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.event-info .event-text-box--wrap .deco-object {
  position: absolute;
  bottom: 0.05rem;
  right: -0.9rem;
  width: 4.1rem;
  height: 2.75rem;
}
.event-info .event-text-box--wrap .text-row--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.event-info .event-text-box--wrap .text-row--wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  color: #030303;
}
.event-info .event-text-box--wrap .text-row--wrap p .span-img {
  width: 3.2rem;
  height: 1.4rem;
  margin: 0 0.2rem;
}
.event-info .event-info--item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-info .event-info--item + .event-info--item {
  margin-top: 3.15rem;
}
.event-info .event-info--item .event-info--title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.event-info .event-info--item .event-info--desc {
  font-size: 0.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.2rem;
}
.event-info .event-info--item .event-ifo-img--object {
  -webkit-animation-name: chatPop;
          animation-name: chatPop;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.event-info .event-info--item .common-event-button--wrap {
  width: 10rem;
}
.event-info .event-info--item .common-event-button--wrap .btn-common-event {
  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: 100%;
  height: 2.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-radius: 3rem;
  border: 2px solid transparent;
}
.event-info .event-info--item .common-event-button--wrap .btn-common-event.disabled {
  background: #dcdcdc;
  border-color: #dcdcdc;
  color: #888888;
  cursor: auto;
}
.event-info .event-info--item.event-info--item01 .event-ifo-img--object {
  width: 2.7rem;
  height: 2.55rem;
  margin-bottom: 0.2rem;
}
.event-info .event-info--item.event-info--item01 .event-info--title {
  color: #ba0018;
  margin-bottom: 0.2rem;
}
.event-info .event-info--item.event-info--item01 .event-info--desc {
  color: #000;
}
.event-info .event-info--item.event-info--item01 .btn-common-event {
  border-color: #ba0018;
  background: #ba0018;
  color: #fff;
}
.event-info .event-info--item.event-info--item02 .event-ifo-img--object {
  width: 4.3rem;
  height: 2.9rem;
  margin-bottom: 0.4rem;
}
.event-info .event-info--item.event-info--item02 .event-info--title {
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}
.event-info .event-info--item.event-info--item02 .event-info--desc {
  color: #c7cbd3;
}
.event-info .event-info--item.event-info--item02 .btn-common-event {
  border-color: #ffffff;
  background: transparent;
  color: #fff;
}

.how-to-event--section {
  position: relative;
  padding-top: 2.4rem;
}
.how-to-event--section::after {
  content: "";
  position: absolute;
  top: -3.05rem;
  right: -0.1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/main/img-mypage-deco.png");
  width: 6.1rem;
  height: 6.225rem;
  z-index: 10;
  -webkit-animation-name: controllerRotate;
          animation-name: controllerRotate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
.how-to-event--section .inner {
  padding: 0 0.8rem;
}
.how-to-event--section .common-section--title {
  color: #fff;
  margin-bottom: 1.2rem;
}
.how-to-event--section .common-section--title small {
  font-size: 0.6rem;
  font-weight: 400;
  color: #fff;
  display: block;
  margin-top: 0.2rem;
}
.how-to-event--section .how-to--box {
  padding-bottom: 2.25rem;
}
.how-to-event--section .how-to--box .how-to-box-img--wrap {
  margin-bottom: 1.2rem;
}
.how-to-event--section .how-to--box .how-to-box-button--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.how-to-event--section .how-to--box .how-to-box-button--wrap .btn {
  color: #ba0018;
}
.how-to-event--section .how-to-step--box {
  margin-bottom: 0.8rem;
}
.how-to-event--section .how-to-step--box .how-to-step--title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.how-to-event--section .how-to-step--box .how-to-step--item {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 1.2rem 1.6rem;
  background: #70000e;
  z-index: 10;
}
.how-to-event--section .how-to-step--box .how-to-step--item + .how-to-step--item {
  margin-top: 0.4rem;
}
.how-to-event--section .how-to-step--box .how-to-step--item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-how-to-step.png");
  z-index: -1;
}
.how-to-event--section .how-to-step--box .how-to-step--item .how-to-step--num {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  font-weight: 900;
  font-size: 0.6rem;
  color: #ffec5e;
}
.how-to-event--section .how-to-step--box .how-to-step--item .how-to-step-text--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.how-to-event--section .how-to-step--box .how-to-step--item .how-to-step-text--wrap strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.how-to-event--section .how-to-step--box .how-to-step--item .how-to-step-text--wrap p {
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
}
.how-to-event--section .how-to-step--box .how-to-step--item .how-to-step-img--wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 5.85rem;
}
.how-to-event--section .common-tip-box--wrap {
  margin-bottom: 0.6rem;
}
.how-to-event--section .common-tip-box--wrap .common-tip-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem;
  border-radius: 0.3rem;
}
.how-to-event--section .common-tip-box--wrap .common-tip-box .cate-tip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.4rem;
  height: 0.9rem;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 100;
  letter-spacing: -0.01em;
  text-align: center;
  color: #ba0018;
  background: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 5rem;
}
.how-to-event--section .common-tip-box--wrap .common-tip-box .value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.05rem;
}
.how-to-event--section .receipt-caution-check--wrap {
  padding-bottom: 2.4rem;
}
.how-to-event--section .receipt-caution-check--wrap .info-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 0.2rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}
.how-to-event--section .receipt-caution-check--wrap .info-title .icon {
  width: 0.6rem;
  height: 0.85rem;
}
.how-to-event--section .receipt-caution-check--wrap .info-title .text {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc {
  background: #2f2f3a;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc .img-wrap {
  margin-bottom: 0.4rem;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc .text-wrap .common-info--item .radius {
  background: #9898a5;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc .text-wrap .common-info--item .text {
  font-size: 0.6rem;
  color: #9898a5;
  font-weight: 400;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc .close-btn--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.8rem;
}
.how-to-event--section .receipt-caution-check--wrap .info-desc .close-btn--wrap .btn-close-accordion {
  width: 4.25rem;
  height: 1.4rem;
}
.how-to-event--section .receipt-caution-check--wrap.active {
  padding-bottom: 0;
}
.how-to-event--section .receipt-caution-check--wrap.active .info-desc--box {
  margin-top: 0.6rem;
}

.sub-gift-info--section {
  position: relative;
  padding: 1.85rem 0 2rem 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(63.54%, #ba0018), color-stop(88.11%, #000000));
  background: linear-gradient(180deg, #ba0018 63.54%, #000000 88.11%);
  z-index: 10;
}
.sub-gift-info--section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 15.55rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-gift-info-deco.png");
  z-index: -1;
}
.sub-gift-info--section .common-section--title {
  color: #fff;
  margin-bottom: 1.6rem;
}
.sub-gift-info--section .sub-gift-info-img--wrap {
  width: 100%;
  margin-top: 1.6rem;
}
.sub-gift-info--section .sub-gift-slider--wrap .inner {
  padding: 0 0.8rem;
}
.sub-gift-info--section .slider-gift-small-view {
  width: calc(100% + 0.8rem);
  margin-right: -0.8rem;
}
.sub-gift-info--section .slider-gift-small-view .swiper-slide {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.4rem;
  background: #f1f0f5;
  border: 5px solid transparent;
}
.sub-gift-info--section .slider-gift-small-view .swiper-slide.swiper-slide-thumb-active {
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.4509803922);
          box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.4509803922);
  background: linear-gradient(#f1f0f5, #f1f0f5) padding-box, linear-gradient(120.54deg, #0a0001 -7.03%, #ff1f3c 38.26%, #bc0f25 74.36%, #1f0004 110.73%) border-box;
}
.sub-gift-info--section .slider-gift-big-view {
  margin-top: 0.8rem;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 15rem;
  padding: 1.6rem;
  padding-bottom: 1.2rem;
  background: linear-gradient(138.82deg, #f5f6f8 75.21%, #eaecf1 100%);
  border-radius: 0.8rem;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .img-box--wrap {
  position: relative;
  width: 100%;
  height: 8.25rem;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(217, 219, 222, 0.031372549);
          box-shadow: 0px 0px 30px 0px rgba(217, 219, 222, 0.031372549);
  border-radius: 0.4rem;
  background: #fff;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .gift-img--object {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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: 10rem;
  height: 10rem;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .winner-count--wrap {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  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: 2.7rem;
  height: 2.7rem;
  border-radius: 5rem;
  background: #fff;
  border: 2px solid #ba0018;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .winner-count--wrap span {
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #ba0018;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .text-box--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .text-box--wrap .product-name {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  color: #010101;
}
.sub-gift-info--section .slider-gift-big-view .swiper-slide .text-box--wrap .product-info {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: -1%;
  text-align: center;
  color: #888888;
}
.sub-gift-info--section .sub-gift-list--wrap .inner {
  padding: 0 0.8rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list-wrap--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.4rem;
  background: #fff;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e6e6e6;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two {
  gap: 0.15rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two .sub-gift-list--item::before {
  left: calc(100% - 0.05rem);
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two .sub-gift-list--item.type-1st {
  width: 10.9rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two .sub-gift-list--item.type-1st .sub-gift-list--box {
  padding-top: 0;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two .sub-gift-list--item.type-1st .sub-gift-list--box .gift-text--wrap {
  min-height: 2.1rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two .sub-gift-list--item.type-1st + .sub-gift-list--item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-two .sub-gift-list--item .winner-count--wrap {
  right: 0.325rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-three {
  gap: 0.05rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-three .sub-gift-list--item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.05rem;
  height: calc(100% - 0.4rem);
  background: #e6e6e6;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-three .sub-gift-list--item:last-child::before {
  display: none;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row.type-three .sub-gift-list--item .sub-gift-list--box .winner-count--wrap {
  top: 0.25rem;
  right: 0.25rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--row:last-child {
  border-bottom: none;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item {
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 6.5rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.2rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.05rem;
  height: calc(100% - 0.4rem);
  background: #e6e6e6;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item:last-child::before {
  display: none;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-0 .winner-count--wrap {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-1 .winner-count--wrap {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-2 .winner-count--wrap {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-3 .winner-count--wrap {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-4 .winner-count--wrap {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-5 .winner-count--wrap {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-6 .winner-count--wrap {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-7 .winner-count--wrap {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-8 .winner-count--wrap {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-9 .winner-count--wrap {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-10 .winner-count--wrap {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-11 .winner-count--wrap {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-12 .winner-count--wrap {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-13 .winner-count--wrap {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-14 .winner-count--wrap {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--item.index-15 .winner-count--wrap {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}
@-webkit-keyframes giftItemUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes giftItemUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--box {
  position: relative;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-top: 0.4rem;
  padding-bottom: 0.55rem;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--box .gift-img--wrap {
  width: 4rem;
  height: 4rem;
  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;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--box .gift-text--wrap {
  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;
  min-height: 1.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #121314;
  text-align: center;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--box .winner-count--wrap {
  position: absolute;
  top: 0.25rem;
  right: 1.45rem;
  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: 2rem;
  height: 2rem;
  border-radius: 5rem;
  background: #fff;
  border: 2px solid #ba0018;
  -webkit-animation: giftItemUp 2s ease-in-out both infinite;
          animation: giftItemUp 2s ease-in-out both infinite;
}
.sub-gift-info--section .sub-gift-list--wrap .sub-gift-list--box .winner-count--wrap span {
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #ba0018;
}
.sub-gift-info--section .gift-info-text--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0.8rem;
  margin-top: 0.8rem;
}
.sub-gift-info--section .gift-info-text--wrap span {
  color: #a9a9a9;
}
.sub-gift-info--section .gift-info-text--wrap .cate {
  font-weight: 700;
}

.advertising-section {
  background: #ba0018;
}
.advertising-section .video-box .common-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.advertising-section .video-box .video-content {
  position: relative;
  padding-bottom: 56.11%;
  cursor: pointer;
  overflow: hidden;
}
.advertising-section .video-box .video-content .btn-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.advertising-section .video-box .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.advertising-section .video-box .video-content#video01 .btn-video-play {
  background-image: url("../images/main/bg-youtube--item.png");
}
.advertising-section .sns-box {
  margin-top: 2.4rem;
}
.advertising-section .sns-box .sns-box--title {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-bottom: 0.8rem;
}
.advertising-section .sns-box .sns-box-button--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.advertising-section .sns-box .sns-box-button--wrap .btn-link-insta .icon {
  background-image: url("../images/icon/icon-insta.png");
}
.advertising-section .advertising-deco-box {
  margin-top: 3.9rem;
}

.caution-info-section {
  padding: 2.4rem 0;
  background: #fff;
}
.caution-info-section .caution-info-section--title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #121314;
  margin-bottom: 1.2rem;
}
.caution-info-section .caution-info-item--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
.caution-info-section .caution-info--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.caution-info-section .caution-info--item .caution-info-item--title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #606567;
}
.caution-info-section .caution-info--item .caution-info-item--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
.caution-info-section .caution-info--item .caution-info-item-list--unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.2rem;
}
.caution-info-section .caution-info--item .caution-info-item-list--unit.mt-12 {
  margin-top: 0.6rem;
}
.caution-info-section .caution-info--item .caution-info-item-list--unit .radius {
  position: relative;
  top: -0.11rem;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 100%;
  background: #878f91;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 400;
  color: #878f91;
}
.caution-info-section .caution-info--item .caution-info-item-list--unit .radius.type-text {
  width: auto;
  height: auto;
  background: transparent;
  top: auto;
}
.caution-info-section .caution-info--item .caution-info-item-list--unit .text {
  font-size: 0.6rem;
  font-weight: 400;
  color: #878f91;
  word-break: keep-all;
}
.caution-info-section .inquiry-info-box--wrap {
  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;
  background: #f5f6f8;
  border-radius: 0.2rem;
  padding: 0.4rem;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.caution-info-section .inquiry-info-box--wrap .cate {
  font-size: 0.65rem;
  font-weight: 700;
  color: #606567;
}
.caution-info-section .inquiry-info-box--wrap .content p {
  font-size: 0.65rem;
  font-weight: 400;
  color: #606567;
  text-align: left;
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}

.float-btn--wrap {
  position: fixed;
  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;
  height: 3.2rem;
  background: #ba0018;
  width: 100%;
  max-width: 18rem;
  bottom: 50%;
  z-index: 20;
  margin-bottom: -17.25rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 720px) {
  .float-btn--wrap {
    max-width: 100%;
    bottom: 0;
    margin-bottom: 0;
  }
}
.float-btn--wrap.on {
  opacity: 1;
  visibility: visible;
}
.float-btn--wrap .kakao-sns-share {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.8rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/icon/icon-float-sns-kakao.png");
  text-indent: -9999px;
  z-index: 10;
}
.float-btn--wrap .text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.float-btn--wrap.disabled {
  background: #f5f6f8;
}
.float-btn--wrap.disabled .text {
  color: #888888;
}

.scroll-top--btn {
  position: fixed;
  text-indent: -9999px;
  width: 2.2rem;
  height: 2.2rem;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1215686275);
  background-image: url("../images/icon/icon-scroll--top.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  bottom: 50%;
  margin-bottom: -13.4rem;
  left: 50%;
  margin-left: -2rem;
  border-radius: 100%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.scroll-top--btn.on {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1100px) {
  .scroll-top--btn {
    margin-left: 6rem;
  }
}
@media (max-width: 720px) {
  .scroll-top--btn {
    bottom: 4rem;
    margin-left: 0;
    left: auto;
    right: 0.4rem;
    margin-bottom: 0;
  }
}

.page-info-content--box {
  position: relative;
  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;
  padding: 2.4rem 0.8rem;
  background: #ba0018;
  padding-top: 6.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 10;
}
.page-info-content--box .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.page-info-content--box .page-info-img--obejct {
  width: 100%;
  max-width: 13.85rem;
  margin: 0 auto;
  text-align: center;
}
.page-info-content--box .page-info-text--wrap {
  margin-top: 3.05rem;
}
.page-info-content--box .page-info-text--wrap p {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}
.page-info-content--box .common-button--wrap {
  margin-top: 1.2rem;
}

.my-page #footer {
  padding-bottom: 1.2rem;
}
.my-page .btn-entry-event-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mypage-overview--section {
  position: relative;
  background: #ba0018;
  padding-top: 3.3rem;
  padding-bottom: 1.6rem;
  z-index: 10;
}
.mypage-overview--section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/main/bg-mypage-overview.png");
  mix-blend-mode: multiply;
  z-index: -1;
}
.mypage-overview--section .mypage-overview-heading--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3rem;
  margin-bottom: 3.1rem;
  padding: 0 2.425rem;
}
.mypage-overview--section .overview-item--wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.mypage-overview--section .object-car {
  position: absolute;
  top: -2.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9.7rem;
  height: 4rem;
  -webkit-animation: carMove 0.8s ease-in-out infinite alternate;
          animation: carMove 0.8s ease-in-out infinite alternate;
}
.mypage-overview--section .overview-item {
  border-radius: 0.4rem;
}
.mypage-overview--section .overview-item.curent-coupon--item {
  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: 0.8rem;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 0.6rem 0.8rem;
}
.mypage-overview--section .overview-item.curent-coupon--item .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mypage-overview--section .overview-item.curent-coupon--item .left .logo-deco {
  width: 1.55rem;
  height: 1.1rem;
}
.mypage-overview--section .overview-item.curent-coupon--item .left .text {
  font-size: 0.8rem;
  font-weight: 700;
}
.mypage-overview--section .overview-item.curent-coupon--item .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
  color: #ba0018;
}
.mypage-overview--section .overview-item.curent-coupon--item .right .coupon-num {
  font-size: 1.8rem;
  word-break: break-all;
}
.mypage-overview--section .overview-item.detail-coupon--item {
  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;
  padding: 1rem 0.8rem;
  background: #ba0018;
}
.mypage-overview--section .overview-item.detail-coupon--item .stack-earned-coupon--wrap,
.mypage-overview--section .overview-item.detail-coupon--item .used-coupon--wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 1.6rem) / 2);
}
.mypage-overview--section .overview-item.detail-coupon--item .stack-earned-coupon--wrap .cate,
.mypage-overview--section .overview-item.detail-coupon--item .used-coupon--wrap .cate {
  font-size: 0.6rem;
  font-weight: 400;
  color: #fff;
}
.mypage-overview--section .overview-item.detail-coupon--item .stack-earned-coupon--wrap .coupon-num--wrap,
.mypage-overview--section .overview-item.detail-coupon--item .used-coupon--wrap .coupon-num--wrap {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}
.mypage-overview--section .overview-item.detail-coupon--item .stack-earned-coupon--wrap .coupon-num,
.mypage-overview--section .overview-item.detail-coupon--item .used-coupon--wrap .coupon-num {
  font-size: 0.7rem;
  font-weight: 700;
  text-align: right;
  letter-spacing: -0.04em;
}
.mypage-overview--section .overview-item.detail-coupon--item .stack-earned-coupon--wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 0.8rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.3);
}

.coupon-history--section {
  position: relative;
  padding: 1.2rem 0;
  background: #ba0018;
}
.coupon-history--section .obejct-mypage-kitkat {
  position: absolute;
  top: -2.9rem;
  right: 0;
  width: 8.4rem;
  z-index: 10;
}
.coupon-history--section .coupon-history-section--title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.coupon-history--section .coupon-history--item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.3rem;
  padding: 0.6rem;
  padding-right: 2.2rem;
  border-radius: 0.4rem;
  background: #ffffff;
  width: 100%;
  cursor: pointer;
}
.coupon-history--section .coupon-history--item::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/icon/icon-arrow-right-black-24x-24.png");
}
.coupon-history--section .coupon-history--item + .coupon-history--item {
  margin-top: 0.4rem;
}
.coupon-history--section .coupon-history--item .coupon-history-item--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.coupon-history--section .coupon-history--item .coupon-history-item--left .img-wrap {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.coupon-history--section .coupon-history--item .coupon-history-item--left .text-wrap {
  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;
  gap: 0.1rem;
}
.coupon-history--section .coupon-history--item .coupon-history-item--left .text-wrap .payment-completed--text {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.1;
}
.coupon-history--section .coupon-history--item .coupon-history-item--left .text-wrap .coupon-history--date {
  font-size: 0.55rem;
  font-weight: 400;
  color: #888;
  line-height: 1;
}
.coupon-history--section .coupon-history--item .coupon-history-item--left .text-wrap .delivery-text {
  font-size: 0.55rem;
  font-weight: 400;
  line-height: 1;
  color: #888888;
}
.coupon-history--section .coupon-history--item.type-entry-available .coupon-history-item--left .img-wrap .received {
  display: block;
}
.coupon-history--section .coupon-history--item.type-entry-available .coupon-history-item--left .img-wrap .used {
  display: none;
}
.coupon-history--section .coupon-history--item.type-entry-available .coupon-history-item--left .text-wrap .payment-completed--text {
  color: #ba0018;
}
.coupon-history--section .coupon-history--item.type-entry-completed .coupon-history-item--left .img-wrap .received {
  display: none;
}
.coupon-history--section .coupon-history--item.type-entry-completed .coupon-history-item--left .img-wrap .used {
  display: block;
}
.coupon-history--section .coupon-history--item.type-entry-completed .coupon-history-item--left .text-wrap .payment-completed--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1rem;
}
.coupon-history--section .coupon-history--item.type-entry-completed .coupon-history-item--left .text-wrap .payment-completed--text .icon {
  width: 1.2rem;
  height: 1.2rem;
}
.coupon-history--section .coupon-history-none--item {
  padding: 3.2rem 0.6rem;
  background: #ffffff;
  border-radius: 0.4rem;
}
.coupon-history--section .coupon-history-none--item .title {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
}
.coupon-history--section .coupon-history-none--item .desc {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  color: #ba0018;
  margin-top: 0.4rem;
}

.policy .policy-section {
  padding-top: 3.8rem;
  background: #fff;
  padding-bottom: 2.4rem;
}
.policy .policy-section .policy-section--title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
  color: #121314;
  margin-bottom: 1.2rem;
}
.policy .policy-section .policy-section--desc {
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #878f91;
  word-break: keep-all;
  margin-bottom: 2.4rem;
}
.policy .policy-section .policy-section--item {
  margin-bottom: 2.4rem;
}
.policy .policy-section .policy-section--item:last-child {
  margin-bottom: 0;
}
.policy .policy-section .policy-section--item .policy-section-item--title {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  color: #121314;
  margin-bottom: 0.6rem;
}
.policy .policy-section .policy-section--item .data-table {
  margin-bottom: 0.6rem;
}
.policy .policy-section .policy-section--item .data-table:last-child {
  margin-bottom: 0;
}
.policy .policy-section .policy-section--item .policy-section-item--desc {
  font-size: 0.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #878f91;
  word-break: keep-all;
  margin-bottom: 0.6rem;
}
.policy .policy-section .policy-section--item .policy-section-item--desc:last-child {
  margin-bottom: 0;
}
.policy #footer {
  padding-bottom: 1.2rem;
}